Skip to content

Commit

Permalink
added guard, pry, and rspec configuration for each
Browse files Browse the repository at this point in the history
  • Loading branch information
toadkicker committed Aug 1, 2014
1 parent 4d86a00 commit cca4c4c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ gemspec
gem 'less-rails', :path => ENV['LESS_RAILS_SOURCE'] if ENV['LESS_RAILS_SOURCE']
gem 'activesupport', '< 4.0.0' if RUBY_VERSION < '1.9.3'

group :development, :test do
gem 'rb-readline'
gem 'guard'
gem 'guard-rspec'
gem 'pry'
end
group :test do
gem 'minitest'
gem 'mocha'
Expand Down
4 changes: 3 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,6 @@ end
task(:default).clear
task :default => :bundle

RSpec::Core::RakeTask.new(:spec)
RSpec::Core::RakeTask.new do |task|
task.rspec_opts = ['--color', '--format', 'doc']
end
1 change: 1 addition & 0 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@
require 'abstract_controller'
require 'action_controller'
require 'mocha/api'
require 'pry'
2 changes: 0 additions & 2 deletions twitter-bootstrap-rails.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ Gem::Specification.new do |s|
s.add_runtime_dependency 'rails', '>= 3.1'
s.add_development_dependency 'less'
s.add_development_dependency 'therubyracer'
s.add_development_dependency 'rspec'
s.add_development_dependency 'rake'
s.post_install_message = "Important: You may need to add a javascript runtime to your Gemfile in order for bootstrap's LESS files to compile to CSS. \n\n" \
"**********************************************\n\n" \
"ExecJS supports these runtimes:\n\n" \
Expand Down

0 comments on commit cca4c4c

Please sign in to comment.