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:
parent
a5cdc14ee2
commit
8eb765b7cd
3 changed files with 11 additions and 0 deletions
3
.travis.yml
Normal file
3
.travis.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
language: ruby
|
||||
rvm:
|
||||
- "1.9.3"
|
4
Gemfile
4
Gemfile
|
@ -1,3 +1,7 @@
|
|||
source "https://rubygems.org"
|
||||
|
||||
gemspec
|
||||
|
||||
group :test do
|
||||
gem 'rake'
|
||||
end
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
Loading…
Reference in a new issue