env_compare 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f6417ed28ff6a91297a3ecc58af784d6819d4f59465984720b57cf9e495f553b
4
- data.tar.gz: a3e325abdeef448d2dac80474a8f51d433ebb2c047f6bea309b9cdde136d0f09
3
+ metadata.gz: 62c65e23128c8437144d682263d6ad17a22485a1ffc4a68a3adcd8b0125e7bc3
4
+ data.tar.gz: 212ecb5eef50ee9003c4469cd454c57383cb95040620ea507c7bd27f861bb00b
5
5
  SHA512:
6
- metadata.gz: d61b7acab0d9661c8e36e2e3e92f1c53cb263184d0c4dfdbbcbd0dcfbcffdc954700384fa77dd0b1a1adc3106a7a4380125e24f352f341b05c9a871e7506d758
7
- data.tar.gz: de8a8214ceadb18c47f3abb2ca18e402286ba99ea2b92439a1f375142cd8225be3fe27dab6685912611d36017bc55887b854b5f979e12a6bcb445c5e8a82f573
6
+ metadata.gz: 59cae1f9c4d5484e0e74e455748fe0dfaf13a1935354b8c2b7cd62968ad0af418ece27fc0381cfe5c1703e0c58a37a6ecaa3242a8b85aab2a5716faac8b49cf0
7
+ data.tar.gz: eaf22b1743bb0c750c7d6bf494b48cef5206228cfec1931450be23af3fd10ee4cc5c142e9f25130bc84ab871a28c08383478c13a5ff2540798424d0ee8ffc5dd
@@ -0,0 +1,9 @@
1
+ # CHANGELOG
2
+
3
+ ## Version 0.1.1
4
+
5
+ Improve description example on `diff` option
6
+
7
+ ## Version 0.1.0
8
+
9
+ Initial release. Includes a `diff` option & 2 themes
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
17
17
 
18
18
  spec.metadata['homepage_uri'] = spec.homepage
19
19
  spec.metadata['source_code_uri'] = 'https://github.com/jaydorsey/env_compare'
20
- spec.metadata['changelog_uri'] = 'https://github.com/jaydorsey/env_compare/CHANGELOG.md'
20
+ spec.metadata['changelog_uri'] = 'https://github.com/jaydorsey/env_compare/blob/master/CHANGELOG.md'
21
21
 
22
22
  spec.files = Dir.chdir(File.expand_path(__dir__)) do
23
23
  `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
@@ -27,7 +27,7 @@ module EnvCompare
27
27
 
28
28
  option :theme, type: :string, default: 'dark', desc: 'Theme to use'
29
29
  option :all, type: :boolean, default: false, desc: 'Display all ENV variables, including matches'
30
- desc 'diff ENV1 ENV2', 'Compare environment variables for 2+ environments'
30
+ desc 'diff heroku-app-name-1 heroku-app-name-2', 'Compare environment variables for 2+ environments'
31
31
  def diff(*envs)
32
32
  return list(envs.first) if envs.size == 1
33
33
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EnvCompare
4
- VERSION = '0.1.0'
4
+ VERSION = '0.1.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: env_compare
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jay Dorsey
@@ -106,6 +106,7 @@ files:
106
106
  - ".rspec"
107
107
  - ".rubocop.yml"
108
108
  - ".travis.yml"
109
+ - CHANGELOG.md
109
110
  - Gemfile
110
111
  - Gemfile.lock
111
112
  - README.md
@@ -126,7 +127,7 @@ metadata:
126
127
  allowed_push_host: https://rubygems.org
127
128
  homepage_uri: https://jaydorsey.com/
128
129
  source_code_uri: https://github.com/jaydorsey/env_compare
129
- changelog_uri: https://github.com/jaydorsey/env_compare/CHANGELOG.md
130
+ changelog_uri: https://github.com/jaydorsey/env_compare/blob/master/CHANGELOG.md
130
131
  post_install_message:
131
132
  rdoc_options: []
132
133
  require_paths:
@@ -142,7 +143,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
142
143
  - !ruby/object:Gem::Version
143
144
  version: '0'
144
145
  requirements: []
145
- rubygems_version: 3.0.3
146
+ rubygems_version: 3.1.4
146
147
  signing_key:
147
148
  specification_version: 4
148
149
  summary: Compare ENV variables across Heroku environments