Skip to content

Commit

Permalink
Merge pull request huginn#973 from cantino/remove_spring
Browse files Browse the repository at this point in the history
Remove spring because it frequently conflicts with foreman
  • Loading branch information
cantino committed Aug 17, 2015
2 parents d217b5f + 50ccc2a commit b0ae65a
Show file tree
Hide file tree
Showing 7 changed files with 2 additions and 36 deletions.
2 changes: 0 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,6 @@ group :development do
gem 'rspec-rails', '~> 3.1'
gem 'rspec-html-matchers', '~> 0.7'
gem 'shoulda-matchers'
gem 'spring', '~> 1.3.0'
gem 'spring-commands-rspec'
gem 'vcr'
gem 'webmock', '~> 1.17.4', require: false
end
Expand Down
7 changes: 1 addition & 6 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -419,9 +419,6 @@ GEM
slop (3.6.0)
spectrum-rails (1.3.4)
railties (>= 3.1)
spring (1.3.6)
spring-commands-rspec (1.0.4)
spring (>= 0.9.1)
sprockets (3.2.0)
rack (~> 1.0)
sprockets-rails (2.3.1)
Expand Down Expand Up @@ -569,8 +566,6 @@ DEPENDENCIES
shoulda-matchers
slack-notifier (~> 1.0.0)
spectrum-rails
spring (~> 1.3.0)
spring-commands-rspec
string-scrub
therubyracer (~> 0.12.2)
tumblr_client
Expand All @@ -589,4 +584,4 @@ DEPENDENCIES
xmpp4r (~> 0.5.6)

BUNDLED WITH
1.10.5
1.10.6
2 changes: 1 addition & 1 deletion Guardfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ guard 'livereload' do
watch(%r{(app|vendor)(/assets/\w+/(.+\.(css|js|html|png|jpg))).*}) { |m| "/assets/#{m[3]}" }
end

guard :rspec, cmd: 'bundle exec spring rspec' do
guard :rspec, cmd: 'bundle exec rspec' do
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { "spec" }
Expand Down
4 changes: 0 additions & 4 deletions bin/rails
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
#!/usr/bin/env ruby
begin
load File.expand_path("../spring", __FILE__)
rescue LoadError
end
APP_PATH = File.expand_path('../../config/application', __FILE__)
require_relative '../config/boot'
require 'rails/commands'
4 changes: 0 additions & 4 deletions bin/rake
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
#!/usr/bin/env ruby
begin
load File.expand_path("../spring", __FILE__)
rescue LoadError
end
require_relative '../config/boot'
require 'rake'
Rake.application.run
4 changes: 0 additions & 4 deletions bin/rspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
#!/usr/bin/env ruby
begin
load File.expand_path("../spring", __FILE__)
rescue LoadError
end
require 'bundler/setup'
load Gem.bin_path('rspec-core', 'rspec')
15 changes: 0 additions & 15 deletions bin/spring

This file was deleted.

0 comments on commit b0ae65a

Please sign in to comment.