i18n_column.gemspec in i18n_column-0.0.3 vs i18n_column.gemspec in i18n_column-0.1.0

- old
+ new

@@ -4,11 +4,11 @@ Gem::Specification.new do |s| s.name = 'i18n_column' s.version = I18nColumn::VERSION s.platform = Gem::Platform::RUBY - s.authors = ['Philipp Ullmann'] + s.authors = ['Philipp Ullmann', 'René Groß'] s.email = 'philipp.ullmann@create.at' s.homepage = 'http://github.com/create-philipp-ullmann/i18n_column' s.summary = 'Storing and retrieving translations from a single database column' s.description = 'This extension provides the capabilities of storing and retrieving translations from a single database column. The translations are serialized using JSON.' @@ -17,9 +17,10 @@ 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_development_dependency('rspec', ['>= 2.5.0']) - s.add_development_dependency('sqlite3-ruby', ['>= 1.3.3']) - s.add_development_dependency('activerecord', ['>= 3.0.5']) + s.add_development_dependency('rspec', ['>= 2.6.0']) + s.add_development_dependency('sqlite3', ['>= 1.3.4']) + s.add_development_dependency('activerecord', ['>= 3.1.0']) + s.add_development_dependency('rake', ['0.9.2']) end