Adding Gemfile and Travis CI config file.

This commit is contained in:
Bob Aman 2012-05-11 13:12:20 +03:00
parent f1237d48b9
commit 10b5bcba7a
2 changed files with 38 additions and 0 deletions

12
.travis.yml Normal file
View File

@ -0,0 +1,12 @@
language: ruby
rvm:
- 1.8.6
- 1.8.7
- 1.9.2
- 1.9.3
- jruby
- ree
script: "bundle exec rake"
before_install:
- sudo apt-get update
- sudo apt-get install idn

26
Gemfile Normal file
View File

@ -0,0 +1,26 @@
source :rubygems
gem 'signet', '>= 0.3.1'
gem 'addressable', '>= 2.2.3'
gem 'autoparse', '>= 0.3.1'
gem 'faraday', '~> 0.7.0'
gem 'multi_json', '>= 1.3.0'
gem 'extlib', '>= 0.9.15'
group :development do
gem 'launchy'
gem 'yard'
gem 'redcarpet'
end
group :examples do
gem 'sinatra'
end
group :test, :development do
gem 'rake', '>= 0.9.0'
gem 'rspec', '~> 1.2.9'
gem 'rcov', '>= 0.9.9', :platform => :mri_18
end
gem 'idn', :platform => :mri_18