rails_env_config 1.0.0 → 1.0.1

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/rails_env_config.rb +2 -3
  3. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 49780c5c9523005665c66a9349a59f887b5ccb72
4
- data.tar.gz: dd796940f1c528d195fb033fc7ae2eae6bff7300
3
+ metadata.gz: cf92f2a1ae1bdbc9c8ff5b8a41275c6e3b3d00ac
4
+ data.tar.gz: bfc6d4157166f5db6a2075050f66f9d3c19b8e23
5
5
  SHA512:
6
- metadata.gz: e3092ca702d57de379b06a3d930e51c2701dca6ff153db9e6c0e553b8cbcb4cc455ab698c09d5b5708aaf7e07515f68e62bc2f29372ea9026f0b27ce0965e5d9
7
- data.tar.gz: aa0444151e5494efddc4d4f2038b9262d43463b6c37afeb62fc8857457d30afef0017f8f40b5c27d89f486f867b5af9a70559d194cae98c27c218df01f9b997b
6
+ metadata.gz: cd0da5d49909558fa14cb7bc63f17a56c46e87f337a46e8992f0438d82fc0457a1177c95ac23d359874c6391693ce79e60481ba103995c8b6b78f7dd1b282318
7
+ data.tar.gz: 753bb807b813bec384e06055f6563c21f8439a4105eca65dcdb99de6690ca6d7cad1f34a6bc867a70cb7fda6c742ec2e1ad46cea7d552e2a125b450f609163ed
@@ -2,7 +2,7 @@ require 'yaml'
2
2
  require 'rails_env_config/railtie'
3
3
 
4
4
  module RailsEnvConfig
5
-
5
+
6
6
  #
7
7
  # Load some environment variables from a given path
8
8
  #
@@ -11,11 +11,10 @@ module RailsEnvConfig
11
11
  YAML.load(File.open(path)).each do |key, value|
12
12
  ENV[key.to_s] = value
13
13
  end
14
- $stderr.puts "=> Loaded local environment variables from #{path}"
15
14
  true
16
15
  else
17
16
  false
18
17
  end
19
18
  end
20
-
19
+
21
20
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_env_config
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Cooke
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-07-11 00:00:00.000000000 Z
11
+ date: 2016-03-16 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Loads the complete contents of config/environment.yml into ENV when a
14
14
  Rails application starts.
@@ -40,7 +40,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
40
40
  version: '0'
41
41
  requirements: []
42
42
  rubyforge_project:
43
- rubygems_version: 2.2.2
43
+ rubygems_version: 2.4.5
44
44
  signing_key:
45
45
  specification_version: 4
46
46
  summary: A library to allow custom local environment variables to be loaded into a