summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOri <ori@bestori.com>2016-04-06 14:44:14 +0300
committerLars Kanis <lars@greiz-reinsdorf.de>2016-04-09 20:15:24 +0200
commit2845506879479ad3c3a7b4dfc472c14b74e48233 (patch)
tree33164f0799cdfdfaac83a26904f1aec6f2ba45f9
parent00053474d2bb87480f241401e70708e13ef7fa4b (diff)
downloadffi-2845506879479ad3c3a7b4dfc472c14b74e48233.tar.gz
[FEAT] add support for ruby 2.3.0 (2.2.0 was released Dec. 25th 2014, which is almost a year and a half before this commit)
-rw-r--r--.travis.yml2
-rw-r--r--Rakefile2
2 files changed, 3 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index ac176d6..e178e4c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -10,6 +10,7 @@ rvm:
- "2.0.0"
- "2.1"
- "2.2"
+ - "2.3"
- "ruby-head"
- "rbx"
- "system"
@@ -21,6 +22,7 @@ matrix:
- rvm: system
- os: osx
rvm: "2.2"
+ rvm: "2.3"
- os: osx
rvm: ruby-head
- rvm: "rbx"
diff --git a/Rakefile b/Rakefile
index 14bfc61..c8e4cf3 100644
--- a/Rakefile
+++ b/Rakefile
@@ -175,7 +175,7 @@ if USE_RAKE_COMPILER
ext.cross_platform = %w[i386-mingw32 x64-mingw32] # forces the Windows platform instead of the default one
end
- ENV['RUBY_CC_VERSION'] ||= '1.8.7:1.9.3:2.0.0:2.1.6:2.2.2'
+ ENV['RUBY_CC_VERSION'] ||= '1.8.7:1.9.3:2.0.0:2.1.6:2.2.2:2.3.0'
# To reduce the gem file size strip mingw32 dlls before packaging
ENV['RUBY_CC_VERSION'].to_s.split(':').each do |ruby_version|