From afa283677ba133cdf91ee9fe05fb127945519553 Mon Sep 17 00:00:00 2001 From: Kornelius Kalnbach Date: Sun, 9 Jun 2013 20:00:57 +0200 Subject: update shoulda-context --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 508f1e8..df6d563 100644 --- a/Gemfile +++ b/Gemfile @@ -10,7 +10,7 @@ group :development do 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 "shoulda-context", "~> 1.1.2" gem "json" if RUBY_VERSION < '1.9' gem "rdoc" end -- cgit v1.2.1 From 410e51ea3225b2a5c043c2ddd754dd614f4fcf1d Mon Sep 17 00:00:00 2001 From: Kornelius Kalnbach Date: Sun, 9 Jun 2013 20:20:15 +0200 Subject: update term-ansicolor --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index df6d563..15a71ae 100644 --- a/Gemfile +++ b/Gemfile @@ -9,7 +9,7 @@ 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 "term-ansicolor", '~> 1.2.2' gem "shoulda-context", "~> 1.1.2" gem "json" if RUBY_VERSION < '1.9' gem "rdoc" -- cgit v1.2.1 From eb918d5564ca36cfee3fb42e66ed9d1c872a68c7 Mon Sep 17 00:00:00 2001 From: Kornelius Kalnbach Date: Sun, 9 Jun 2013 21:21:24 +0300 Subject: Update README.markdown --- README.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.markdown b/README.markdown index b5ae9e2..ae19fdd 100644 --- a/README.markdown +++ b/README.markdown @@ -1,4 +1,4 @@ -# CodeRay [![Build Status](https://travis-ci.org/rubychan/coderay.png)](https://travis-ci.org/rubychan/coderay) [![Gem Version](https://badge.fury.io/rb/coderay.png)](http://badge.fury.io/rb/coderay) +# CodeRay [![Build Status](https://travis-ci.org/rubychan/coderay.png)](https://travis-ci.org/rubychan/coderay) [![Gem Version](https://badge.fury.io/rb/coderay.png)](http://badge.fury.io/rb/coderay) [![Dependency Status](https://gemnasium.com/rubychan/coderay.png)](https://gemnasium.com/rubychan/coderay) ## About -- cgit v1.2.1 From 17ea9f4896bba4b350411921930c3f3b0415839b Mon Sep 17 00:00:00 2001 From: Kornelius Kalnbach Date: Sun, 9 Jun 2013 20:37:30 +0200 Subject: tweak .travis.yaml --- .travis.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 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" -- cgit v1.2.1 From 880aa337431f1135abeeb15f12343513d65f064f Mon Sep 17 00:00:00 2001 From: Kornelius Kalnbach Date: Sun, 9 Jun 2013 20:41:25 +0200 Subject: update README --- README.markdown | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.markdown b/README.markdown index ae19fdd..f333655 100644 --- a/README.markdown +++ b/README.markdown @@ -1,4 +1,8 @@ -# CodeRay [![Build Status](https://travis-ci.org/rubychan/coderay.png)](https://travis-ci.org/rubychan/coderay) [![Gem Version](https://badge.fury.io/rb/coderay.png)](http://badge.fury.io/rb/coderay) [![Dependency Status](https://gemnasium.com/rubychan/coderay.png)](https://gemnasium.com/rubychan/coderay) +# CodeRay + +[![Build Status](https://travis-ci.org/rubychan/coderay.png)](https://travis-ci.org/rubychan/coderay) +[![Gem Version](https://badge.fury.io/rb/coderay.png)](http://badge.fury.io/rb/coderay) +[![Dependency Status](https://gemnasium.com/rubychan/coderay.png)](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 -- cgit v1.2.1