Skip to content

Instantly share code, notes, and snippets.

@coderhs
Created March 20, 2013 07:22
Show Gist options
  • Save coderhs/5202897 to your computer and use it in GitHub Desktop.
Save coderhs/5202897 to your computer and use it in GitHub Desktop.
Gem::Specification.new do |s|
s.name = 'sample'
s.version = '0.1.1'
s.date = '2013-03-19'
s.summary = "Sample gemspec file"
s.description = "A sample gemspec file I use to explain about installing executable files"
s.authors = ["Harisankar P S"]
s.email = ['[email protected]']
s.files = [
"bin/am_here"]
s.bindir = 'bin'
s.executables = ['am_here']
s.require_paths = ["lib"]
s.homepage =
'http://tech.hsps.in'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment