Remove unnecessary setup

This commit is contained in:
Mislav Marohnić 2015-10-02 17:30:58 +02:00
parent cc9772bfdf
commit 6c0a03419c
3 changed files with 0 additions and 5 deletions

View File

View File

@ -1,7 +1,6 @@
sudo: false
language: ruby
script: bundle exec script/test
bundler_args: --without development --path vendor/bundle --jobs=3 --retry=3
cache: bundler
rvm:

View File

@ -4,9 +4,6 @@ File.read(lib_file) =~ /\bVERSION\s*=\s*["'](.+?)["']/
version = $1
Gem::Specification.new do |spec|
spec.specification_version = 2 if spec.respond_to? :specification_version=
spec.required_rubygems_version = '>= 1.3.5'
spec.name = lib
spec.version = version
@ -18,7 +15,6 @@ Gem::Specification.new do |spec|
spec.licenses = ['MIT']
spec.add_dependency 'multipart-post', '>= 1.2', '< 3'
spec.add_development_dependency 'bundler', '~> 1.0'
spec.files = %w(.document CHANGELOG.md CONTRIBUTING.md Gemfile LICENSE.md README.md Rakefile)
spec.files << "#{lib}.gemspec"