heroku_config_manager 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: fc00496bf2422f86b30cc1813bd4f843e1e73196
4
+ data.tar.gz: 2039dffca373cd1cf85efe5fc14f1b4e7f9163fc
5
+ SHA512:
6
+ metadata.gz: 64c794682f923214b8b11f8d4f2673663ba6456ce9a9bf1312f17fdbaad8a604808b648aef78cce038d41084aa84ac8114a416d22c7610601a70a891f166414a
7
+ data.tar.gz: ca7e7d43908e440dbe41eafc88c075f0b90d4d2d3e356edb79af11eecbf292f31736ab7f99052134c3147722e047363253853c9b9c1fb50a7f43a06b5062cb8b
@@ -0,0 +1,14 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --require spec_helper
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.0
4
+ script: bundle exec rspec spec
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in heroku_config_manager.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2015 bbauer
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,89 @@
1
+ # Heroku Config Manager
2
+
3
+ [![Gem Version](https://badge.fury.io/rb/heroku_config_manager.svg)](http://badge.fury.io/rb/heroku_config_manager)
4
+ [![Build Status](https://travis-ci.org/G5/heroku_config_manager.svg?branch=formatting-logic)](https://travis-ci.org/G5/heroku_config_manager)
5
+
6
+ A simple Ruby gem that allows you to set and remove multiple config vars
7
+ for multiple apps at once.
8
+
9
+ ## Installation
10
+
11
+ Add this line to your application's Gemfile:
12
+
13
+ ```ruby
14
+ gem 'heroku_config_manager'
15
+ ```
16
+
17
+ And then execute:
18
+
19
+ $ bundle
20
+
21
+ Or install it yourself as:
22
+
23
+ $ gem install heroku_config_manager
24
+
25
+ ## Usage
26
+
27
+ You can pass in multiple apps and multiple config vars to set...
28
+
29
+ ```ruby
30
+ api_key = "my-api-key"
31
+ apps = ["my-heroku-app-name", "another-heroku-app-name"]
32
+ params = { "CONFIG_ONE" => "value", "CONFIG_TWO" => "value" }
33
+
34
+ HerokuConfigManager.set(api_key, apps, params)
35
+ ```
36
+
37
+ In order to remove a config var, simply set it's value to nil in the passed in
38
+ params...
39
+
40
+ ```ruby
41
+ params = { "MY_CONFIG_VAR" => nil }
42
+
43
+ HerokuConfigManager.set(api_key, apps, params)
44
+ ```
45
+
46
+ ## Contributing
47
+
48
+ 1. Fork it ( https://github.com/[my-github-username]/heroku_config_manager/fork )
49
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
50
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
51
+ 4. Push to the branch (`git push origin my-new-feature`)
52
+ 5. Create a new Pull Request
53
+
54
+ ## Authors
55
+
56
+ * Brian Bauer / [@bbauer](https://github.com/bbauer)
57
+
58
+ ## Specs
59
+
60
+ Run once.
61
+
62
+ ```bash
63
+ $ rspec
64
+ ```
65
+
66
+ ## License
67
+
68
+ Copyright (c) 2015 G5
69
+
70
+ MIT License
71
+
72
+ Permission is hereby granted, free of charge, to any person obtaining
73
+ a copy of this software and associated documentation files (the
74
+ "Software"), to deal in the Software without restriction, including
75
+ without limitation the rights to use, copy, modify, merge, publish,
76
+ distribute, sublicense, and/or sell copies of the Software, and to
77
+ permit persons to whom the Software is furnished to do so, subject to
78
+ the following conditions:
79
+
80
+ The above copyright notice and this permission notice shall be
81
+ included in all copies or substantial portions of the Software.
82
+
83
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
84
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
85
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
86
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
87
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
88
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
89
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,28 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+
5
+ require 'heroku_config_manager/version'
6
+ require "heroku_config_manager/manager"
7
+
8
+ Gem::Specification.new do |spec|
9
+ spec.name = "heroku_config_manager"
10
+ spec.version = HerokuConfigManager::VERSION
11
+ spec.authors = ["bbauer"]
12
+ spec.email = ["brian.bauer@g5platform.com"]
13
+ spec.summary = %q{Simple Ruby gem to set and remove Heroku config vars}
14
+ spec.description = %q{Simple Ruby gem to set and remove Heroku config vars}
15
+ spec.homepage = "https://github.com/G5/heroku_config_manager"
16
+ spec.license = "MIT"
17
+
18
+ spec.files = `git ls-files -z`.split("\x0")
19
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
20
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
21
+ spec.require_paths = ["lib"]
22
+
23
+ spec.add_dependency "httparty"
24
+
25
+ spec.add_development_dependency "bundler", "~> 1.7"
26
+ spec.add_development_dependency "rake", "~> 10.0"
27
+ spec.add_development_dependency "rspec"
28
+ end
@@ -0,0 +1,11 @@
1
+ require "heroku_config_manager/version"
2
+ require "heroku_config_manager/manager"
3
+ require "httparty"
4
+
5
+ module HerokuConfigManager
6
+ class << self
7
+ def set(api_key, apps, vars)
8
+ Manager.new(api_key, apps).set(vars)
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,37 @@
1
+ class HerokuConfigManager::Manager
2
+ BASE_ENDPOINT = "https://api.heroku.com/apps"
3
+ RESOURCE = "config-vars"
4
+
5
+ def initialize(api_key, apps)
6
+ @api_key = api_key
7
+ @apps = [apps].flatten
8
+ end
9
+
10
+ def set(vars)
11
+ @apps.each { |app| set_config(app, vars) }
12
+ end
13
+
14
+ private
15
+
16
+ def set_config(app, vars)
17
+ HTTParty.patch(url_for(app), params(vars))
18
+ end
19
+
20
+ def url_for(app)
21
+ "#{BASE_ENDPOINT}/#{app}/#{RESOURCE}"
22
+ end
23
+
24
+ def headers
25
+ {
26
+ headers: {
27
+ "Content-Type" => "application/json",
28
+ "Accept" => "application/vnd.heroku+json; version=3",
29
+ "Authorization" => Base64.encode64(":#{@api_key}")
30
+ }
31
+ }
32
+ end
33
+
34
+ def params(vars)
35
+ { body: vars.to_json }.merge(headers)
36
+ end
37
+ end
@@ -0,0 +1,3 @@
1
+ module HerokuConfigManager
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,30 @@
1
+ require "spec_helper"
2
+
3
+ describe HerokuConfigManager::Manager do
4
+ let(:manager) { described_class.new(api_key, apps) }
5
+ let(:apps) { ["foo"] }
6
+ let(:api_key) { "12345" }
7
+
8
+ describe "#set" do
9
+ let(:params) { { "MY_CONFIG_VAR" => "some-value" } }
10
+ let(:expected_url) { "https://api.heroku.com/apps/#{apps.first}/config-vars" }
11
+ let(:expected_parameters) do
12
+ {
13
+ body: params.to_json,
14
+ headers: {
15
+ "Content-Type" => "application/json",
16
+ "Accept" => "application/vnd.heroku+json; version=3",
17
+ "Authorization" => Base64.encode64(":#{api_key}")
18
+ }
19
+ }
20
+ end
21
+
22
+ subject { manager.set(params) }
23
+ before { HTTParty.stub(:patch) }
24
+
25
+ it "calls the Heroku api with the appropriate headers and body" do
26
+ expect(HTTParty).to receive(:patch).with(expected_url, expected_parameters)
27
+ subject
28
+ end
29
+ end
30
+ end
@@ -0,0 +1,25 @@
1
+ require "spec_helper"
2
+ require "heroku_config_manager"
3
+
4
+ describe HerokuConfigManager do
5
+ let(:apps) { ["foo"] }
6
+ let(:api_key) { "12345" }
7
+ let(:params) { { "MY_CONFIG_VAR" => "some-value" } }
8
+
9
+ describe "#set" do
10
+ let(:manager) { double(set: nil) }
11
+
12
+ subject { HerokuConfigManager.set(api_key, apps, params) }
13
+ before { HerokuConfigManager::Manager.stub(new: manager) }
14
+
15
+ it "instantiates a new Manager object" do
16
+ expect(HerokuConfigManager::Manager).to receive(:new).with(api_key, apps)
17
+ subject
18
+ end
19
+
20
+ it "calls set on the object" do
21
+ expect(manager).to receive(:set).with(params)
22
+ subject
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,90 @@
1
+ require "httparty"
2
+ # This file was generated by the `rspec --init` command. Conventionally, all
3
+ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
4
+ # The generated `.rspec` file contains `--require spec_helper` which will cause this
5
+ # file to always be loaded, without a need to explicitly require it in any files.
6
+ #
7
+ # Given that it is always loaded, you are encouraged to keep this file as
8
+ # light-weight as possible. Requiring heavyweight dependencies from this file
9
+ # will add to the boot time of your test suite on EVERY test run, even for an
10
+ # individual file that may not need all of that loaded. Instead, consider making
11
+ # a separate helper file that requires the additional dependencies and performs
12
+ # the additional setup, and require it from the spec files that actually need it.
13
+ #
14
+ # The `.rspec` file also contains a few flags that are not defaults but that
15
+ # users commonly want.
16
+ #
17
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
18
+ RSpec.configure do |config|
19
+ # rspec-expectations config goes here. You can use an alternate
20
+ # assertion/expectation library such as wrong or the stdlib/minitest
21
+ # assertions if you prefer.
22
+ config.expect_with :rspec do |expectations|
23
+ # This option will default to `true` in RSpec 4. It makes the `description`
24
+ # and `failure_message` of custom matchers include text for helper methods
25
+ # defined using `chain`, e.g.:
26
+ # be_bigger_than(2).and_smaller_than(4).description
27
+ # # => "be bigger than 2 and smaller than 4"
28
+ # ...rather than:
29
+ # # => "be bigger than 2"
30
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
31
+ end
32
+
33
+ # rspec-mocks config goes here. You can use an alternate test double
34
+ # library (such as bogus or mocha) by changing the `mock_with` option here.
35
+ config.mock_with :rspec do |mocks|
36
+ # Prevents you from mocking or stubbing a method that does not exist on
37
+ # a real object. This is generally recommended, and will default to
38
+ # `true` in RSpec 4.
39
+ mocks.verify_partial_doubles = true
40
+ end
41
+
42
+ # The settings below are suggested to provide a good initial experience
43
+ # with RSpec, but feel free to customize to your heart's content.
44
+ =begin
45
+ # These two settings work together to allow you to limit a spec run
46
+ # to individual examples or groups you care about by tagging them with
47
+ # `:focus` metadata. When nothing is tagged with `:focus`, all examples
48
+ # get run.
49
+ config.filter_run :focus
50
+ config.run_all_when_everything_filtered = true
51
+
52
+ # Limits the available syntax to the non-monkey patched syntax that is recommended.
53
+ # For more details, see:
54
+ # - http://myronmars.to/n/dev-blog/2012/06/rspecs-new-expectation-syntax
55
+ # - http://teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
56
+ # - http://myronmars.to/n/dev-blog/2014/05/notable-changes-in-rspec-3#new__config_option_to_disable_rspeccore_monkey_patching
57
+ config.disable_monkey_patching!
58
+
59
+ # This setting enables warnings. It's recommended, but in some cases may
60
+ # be too noisy due to issues in dependencies.
61
+ config.warnings = true
62
+
63
+ # Many RSpec users commonly either run the entire suite or an individual
64
+ # file, and it's useful to allow more verbose output when running an
65
+ # individual spec file.
66
+ if config.files_to_run.one?
67
+ # Use the documentation formatter for detailed output,
68
+ # unless a formatter has already been configured
69
+ # (e.g. via a command-line flag).
70
+ config.default_formatter = 'doc'
71
+ end
72
+
73
+ # Print the 10 slowest examples and example groups at the
74
+ # end of the spec run, to help surface which specs are running
75
+ # particularly slow.
76
+ config.profile_examples = 10
77
+
78
+ # Run specs in random order to surface order dependencies. If you find an
79
+ # order dependency and want to debug it, you can fix the order by providing
80
+ # the seed, which is printed after each run.
81
+ # --seed 1234
82
+ config.order = :random
83
+
84
+ # Seed global randomization in this process using the `--seed` CLI option.
85
+ # Setting this allows you to use `--seed` to deterministically reproduce
86
+ # test failures related to randomization by passing the same `--seed` value
87
+ # as the one that triggered the failure.
88
+ Kernel.srand config.seed
89
+ =end
90
+ end
metadata ADDED
@@ -0,0 +1,117 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: heroku_config_manager
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - bbauer
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-01-09 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: httparty
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.7'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.7'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ description: Simple Ruby gem to set and remove Heroku config vars
70
+ email:
71
+ - brian.bauer@g5platform.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - ".gitignore"
77
+ - ".rspec"
78
+ - ".travis.yml"
79
+ - Gemfile
80
+ - LICENSE.txt
81
+ - README.md
82
+ - Rakefile
83
+ - heroku_config_manager.gemspec
84
+ - lib/heroku_config_manager.rb
85
+ - lib/heroku_config_manager/manager.rb
86
+ - lib/heroku_config_manager/version.rb
87
+ - spec/lib/heroku_config_manager/manger_spec.rb
88
+ - spec/lib/heroku_config_manager_spec.rb
89
+ - spec/spec_helper.rb
90
+ homepage: https://github.com/G5/heroku_config_manager
91
+ licenses:
92
+ - MIT
93
+ metadata: {}
94
+ post_install_message:
95
+ rdoc_options: []
96
+ require_paths:
97
+ - lib
98
+ required_ruby_version: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - ">="
101
+ - !ruby/object:Gem::Version
102
+ version: '0'
103
+ required_rubygems_version: !ruby/object:Gem::Requirement
104
+ requirements:
105
+ - - ">="
106
+ - !ruby/object:Gem::Version
107
+ version: '0'
108
+ requirements: []
109
+ rubyforge_project:
110
+ rubygems_version: 2.4.5
111
+ signing_key:
112
+ specification_version: 4
113
+ summary: Simple Ruby gem to set and remove Heroku config vars
114
+ test_files:
115
+ - spec/lib/heroku_config_manager/manger_spec.rb
116
+ - spec/lib/heroku_config_manager_spec.rb
117
+ - spec/spec_helper.rb