dynamoid.gemspec in dynamoid-1.0.0 vs dynamoid.gemspec in dynamoid-1.1.0
- old
+ new
@@ -1,30 +1,31 @@
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "dynamoid"
- s.version = "1.0.0"
+ s.version = "1.1.0"
# Keep in sync with README
- s.authors = %w(
- Josh Symonds
- Logan Bowers
- Craig Heneveld
- Anatha Kumaran
- Jason Dew
- Luis Arias
- Stefan Neculai
- Philip White
- Peeyush Kumar
- )
+ s.authors = [
+ 'Josh Symonds',
+ 'Logan Bowers',
+ 'Craig Heneveld',
+ 'Anatha Kumaran',
+ 'Jason Dew',
+ 'Luis Arias',
+ 'Stefan Neculai',
+ 'Philip White',
+ 'Peeyush Kumar',
+ ]
s.description = "Dynamoid is an ORM for Amazon's DynamoDB that supports offline development, associations, querying, and everything else you'd expect from an ActiveRecord-style replacement."
s.extra_rdoc_files = [
"LICENSE.txt",
"README.markdown"
]
# file list is generated with `git ls-files | grep -v -E -e '^spec/' -e '^\.' -e 'bin/'`
s.files = %w(
+ CHANGELOG.md
Gemfile
LICENSE.txt
README.markdown
Rakefile
dynamoid.gemspec
@@ -60,14 +61,15 @@
s.rubygems_version = "1.8.24"
s.summary = "Dynamoid is an ORM for Amazon's DynamoDB"
s.add_runtime_dependency(%q<activemodel>, ["~> 4"])
s.add_runtime_dependency(%q<aws-sdk-resources>, ["~> 2"])
- s.add_runtime_dependency(%q<concurrent-ruby>, ["~> 0.9"])
+ s.add_runtime_dependency(%q<concurrent-ruby>, [">= 1.0"])
s.add_development_dependency(%q<rake>, [">= 0"])
s.add_development_dependency(%q<rspec>, ["~> 3"])
s.add_development_dependency(%q<bundler>, [">= 0"])
s.add_development_dependency(%q<yard>, [">= 0"])
s.add_development_dependency(%q<github-markup>, [">= 0"])
s.add_development_dependency(%q<pry>, [">= 0"])
+ s.add_development_dependency(%q<coveralls>, [">= 0"])
end