pluck_all.gemspec in pluck_all-1.0.0 vs pluck_all.gemspec in pluck_all-1.0.1
- old
+ new
@@ -7,12 +7,12 @@
spec.name = "pluck_all"
spec.version = PluckAll::VERSION
spec.authors = ["khiav reoy"]
spec.email = ["mrtmrt15xn@yahoo.com.tw"]
- spec.summary = %q{Plucking Multiple Columns in Rails 3, 4, 5}
- #spec.description = %q{TODO: Write a longer description or delete this line.}
+ spec.summary = %q{Plucking Multiple Columns in Rails 3. Also support in Rails 4, and Rails 5.}
+ spec.description = %q{If you have a rails 3 project, and want to pluck not only one column, feel free to use this gem and no need to worry about upgrading to Rails 4 in the future will break this.}
spec.homepage = "https://github.com/khiav223577/pluck_all"
spec.license = "MIT"
# Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
# delete this section to allow pushing this gem to any host.
@@ -27,7 +27,11 @@
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 1.11"
spec.add_development_dependency "rake", "~> 10.0"
+ spec.add_development_dependency "sqlite3", "~> 1.3"
spec.add_development_dependency "minitest", "~> 5.0"
+
+ spec.add_dependency "rails", ">= 3"
+
end