diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..280a208 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,3 @@ +language: ruby +rvm: + - "1.9.3" diff --git a/Gemfile b/Gemfile index b4e2a20..122c549 100644 --- a/Gemfile +++ b/Gemfile @@ -1,3 +1,7 @@ source "https://rubygems.org" gemspec + +group :test do + gem 'rake' +end diff --git a/README.rdoc b/README.rdoc index 14a769a..f49c554 100644 --- a/README.rdoc +++ b/README.rdoc @@ -1,5 +1,9 @@ + = REST Client -- simple DSL for accessing HTTP and REST resources +Build status: {}[https://travis-ci.org/jcoyne/rest-client] + + A simple HTTP and REST client for Ruby, inspired by the Sinatra's microframework style of specifying actions: get, put, post, delete.