Sha256: b87f57beb67b66defae41ae4413e61cc97d2b3d5a5106df3cc26a6f5b8916bc9
Contents?: true
Size: 1.01 KB
Versions: 4
Compression:
Stored size: 1.01 KB
Contents
# Provide a simple gemspec so you can easily use your enginex # project in your rails apps through git. require File.join(File.dirname(__FILE__), "lib/deprecation/version") Gem::Specification.new do |s| s.name = "deprecation" s.version = Deprecation::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Chris Beer"] s.email = ["chris@cbeer.info"] s.summary = %q{Stand-alone deprecation library borrowed from ActiveSupport::Deprecation} s.description = %q{Stand-alone deprecation library borrowed from ActiveSupport::Deprecation} s.homepage = "http://github.com/cbeer/deprecation" s.license = "MIT" 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"] s.add_dependency "activesupport" s.add_development_dependency "rake" s.add_development_dependency "rspec", ">= 2.14" s.add_development_dependency "bundler", ">= 1.0.14" end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
deprecation-0.2.2 | deprecation.gemspec |
deprecation-0.2.1 | deprecation.gemspec |
deprecation-0.2.0 | deprecation.gemspec |
deprecation-0.1.0 | deprecation.gemspec |