env_bang 0.4.2 → 1.0.0

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
- SHA1:
3
- metadata.gz: 8b8b5ff7d55793a3606129515bdea01f59f072c7
4
- data.tar.gz: 0abf994bd7a5c82fbcd26e36e36411e9a73031f4
2
+ SHA256:
3
+ metadata.gz: caced8c854aedd70eb0f17e728eb76481aced9d7063907c4ddb221fdf0afc2ee
4
+ data.tar.gz: 5dd565d37104212fde171396cd45dc07913ba2d3b4d8ab2881e54c7c1bc7c58d
5
5
  SHA512:
6
- metadata.gz: e57c9ffeb718dd8e49ce40edd1a69d34f72fa700967546ff4f545a9e92f793fab176299ae77771a97f7f2f0e33569b098808782bafe5673c151e3c70e467789f
7
- data.tar.gz: a10569c4a1ca1fcd75703c1f8cfaddeca1ee20fd9c6521d58dfd932f490e5472985102f575c8b240d4dcb21ba6e7f7d6ec3dee0b571b9c2ecead60b705682e92
6
+ metadata.gz: 5b08b2788b310bb0270f6f2b3643b5279bc4664adf9ca6d7dafd2e9836a82dce6bb15887b93bf098320fa479c2fb813f40e65f777cc7f5882cad67c100f7b7f4
7
+ data.tar.gz: ce95a84a42164284beee119759cca029ee349f9c6bf0fe3fed3cfb731a3edab80be2a87f07601883d745654c14968607d75f8b497697ef9f8a1424e259e99c8c
data/.travis.yml CHANGED
@@ -1,14 +1,7 @@
1
1
  language: ruby
2
- dist: trusty
3
-
4
2
  rvm:
5
- - 2.0.0
6
- - 2.3.3
7
- - 2.4.0
3
+ - 2.7
4
+ - 3.0
5
+ - 3.1
6
+ - 3.2
8
7
  - ruby-head
9
- - rbx-3.69
10
-
11
- matrix:
12
- fast_finish: true
13
- allow_failures:
14
- - rvm: rbx-3.69
data/README.md CHANGED
@@ -1,12 +1,11 @@
1
- # ENV!
1
+ # ENV!
2
2
 
3
3
  Do a bang-up job managing your environment variables.
4
4
 
5
- [![Gem Version](https://img.shields.io/gem/v/env_bang.svg?style=flat)](https://rubygems.org/gems/env_bang)
6
- [![Build Status](https://img.shields.io/travis/jcamenisch/ENV_BANG/master.svg?style=flat)](https://travis-ci.org/jcamenisch/ENV_BANG)
7
- [![Dependency Status](https://img.shields.io/gemnasium/jcamenisch/ENV_BANG.svg?style=flat)](https://gemnasium.com/jcamenisch/ENV_BANG)
8
- [![Code Climate](https://img.shields.io/codeclimate/github/jcamenisch/ENV_BANG.svg?style=flat)](https://codeclimate.com/github/jcamenisch/ENV_BANG)
9
- [![Coverage Status](https://img.shields.io/coveralls/jcamenisch/ENV_BANG/master.svg?style=flat)](https://coveralls.io/r/jcamenisch/ENV_BANG)
5
+ [![Gem Version](https://img.shields.io/gem/v/env_bang?logo=rubygems)](https://rubygems.org/gems/env_bang)
6
+ [![Build Status](https://img.shields.io/travis/jcamenisch/ENV_BANG/main.svg?logo=travis)](https://app.travis-ci.com/github/jcamenisch/ENV_BANG)
7
+ [![Maintainability](https://img.shields.io/codeclimate/maintainability/jcamenisch/ENV_BANG?logo=codeclimate)](https://codeclimate.com/github/jcamenisch/ENV_BANG)
8
+ [![Coverage Status](https://img.shields.io/coverallsCoverage/github/jcamenisch/ENV_BANG?logo=coveralls)](https://coveralls.io/r/jcamenisch/ENV_BANG)
10
9
 
11
10
  ENV! provides a thin wrapper around ENV to accomplish a few things:
12
11
 
@@ -202,7 +201,7 @@ ENV!['NUMBER_SET']
202
201
 
203
202
  ENV!.use :NUMBER_SET, class: Set
204
203
  ```
205
-
204
+
206
205
  While the `config` block is designed to provide a cleaner configuration
207
206
  file, calling the methods directly can occasionally be handy, such as when
208
207
  trying things out in an IRB/Pry session.
@@ -1,3 +1,3 @@
1
1
  class ENV_BANG
2
- VERSION = "0.4.2"
2
+ VERSION = "1.0.0"
3
3
  end
@@ -15,7 +15,7 @@ class ENV_BANG
15
15
  end
16
16
 
17
17
  config.before_configuration do
18
- if File.exists?(env_rb_file)
18
+ if File.exist?(env_rb_file)
19
19
  load env_rb_file
20
20
  else
21
21
  warn("ENV! could not find your environment variable configuration. Please create #{env_rb_file} to set up environment variables at Rails boot.")
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: env_bang
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.2
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Camenisch
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-10-21 00:00:00.000000000 Z
11
+ date: 2023-01-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -65,7 +65,7 @@ homepage: https://github.com/jcamenisch/ENV_BANG
65
65
  licenses:
66
66
  - MIT
67
67
  metadata: {}
68
- post_install_message:
68
+ post_install_message:
69
69
  rdoc_options: []
70
70
  require_paths:
71
71
  - lib
@@ -80,9 +80,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
80
80
  - !ruby/object:Gem::Version
81
81
  version: '0'
82
82
  requirements: []
83
- rubyforge_project:
84
- rubygems_version: 2.2.5
85
- signing_key:
83
+ rubygems_version: 3.3.7
84
+ signing_key:
86
85
  specification_version: 4
87
86
  summary: Do a bang-up job managing your environment variables
88
87
  test_files: