Skip to content
This repository has been archived by the owner on Feb 8, 2019. It is now read-only.

Commit

Permalink
Fixing development environment
Browse files Browse the repository at this point in the history
  • Loading branch information
frapposelli committed Aug 29, 2015
1 parent d81375c commit 0abb92f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
source 'http://rubygems.org'
source 'https://rubygems.org'

gemspec

group :plugins do
gem 'vagrant-vmware-appcatalyst' , path: '.'
end

group :development do
gem 'vagrant', :git => 'git://github.com/mitchellh/vagrant.git'
gem 'vagrant', :git => 'https://github.com/mitchellh/vagrant.git'
end
7 changes: 7 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
require 'rubygems'
require 'bundler/setup'
require 'rspec/core/rake_task'

Bundler::GemHelper.install_tasks
# RSpec::Core::RakeTask.new
# task :default => "spec"
3 changes: 3 additions & 0 deletions vagrant-vmware-appcatalyst.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ Gem::Specification.new do |s|
s.add_development_dependency 'rspec-expectations', '~> 2.14'
s.add_development_dependency 'rspec-mocks', '~> 2.14'

s.add_development_dependency 'bundler', '~> 1.3'
s.add_development_dependency 'rake'

s.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
Expand Down

0 comments on commit 0abb92f

Please sign in to comment.