Skip to content
This repository has been archived by the owner on Nov 29, 2017. It is now read-only.

Commit

Permalink
Move guard gems into gemfile
Browse files Browse the repository at this point in the history
They aren't required for running tests
  • Loading branch information
drnic committed Feb 3, 2013
1 parent d49dd99 commit 743a027
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
6 changes: 4 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
source 'https://rubygems.org'
source "https://rubygems.org"

# Specify your gem's dependencies in bosh-cloudfoundry.gemspec
gemspec

gem "awesome_print"
gem "awesome_print"
gem "rb-fsevent", "~> 0.9.1"
gem "guard-rspec"
2 changes: 1 addition & 1 deletion Guardfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# A sample Guardfile
# More info at https://github.com/guard/guard#readme

guard 'rspec', :version => 2 do
guard 'rspec' do
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/bosh/cli/commands/cf.rb$}) { |m| "spec/unit/cf_command_spec.rb" }
watch(%r{^lib/bosh-cloudfoundry/(.+)\.rb$}) { |m| "spec/unit/#{m[1]}_spec.rb" }
Expand Down
3 changes: 0 additions & 3 deletions bosh-cloudfoundry.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,4 @@ Gem::Specification.new do |gem|
gem.add_dependency "net-dns"
gem.add_dependency "fog", ">= 1.8.0"
gem.add_development_dependency "rspec"
gem.add_development_dependency "ci_reporter"
gem.add_development_dependency "debugger"
gem.add_development_dependency "guard-rspec"
end

0 comments on commit 743a027

Please sign in to comment.