matic.gemspec in matic-0.2.0 vs matic.gemspec in matic-0.2.1

- old
+ new

@@ -7,25 +7,26 @@ s.version = Matic::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Hakan Ensari", "Gerhard Lazu"] s.email = ["code@papercavalier.com"] s.homepage = "http://github.com/papercavalier/matic" - s.summary = %q{Mongomatic with attribute accessors and dirty tracking} - s.description = %q{Matic adds attribute accessors and dirty tracking to Mongomatic.} + s.summary = %q{A dirtier Mongomatic} + s.description = %q{Matic adds attribute accessors and dirty tracking to Mongomatic and optionally shortens field names saved to MongoDB.} s.rubyforge_project = "matic" 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("mongomatic", "~> 0.6.0") + s.add_dependency("mongomatic", "~> 0.7.0") s.add_dependency("activemodel", "~> 3.0.0") s.add_dependency("activesupport", "~> 3.0.0") s.add_development_dependency("bson_ext", "~> 1.1.0") + s.add_development_dependency("faker", "~> 0.3.1") s.add_development_dependency("rake", "~> 0.8.7") s.add_development_dependency("rspec", "~> 2.0.0") - if RUBY_PLATFORM.include?("1.9") + if RUBY_VERSION.include?("1.9") s.add_development_dependency("ruby-debug19", "~> 0.11.0") end end