canard.gemspec in canard-0.3.7 vs canard.gemspec in canard-0.4.0.pre
- old
+ new
@@ -3,10 +3,11 @@
require "canard/version"
Gem::Specification.new do |s|
s.name = "canard"
s.version = Canard::VERSION
+ s.date = `git log -1 --format="%cd" --date=short lib/canard/version.rb`
s.authors = ["James McCarthy"]
s.email = ["james2mccarthy@gmail.com"]
s.homepage = "https://github.com/james2m/canard"
s.summary = %q{Adds role based authorisation to Rails by combining RoleModel and CanCan.}
s.description = %q{Wraps CanCan and RoleModel up to make role based authorisation really easy in Rails 3.x.}
@@ -17,11 +18,9 @@
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_development_dependency "minitest", "~> 2"
- s.add_development_dependency "sqlite3"
s.add_development_dependency "rails", "~> 3.2.3"
- s.add_runtime_dependency 'activesupport'
s.add_runtime_dependency "cancan"
s.add_runtime_dependency "role_model"
end