Skip to content

Commit

Permalink
Merge 144eceb into 6a42826
Browse files Browse the repository at this point in the history
  • Loading branch information
baccenfutter committed Feb 15, 2017
2 parents 6a42826 + 144eceb commit 4ca83a9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
sudo: false
language: ruby
rvm:
- 2.0.0
- 2.2.3

script:
- bundle exec rake test
5 changes: 2 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,13 @@ source 'https://rubygems.org'

# Specify your gem's dependencies in bib-vagrant.gemspec
# (no idea how to get the github-reference below in .gemspec)
gemspec

group :development do
gem 'vagrant', git: 'https://github.com/mitchellh/vagrant.git'
gem 'vagrant', git: 'https://github.com/mitchellh/vagrant.git', tag: "v1.9.1"
# gem "vagrant", git: "git://github.com/mitchellh/vagrant.git", tag: "v1.7.4"
# gem "vagrant", git: "git://github.com/mitchellh/vagrant.git", tag: "v1.3.5"
end

group :plugins do
gem 'bib-vagrant', path: '.'
gemspec
end
7 changes: 4 additions & 3 deletions bib-vagrant.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require 'bib/version'
Gem::Specification.new do |spec|
spec.name = 'bib-vagrant'
spec.version = Bib::Vagrant::VERSION
spec.authors = %w(tillk fh gilleyj seppsepp)
spec.authors = %w(tillk fh gilleyj seppsepp baccenfutter)
spec.email = ['till@php.net']
spec.description = "A rubygem to centralize configuration and setup in every project's Vagrantfile"
spec.summary = 'Centralize configuration and setup'
Expand All @@ -18,9 +18,10 @@ Gem::Specification.new do |spec|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']

spec.add_dependency 'thor', '>= 0.18.1'

spec.add_dependency 'thor', '>= 0.19.4'
spec.add_dependency 'colored', '>= 1.2'
spec.add_dependency 'rest_client'
spec.add_dependency 'rest-client', '>= 1.6.0', '< 3.0'
spec.add_dependency 'json'

spec.add_development_dependency 'bundler', '~> 1.5'
Expand Down
2 changes: 1 addition & 1 deletion lib/bib/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Bib
module Vagrant
VERSION = '0.1.6'
VERSION = '0.1.8'
end
end

0 comments on commit 4ca83a9

Please sign in to comment.