Skip to content

Instantly share code, notes, and snippets.

@jgaskins
Created June 2, 2012 21:20
Show Gist options
  • Save jgaskins/2859988 to your computer and use it in GitHub Desktop.
Save jgaskins/2859988 to your computer and use it in GitHub Desktop.
Let's pretend this is a gem
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "not-really-a-gem"
s.version = 0.0.0
s.authors = ["Jamie Gaskins"]
s.homepage = "https://gist.github.com/2859988"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment