Class: Tug::Hockeyapp
- Defined in:
- lib/tug/deployment/hockeyapp.rb
Instance Attribute Summary collapse
-
#build_server_url ⇒ Object
readonly
Returns the value of attribute build_server_url.
-
#commit_sha ⇒ Object
readonly
Returns the value of attribute commit_sha.
-
#mandatory ⇒ Object
readonly
Returns the value of attribute mandatory.
-
#notes_type ⇒ Object
readonly
Returns the value of attribute notes_type.
-
#private ⇒ Object
readonly
Returns the value of attribute private.
-
#release_type ⇒ Object
readonly
Returns the value of attribute release_type.
-
#repository_url ⇒ Object
readonly
Returns the value of attribute repository_url.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
-
#tags ⇒ Object
readonly
Returns the value of attribute tags.
-
#teams ⇒ Object
readonly
Returns the value of attribute teams.
-
#users ⇒ Object
readonly
Returns the value of attribute users.
Attributes inherited from Deployer
#api_token, #dsym, #file, #notes, #notify
Instance Method Summary collapse
-
#initialize(options) ⇒ Hockeyapp
constructor
A new instance of Hockeyapp.
Methods inherited from Deployer
Constructor Details
#initialize(options) ⇒ Hockeyapp
Returns a new instance of Hockeyapp.
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
# File 'lib/tug/deployment/hockeyapp.rb', line 16 def initialize() super @notes_type = [:notes_type] @status = [:status] @tags = [:tags] @teams = [:teams] @users = [:users] @mandatory = [:mandatory] @release_type = [:release_type] @private = [:private] @commit_sha = [:commit_sha] @build_server_url = [:build_server_url] @repository_url = [:repository_url] end |
Instance Attribute Details
#build_server_url ⇒ Object (readonly)
Returns the value of attribute build_server_url.
13 14 15 |
# File 'lib/tug/deployment/hockeyapp.rb', line 13 def build_server_url @build_server_url end |
#commit_sha ⇒ Object (readonly)
Returns the value of attribute commit_sha.
12 13 14 |
# File 'lib/tug/deployment/hockeyapp.rb', line 12 def commit_sha @commit_sha end |
#mandatory ⇒ Object (readonly)
Returns the value of attribute mandatory.
9 10 11 |
# File 'lib/tug/deployment/hockeyapp.rb', line 9 def mandatory @mandatory end |
#notes_type ⇒ Object (readonly)
Returns the value of attribute notes_type.
4 5 6 |
# File 'lib/tug/deployment/hockeyapp.rb', line 4 def notes_type @notes_type end |
#private ⇒ Object (readonly)
Returns the value of attribute private.
11 12 13 |
# File 'lib/tug/deployment/hockeyapp.rb', line 11 def private @private end |
#release_type ⇒ Object (readonly)
Returns the value of attribute release_type.
10 11 12 |
# File 'lib/tug/deployment/hockeyapp.rb', line 10 def release_type @release_type end |
#repository_url ⇒ Object (readonly)
Returns the value of attribute repository_url.
14 15 16 |
# File 'lib/tug/deployment/hockeyapp.rb', line 14 def repository_url @repository_url end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
5 6 7 |
# File 'lib/tug/deployment/hockeyapp.rb', line 5 def status @status end |
#tags ⇒ Object (readonly)
Returns the value of attribute tags.
6 7 8 |
# File 'lib/tug/deployment/hockeyapp.rb', line 6 def @tags end |
#teams ⇒ Object (readonly)
Returns the value of attribute teams.
7 8 9 |
# File 'lib/tug/deployment/hockeyapp.rb', line 7 def teams @teams end |
#users ⇒ Object (readonly)
Returns the value of attribute users.
8 9 10 |
# File 'lib/tug/deployment/hockeyapp.rb', line 8 def users @users end |