Created
June 28, 2016 22:59
-
-
Save carlweis/7cb34b6399a4155e931f3e799f45f95b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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