Class: AbtionScripts::Rspec
Constant Summary
Constants included from Colorize
Instance Attribute Summary
Attributes inherited from Base
Class Method Summary collapse
Instance Method Summary collapse
Methods inherited from Base
#app_names, #app_root, #bundler?, #ci?, help, #heroku, #heroku_app_name, inherited, #initialize, load_scripts_deferred, name, #rails?, run, #run_script, script_classes, script_names, scripts, #step, #system!, #yarn?
Methods included from Colorize
Constructor Details
This class inherits a constructor from AbtionScripts::Base
Class Method Details
.description ⇒ Object
2 3 4 |
# File 'lib/abtion_scripts/rspec.rb', line 2 def self.description "Runs your RSpec suite" end |
Instance Method Details
#run ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 17 18 |
# File 'lib/abtion_scripts/rspec.rb', line 6 def run begin load(File.("./spring", __FILE__)) rescue LoadError end require 'bundler/setup' step "Running RSpec" do command = ['bundle', 'exec', 'rspec', *argv] system!(command.join(" ")) end end |