diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2017-08-14 15:15:08 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-14 15:15:08 -0400 |
commit | 42510bf71472e2e35d9becb546edd05562672344 (patch) | |
tree | ed5562996d6c62f817565d80d0195819b64099e5 | |
parent | cf5dbf0b2d3fbeb1934712ebd584fe26797616a6 (diff) | |
parent | 04c79c9743b5b14607791a7b6eac5e94fcfa2b9e (diff) | |
download | rails-42510bf71472e2e35d9becb546edd05562672344.tar.gz rails-42510bf71472e2e35d9becb546edd05562672344.tar.bz2 rails-42510bf71472e2e35d9becb546edd05562672344.zip |
Merge pull request #495 from koic/add_required_ruby_version_to_gemspec
Add required_ruby_version to gemspec
-rw-r--r-- | .travis.yml | 15 | ||||
-rw-r--r-- | arel.gemspec | 1 | ||||
-rw-r--r-- | arel.gemspec.erb | 1 |
3 files changed, 7 insertions, 10 deletions
diff --git a/.travis.yml b/.travis.yml index b35bec1c30..352e12793a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,23 +8,18 @@ env: global: - JRUBY_OPTS='--dev -J-Xmx1024M' rvm: - - rbx-2 - - jruby-9.0.5.0 - - jruby-head - - 2.0.0 - - 2.1 - - 2.2.5 - - 2.3.1 + - 2.2.7 + - 2.3.4 - 2.4.1 - ruby-head + - jruby-9.1.12.0 + - jruby-head matrix: fast_finish: true allow_failures: - - rvm: jruby-9.0.5.0 - - rvm: jruby-head - rvm: ruby-head + - rvm: jruby-9.1.12.0 - rvm: jruby-head - - rvm: rbx-2 bundler_args: --jobs 3 --retry 3 notifications: email: false diff --git a/arel.gemspec b/arel.gemspec index 2ca136deec..f914d1a5ca 100644 --- a/arel.gemspec +++ b/arel.gemspec @@ -12,6 +12,7 @@ Gem::Specification.new do |s| s.description = "Arel Really Exasperates Logicians\n\nArel is a SQL AST manager for Ruby. It\n\n1. Simplifies the generation of complex SQL queries\n2. Adapts to various RDBMSes\n\nIt is intended to be a framework framework; that is, you can build your own ORM\nwith it, focusing on innovative object and collection modeling as opposed to\ndatabase compatibility and query generation." s.summary = "Arel Really Exasperates Logicians Arel is a SQL AST manager for Ruby" s.license = %q{MIT} + s.required_ruby_version = ">= 2.2.2" s.rdoc_options = ["--main", "README.md"] s.extra_rdoc_files = ["History.txt", "MIT-LICENSE.txt", "README.md"] diff --git a/arel.gemspec.erb b/arel.gemspec.erb index 15c5a3d758..4698e8bae7 100644 --- a/arel.gemspec.erb +++ b/arel.gemspec.erb @@ -12,6 +12,7 @@ Gem::Specification.new do |s| s.description = "Arel Really Exasperates Logicians\n\nArel is a SQL AST manager for Ruby. It\n\n1. Simplifies the generation of complex SQL queries\n2. Adapts to various RDBMSes\n\nIt is intended to be a framework framework; that is, you can build your own ORM\nwith it, focusing on innovative object and collection modeling as opposed to\ndatabase compatibility and query generation." s.summary = "Arel Really Exasperates Logicians Arel is a SQL AST manager for Ruby" s.license = %q{MIT} + s.required_ruby_version = ">= 2.2.2" s.rdoc_options = ["--main", "README.md"] s.extra_rdoc_files = ["History.txt", "MIT-LICENSE.txt", "README.md"] |