diff options
author | Kornelius Kalnbach <murphy@rubychan.de> | 2013-06-09 20:56:40 +0200 |
---|---|---|
committer | Kornelius Kalnbach <murphy@rubychan.de> | 2013-06-09 20:56:40 +0200 |
commit | 36c2d8959f957f79abc655c82100fe684d140502 (patch) | |
tree | 6a71dd426c332a7bb7a3e6e5ec11aaf64080f0f6 | |
parent | 485a3d0c51ffb7424807bb5f804ddae30cb4dd74 (diff) | |
parent | 880aa337431f1135abeeb15f12343513d65f064f (diff) | |
download | coderay-36c2d8959f957f79abc655c82100fe684d140502.tar.gz |
Merge branch 'master' into sass-scanner
-rw-r--r-- | .travis.yml | 12 | ||||
-rw-r--r-- | Gemfile | 4 | ||||
-rw-r--r-- | README.markdown | 8 |
3 files changed, 16 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml index 7c29c56..59bb791 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,15 +1,19 @@ rvm: - 1.8.7 - - 1.9.2 + - ree - 1.9.3 + - 2.0.0 + - ruby-head - jruby-18mode - jruby-19mode + - jruby-head - rbx-18mode - rbx-19mode - - ruby-head # test again later: RedCloth not compiling - - jruby-head - - ree branches: only: - master +matrix: + allow_failures: + - rvm: rbx-18mode + - rvm: rbx-19mode script: "rake test" # test:scanners" @@ -9,8 +9,8 @@ group :development do gem "bundler", ">= 1.0.0" gem "rake" gem "RedCloth", RUBY_PLATFORM == 'java' ? ">= 4.2.7" : ">= 4.0.3" - gem "term-ansicolor", '= 1.1.1' - gem "shoulda-context", "~> 1.0.0" + gem "term-ansicolor", '~> 1.2.2' + gem "shoulda-context", "~> 1.1.2" gem "json" if RUBY_VERSION < '1.9' gem "rdoc" end diff --git a/README.markdown b/README.markdown index b5ae9e2..f333655 100644 --- a/README.markdown +++ b/README.markdown @@ -1,4 +1,8 @@ -# CodeRay [](https://travis-ci.org/rubychan/coderay) [](http://badge.fury.io/rb/coderay) +# CodeRay + +[](https://travis-ci.org/rubychan/coderay) +[](http://badge.fury.io/rb/coderay) +[](https://gemnasium.com/rubychan/coderay) ## About @@ -12,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+ or 1.9.2+. It also runs on Rubinius and JRuby. +CodeRay needs Ruby 1.8.7, 1.9.3 or 2.0. It also runs on JRuby. ## Example Usage |