summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2015-04-21 21:00:12 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2015-04-21 21:00:12 -0700
commit7a991d12b851c9d17791b5e789f64ec2b33e75c9 (patch)
treed7d7a2d5012eae3b6944bc06d946b576e66d6a82
parenta9ae440827c27ee2cb7d815559fee40d336767c1 (diff)
downloadffi-yajl-7a991d12b851c9d17791b5e789f64ec2b33e75c9.tar.gz
dropping support for ruby 1.8.7
adding support for UTF-8 encoding issues and making it backcompat with 1.8.7 is too painful for words, goodbye...
-rw-r--r--.travis.yml13
-rw-r--r--README.md2
-rw-r--r--spec/spec_helper.rb1
3 files changed, 1 insertions, 15 deletions
diff --git a/.travis.yml b/.travis.yml
index cfb4657..6fb8fd3 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -14,12 +14,9 @@ rvm:
- 2.0.0
- 1.9.3
- 1.9.2
- - 1.8.7
- ruby-head
- - ree
- rbx
- jruby-19mode
- - jruby-18mode
- jruby-head
jdk:
- openjdk7
@@ -56,10 +53,6 @@ matrix:
jdk: openjdk6
- rvm: 1.9.2
jdk: openjdk7
- - rvm: 1.8.7
- jdk: openjdk6
- - rvm: 1.8.7
- jdk: openjdk7
- rvm: rbx
jdk: openjdk6
- rvm: rbx
@@ -68,11 +61,5 @@ matrix:
jdk: openjdk6
- rvm: ruby-head
jdk: openjdk7
- - rvm: ree
- jdk: openjdk6
- - rvm: ree
- jdk: openjdk7
- - rvm: jruby-18mode
- jdk: openjdk6
- rvm: jruby-head
jdk: openjdk6
diff --git a/README.md b/README.md
index 0edbbcc..8dfcc66 100644
--- a/README.md
+++ b/README.md
@@ -25,7 +25,7 @@ gem 'ffi-yajl'
## Supported Ruby VMs:
-* Ruby MRI 1.8.7/1.9.3/2.0.0/2.1.x/2.2.x
+* Ruby MRI 1.9.3/2.0.0/2.1.x/2.2.x
* rbx 2.2.x (possibly earlier)
* Jruby 1.7.x (possibly earlier)
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index 0076755..03af269 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -35,7 +35,6 @@ require 'ffi_yajl'
RSpec.configure do |c|
c.filter_run_excluding :unix_only => true unless RUBY_PLATFORM !~ /mswin|mingw|windows/
- c.filter_run_excluding :ruby_gte_19 => true unless RUBY_VERSION.to_f >= 1.9
c.filter_run_excluding :ruby_gte_193 => true unless RUBY_VERSION.to_f >= 2.0 || RUBY_VERSION =~ /^1\.9\.3/
c.order = 'random'