summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyunosuke SATO <tricknotes.rs@gmail.com>2014-11-12 23:18:36 +0900
committerRyunosuke SATO <tricknotes.rs@gmail.com>2014-11-12 23:18:36 +0900
commit20b921c6c94dfdf793b8031a2dafc0f7a3df5fb2 (patch)
tree947b36539226ea4ab52df583cfb6a43894edc5fd
parent38e3338f2824ddc519097a7ab9d03790025f802c (diff)
downloadcoderay-20b921c6c94dfdf793b8031a2dafc0f7a3df5fb2.tar.gz
Test against Ruby 2.1 and 2.2 on Travis CI
-rw-r--r--.travis.yml2
-rw-r--r--Gemfile1
-rw-r--r--README.markdown2
3 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 6d926f3..8e18c0a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -3,6 +3,8 @@ rvm:
- ree
- 1.9.3
- 2.0.0
+ - 2.1
+ - 2.2
- ruby-head
- jruby-18mode
- jruby-19mode
diff --git a/Gemfile b/Gemfile
index 0977943..0fae04b 100644
--- a/Gemfile
+++ b/Gemfile
@@ -11,6 +11,7 @@ group :development do
gem "RedCloth", RUBY_PLATFORM == 'java' ? ">= 4.2.7" : ">= 4.0.3"
gem "term-ansicolor"
gem "shoulda-context"
+ gem "test-unit"
gem "json" if RUBY_VERSION < '1.9'
gem "rdoc"
end
diff --git a/README.markdown b/README.markdown
index e23f603..15b3447 100644
--- a/README.markdown
+++ b/README.markdown
@@ -16,7 +16,7 @@ You put your code in, and you get it back colored; Keywords, strings, floats, co
### Dependencies
-CodeRay needs Ruby 1.8.7, 1.9.3 or 2.0. It also runs on JRuby.
+CodeRay needs Ruby 1.8.7, 1.9.3 or 2.0+. It also runs on JRuby.
## Example Usage