Class: Default

Inherits:
Thor
  • Object
show all
Extended by:
Forwardable
Includes:
Appium::Thor::Docs, Appium::Thor::Helpers
Defined in:
lib/appium_thor/commands/init.rb,
lib/appium_thor/commands/commands.rb

Overview

Define Thor tasks in the top level Default namespace.

Instance Method Summary collapse

Methods included from Appium::Thor::Docs

#globs, #last_sha, #mobj_to_md, #run, #space

Methods included from Appium::Thor::Helpers

#_build_gem, #_bump, #_install, #_publish, #_uninstall, #remove_non_ascii_from_cwd, #sh, #tag_exists, #update_release_notes, #version, #version_rgx

Constructor Details

#initialize(args = [], options = {}, config = {}) ⇒ Default

Returns a new instance of Default.



12
13
14
15
16
# File 'lib/appium_thor/commands/init.rb', line 12

def initialize(args = [], options = {}, config = {})
  super
  # Aquire reference to the config defined in the Thorfile
  @cfg = Appium::Thor::Config.instance
end

Instance Method Details

#buildObject



39
40
41
# File 'lib/appium_thor/commands/commands.rb', line 39

def build
  _build_gem
end

#bumpObject



24
25
26
# File 'lib/appium_thor/commands/commands.rb', line 24

def bump
  _bump :z
end

#bumpxObject



14
15
16
# File 'lib/appium_thor/commands/commands.rb', line 14

def bumpx
  _bump :x
end

#bumpyObject



19
20
21
# File 'lib/appium_thor/commands/commands.rb', line 19

def bumpy
  _bump :y
end

#byteObject



68
69
70
# File 'lib/appium_thor/commands/commands.rb', line 68

def byte
  remove_non_ascii_from_cwd
end

#docsObject



58
59
60
# File 'lib/appium_thor/commands/commands.rb', line 58

def docs
  instance_eval &docs_block if docs_block
end

#gem_installObject



53
54
55
# File 'lib/appium_thor/commands/commands.rb', line 53

def gem_install
  _install
end

#gem_uninstallObject



46
47
48
# File 'lib/appium_thor/commands/commands.rb', line 46

def gem_uninstall
  _uninstall
end

#infoObject



4
5
6
7
8
9
10
11
# File 'lib/appium_thor/commands/commands.rb', line 4

def info
  puts <<-MSG
  gem_name: #{gem_name}
 github_name: #{github_name}
github_owner: #{github_owner}
version_file: #{version_file}
  MSG
end

#notesObject



63
64
65
# File 'lib/appium_thor/commands/commands.rb', line 63

def notes
  update_release_notes
end

#publishObject



29
30
31
# File 'lib/appium_thor/commands/commands.rb', line 29

def publish
  _publish
end

#releaseObject



34
35
36
# File 'lib/appium_thor/commands/commands.rb', line 34

def release
  _publish
end