vagrant-envbash 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2e8ab55723262f531ef6679be94de55ad9a714eb
4
- data.tar.gz: 6a4c2a45c3cd3afff207174183ac28e820500246
3
+ metadata.gz: 4e70b2831b425537a50aa04a8c2e8c8d716dbcd4
4
+ data.tar.gz: 36823b792baa6b2096c03164f76a0602091f0115
5
5
  SHA512:
6
- metadata.gz: 94fdba0131b7376d06f83b8a3fc72d92135028b43012c7479277bc8d0d628e084faf799dd56c717ebdd3e51043756630fe100bf52f87886cff1208e159f68a38
7
- data.tar.gz: 9c589a1202f519b40307f7b0886dd33dff175e70a4b5f5caed5ed5cf95249c5d8f274622c524120a8f4ea35aed8bea2c73fe89e81af35c6d84eb187b80aef1c7
6
+ metadata.gz: 70942d12e37b322c989298ae9f92cb5dd6e596e0f801eb0b84b76dd3a16a1f8cd76b07c8a4d71ff3570a22659d1cc5da73fc0a969e593ce66c5eec28f9f131e4
7
+ data.tar.gz: 309d8c59e8d64e83ae7f9f7d18e36eded96048d1d2a781f72e0218cd22b2d10dced547156443cf86bc6d8da5b2888e145fbd84f7602c0e256704fe5be18cf614
data/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ # [DEPRECATED] This gem is no longer recommended or maintained. Use [envbash-ruby](https://github.com/scampersand/envbash-ruby) instead, which works with Vagrant.
2
+
1
3
  # Vagrant envbash plugin
2
4
 
3
5
  This is a [Vagrant](http://www.vagrantup.com) plugin to load environment
@@ -106,6 +108,17 @@ REMOVED the following variables:
106
108
 
107
109
  ## FAQ
108
110
 
111
+ ### Should I commit `env.bash` to source control?
112
+
113
+ No, definitely not. The purpose of `env.bash` is to store development
114
+ configuration that isn't suitable for committing to the repository, whether
115
+ that's secret keys or developer-specific customizations. In fact, you should add
116
+ the following line to `.gitignore`:
117
+
118
+ ```
119
+ /env.bash
120
+ ```
121
+
109
122
  ### Is it necessary to explicitly `export` variables in `env.bash`?
110
123
 
111
124
  Yes. If you have a lot of settings and want to avoid repeating `export`, you can
@@ -67,7 +67,7 @@ module VagrantPlugins
67
67
  ENV.replace(new_env)
68
68
 
69
69
  # We are loaded!
70
- e.envbash_loaded = ENV['VAGRANT_ENVBASH_FILE']
70
+ e.envbash_loaded = true
71
71
 
72
72
  # Remove VAGRANT_ENVBASH_FILE from ENV if we set it.
73
73
  ENV.delete('VAGRANT_ENVBASH_FILE') unless keep_vagrant_envbash_file
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module EnvBash
3
- VERSION = "0.0.1"
3
+ VERSION = "0.0.2"
4
4
  end
5
5
  end
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
8
8
  spec.version = VagrantPlugins::EnvBash::VERSION
9
9
  spec.authors = ["Aron Griffis"]
10
10
  spec.email = ["aron@arongriffis.com"]
11
- spec.summary = %q{Vagrant plugin to load environment variables from env.bash}
12
- spec.description = %q{Vagrant plugin to load environment variables from env.bash}
11
+ spec.summary = %q{[DEPRECATED] Vagrant plugin to load environment variables from env.bash}
12
+ spec.description = %q{[DEPRECATED] Vagrant plugin to load environment variables from env.bash. Use envbash-ruby instead.}
13
13
  spec.homepage = "https://github.com/agriffis/vagrant-envbash"
14
14
  spec.license = "MIT"
15
15
 
@@ -18,8 +18,8 @@ Gem::Specification.new do |spec|
18
18
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
19
  spec.require_paths = ["lib"]
20
20
 
21
- spec.add_development_dependency "bundler", "~> 1.7"
22
- spec.add_development_dependency "rake", "~> 10.0"
21
+ spec.add_development_dependency "bundler"
22
+ spec.add_development_dependency "rake"
23
23
 
24
24
  # It seems like this shouldn't be required, but I need this in order for
25
25
  # "bundle exec vagrant" to run, even when cloning the upstream vagrant-aws
metadata CHANGED
@@ -1,43 +1,43 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-envbash
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aron Griffis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-05-16 00:00:00.000000000 Z
11
+ date: 2017-02-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '1.7'
19
+ version: '0'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: '1.7'
26
+ version: '0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rake
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: '10.0'
33
+ version: '0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
- version: '10.0'
40
+ version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: json
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -52,7 +52,8 @@ dependencies:
52
52
  - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
- description: Vagrant plugin to load environment variables from env.bash
55
+ description: "[DEPRECATED] Vagrant plugin to load environment variables from env.bash.
56
+ Use envbash-ruby instead."
56
57
  email:
57
58
  - aron@arongriffis.com
58
59
  executables: []
@@ -91,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
91
92
  version: '0'
92
93
  requirements: []
93
94
  rubyforge_project:
94
- rubygems_version: 2.4.8
95
+ rubygems_version: 2.5.2
95
96
  signing_key:
96
97
  specification_version: 4
97
- summary: Vagrant plugin to load environment variables from env.bash
98
+ summary: "[DEPRECATED] Vagrant plugin to load environment variables from env.bash"
98
99
  test_files: []