Skip to content

Instantly share code, notes, and snippets.

@carlweis
Created June 28, 2016 22:59
Show Gist options
  • Save carlweis/7cb34b6399a4155e931f3e799f45f95b to your computer and use it in GitHub Desktop.
Save carlweis/7cb34b6399a4155e931f3e799f45f95b to your computer and use it in GitHub Desktop.
# demo.gemspec
Gem::Specification.new do |spec|
spec.name = "Demogem"
spec.version = "1.0.2"
spec.authors = ["Carl Weis"]
spec.email = ["[email protected]"]
spec.description = %q{A Ruby library for a demo app.}
spec.summary = %q{Demo Gem Library}
spec.homepage = "http://carlweis.com/gems/demo"
spec.license = "MIT"
spec.files = Dir["./**/*"]
spec.executables = Dir["./bin/*"]
spec.test_files = Dir["./spec/**/*"]
spec.require_paths = ["lib"]
spec.add_development_dependency "rake"
spec.add_runtime_dependency "activerecord", "~> 4.1.0"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment