dase.gemspec in dase-4.1.1 vs dase.gemspec in dase-4.2.0

- old
+ new

@@ -7,21 +7,19 @@ gem.name = "dase" gem.version = Dase::VERSION gem.authors = ["Vladimir Yartsev"] gem.licenses = ["MIT"] gem.email = ["vovayartsev@gmail.com"] - gem.description = %q{Dase gem creates includes_count_of method in ActiveRecord::Relation - to count associated records efficiently. See examples at https://github.com/vovayartsev/dase - } + gem.description = %q{includes_count_of method on ActiveRecord::Relation to solve N+1 query problem when counting associated records } gem.summary = %q{Provides includes_count_of method on ActiveRecord::Relation to count associated records efficiently} gem.homepage = "https://github.com/vovayartsev/dase" - gem.add_runtime_dependency "activesupport", ">= 4.0", "<= 4.2" + gem.add_runtime_dependency "activesupport", "~> 4.2.0" if defined? JRUBY_VERSION gem.add_development_dependency 'activerecord-jdbcsqlite3-adapter' else - gem.add_runtime_dependency "activerecord", ">= 4.0", "<= 4.2" + gem.add_runtime_dependency "activerecord", "~> 4.2.0" gem.add_development_dependency 'sqlite3', '~> 1.3' end # gem.add_development_dependency 'pry' gem.add_development_dependency 'rake', '~> 10.3'