1
0
Fork 0
mirror of https://github.com/rest-client/rest-client.git synced 2022-11-09 13:49:40 -05:00

Added a travis ci build file

This commit is contained in:
Justin Coyne 2013-02-19 07:25:41 -06:00
parent a5cdc14ee2
commit 8eb765b7cd
3 changed files with 11 additions and 0 deletions

3
.travis.yml Normal file
View file

@ -0,0 +1,3 @@
language: ruby
rvm:
- "1.9.3"

View file

@ -1,3 +1,7 @@
source "https://rubygems.org"
gemspec
group :test do
gem 'rake'
end

View file

@ -1,5 +1,9 @@
= REST Client -- simple DSL for accessing HTTP and REST resources
Build status: {<img src="https://travis-ci.org/jcoyne/rest-client.png" />}[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.