Module: HerokuFeatureDeployments

Defined in:
lib/heroku_feature_deployments.rb,
lib/heroku_feature_deployments/railtie.rb,
lib/heroku_feature_deployments/version.rb,
lib/heroku_feature_deployments/deployer.rb,
lib/heroku_feature_deployments/configuration.rb,
lib/heroku_feature_deployments/pull_request_creator.rb

Defined Under Namespace

Classes: Configuration, Deployer, PullRequestCreator, Railtie

Constant Summary collapse

VERSION =
'0.7.4'

Class Attribute Summary collapse

Class Method Summary collapse

Class Attribute Details

.configurationObject

Returns the value of attribute configuration.



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

def configuration
  @configuration
end

Class Method Details

.configure {|configuration| ... } ⇒ Object

Yields:



17
18
19
20
21
# File 'lib/heroku_feature_deployments.rb', line 17

def self.configure
  self.configuration ||= HerokuFeatureDeployments::Configuration.new
  yield(configuration)
  return self.configuration
end