Class: Chandler::Configuration
- Inherits:
-
Object
- Object
- Chandler::Configuration
- Defined in:
- lib/chandler/configuration.rb
Instance Attribute Summary collapse
-
#changelog_path ⇒ Object
Returns the value of attribute changelog_path.
-
#dry_run ⇒ Object
Returns the value of attribute dry_run.
-
#environment ⇒ Object
Returns the value of attribute environment.
-
#git_path ⇒ Object
Returns the value of attribute git_path.
- #github_repository ⇒ Object
-
#logger ⇒ Object
Returns the value of attribute logger.
-
#tag_prefix ⇒ Object
Returns the value of attribute tag_prefix.
Instance Method Summary collapse
- #changelog ⇒ Object
- #dry_run? ⇒ Boolean
- #git ⇒ Object
- #github ⇒ Object
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
- #tag_mapper ⇒ Object
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
12 13 14 15 16 17 18 |
# File 'lib/chandler/configuration.rb', line 12 def initialize @changelog_path = "CHANGELOG.md" @git_path = ".git" @logger = Chandler::Logger.new @dry_run = false @github_repository = nil end |
Instance Attribute Details
#changelog_path ⇒ Object
Returns the value of attribute changelog_path.
8 9 10 |
# File 'lib/chandler/configuration.rb', line 8 def changelog_path @changelog_path end |
#dry_run ⇒ Object
Returns the value of attribute dry_run.
8 9 10 |
# File 'lib/chandler/configuration.rb', line 8 def dry_run @dry_run end |
#environment ⇒ Object
Returns the value of attribute environment.
8 9 10 |
# File 'lib/chandler/configuration.rb', line 8 def environment @environment end |
#git_path ⇒ Object
Returns the value of attribute git_path.
8 9 10 |
# File 'lib/chandler/configuration.rb', line 8 def git_path @git_path end |
#github_repository ⇒ Object
39 40 41 |
# File 'lib/chandler/configuration.rb', line 39 def github_repository @github_repository || git.origin_remote end |
#logger ⇒ Object
Returns the value of attribute logger.
8 9 10 |
# File 'lib/chandler/configuration.rb', line 8 def logger @logger end |
#tag_prefix ⇒ Object
Returns the value of attribute tag_prefix.
8 9 10 |
# File 'lib/chandler/configuration.rb', line 8 def tag_prefix @tag_prefix end |
Instance Method Details
#changelog ⇒ Object
35 36 37 |
# File 'lib/chandler/configuration.rb', line 35 def changelog @changelog ||= Chandler::Changelog.new(:path => changelog_path) end |
#dry_run? ⇒ Boolean
20 21 22 |
# File 'lib/chandler/configuration.rb', line 20 def dry_run? dry_run end |
#git ⇒ Object
24 25 26 |
# File 'lib/chandler/configuration.rb', line 24 def git @git ||= Chandler::Git.new(:path => git_path, :tag_mapper => tag_mapper) end |
#github ⇒ Object
28 29 30 31 32 33 |
# File 'lib/chandler/configuration.rb', line 28 def github @github ||= Chandler::GitHub.new( :repository => github_repository, :config => self ) end |
#tag_mapper ⇒ Object
43 44 45 46 |
# File 'lib/chandler/configuration.rb', line 43 def tag_mapper return ->(tag) { tag } if tag_prefix.nil? ->(tag) { tag[/^#{Regexp.escape(tag_prefix)}(.*)/, 1] } end |