Class: AbtionScripts::Pushit

Inherits:
Base
  • Object
show all
Defined in:
lib/abtion_scripts/pushit.rb

Constant Summary

Constants included from Colorize

Colorize::COLOR_CODES

Instance Attribute Summary

Attributes inherited from Base

#argv

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Base

#app_names, #app_root, #bundler?, #ci?, #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

#colorize, included

Constructor Details

This class inherits a constructor from AbtionScripts::Base

Class Method Details

.descriptionObject



2
3
4
# File 'lib/abtion_scripts/pushit.rb', line 2

def self.description
  "Pulls code, runs test, pushes your code"
end

.helpObject



6
7
8
9
10
11
12
13
# File 'lib/abtion_scripts/pushit.rb', line 6

def self.help
  "abtion pushit\n\nPulls the latest code, restarts, runs the tests, and pushes\nyour new code up.\n"
end

Instance Method Details

#runObject



15
16
17
18
19
20
21
22
# File 'lib/abtion_scripts/pushit.rb', line 15

def run
  run_script :update
  run_script :test

  step "Pushing" do
    system('git push')
  end
end