envlogic 1.1.1 → 1.1.2

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: 111d26f3d2e7c8bdcccf966cb4290d6fd5f019e57ba616111a1131790499aa8b
4
- data.tar.gz: 9b5e99b1e28a507730ab7c1e14b195302e272ac2ea5294d6f7a8a65c32c197ee
3
+ metadata.gz: b449ccb8e2e3dff8d5cf8064b9b4ed4ab9114eded0b32d408785723e7e14524a
4
+ data.tar.gz: b35ad171eb770a2262c0f18ce69215824b021704b3e05d87cd1a14c78be87262
5
5
  SHA512:
6
- metadata.gz: 8e15698e86e7f54148262f668e4d612dc6b3a02e164a8f99692c47ae5a4337b0b045ebb3f95fef7cba59d1098ab43785b6fdd4294bba1fac9f9bba0e7db37d80
7
- data.tar.gz: 4bcd82c8dd5e64964283d453f884c34effea553121d05ea1541d51c46afc237a11c399ff9b8a4d70c4b4d170a7d94e1992a5111d36c018e289e3629787484423
6
+ metadata.gz: 7106aece26c6ea4f5de4a49df87ef80823fa6af334f3f767b47cdc588b993a1e2bc23b53535f165295db94a53bfc268f10cbeb4d266c186a1a0b9258556e12e5
7
+ data.tar.gz: 2ac462c52f5af7c11c4eae6b036c2a44eee93314c146ec31ee92a840b085df06123af83cfceadcc6568ad2e6c001131d6be75c4fd85bacb2057de38d03f1a01f
Binary file
data.tar.gz.sig CHANGED
Binary file
@@ -2,8 +2,6 @@ name: ci
2
2
 
3
3
  on:
4
4
  push:
5
- paths:
6
- - '**'
7
5
  schedule:
8
6
  - cron: '0 1 * * *'
9
7
 
@@ -14,11 +12,16 @@ jobs:
14
12
  fail-fast: false
15
13
  matrix:
16
14
  ruby:
17
- - "2.7"
18
- - "2.6"
19
- - "2.5"
15
+ - '2.7'
16
+ - '2.6'
17
+ - '2.5'
18
+ - 'jruby'
19
+ - 'truffleruby'
20
+ include:
21
+ - ruby: '2.7'
22
+ coverage: 'true'
20
23
  steps:
21
- - uses: actions/checkout@v1
24
+ - uses: actions/checkout@v2
22
25
  - name: Install package dependencies
23
26
  run: "[ -e $APT_DEPS ] || sudo apt-get install -y --no-install-recommends $APT_DEPS"
24
27
  - name: Set up Ruby
@@ -32,12 +35,16 @@ jobs:
32
35
  - name: Bundle install
33
36
  run: bundle install --jobs 4 --retry 3
34
37
  - name: Run all tests
38
+ env:
39
+ GITHUB_COVERAGE: ${{matrix.coverage}}
35
40
  run: bundle exec rspec
36
41
  coditsu:
37
42
  runs-on: ubuntu-latest
38
43
  strategy:
39
44
  fail-fast: false
40
45
  steps:
41
- - uses: actions/checkout@v1
46
+ - uses: actions/checkout@v2
47
+ with:
48
+ fetch-depth: 0
42
49
  - name: Run Coditsu
43
50
  run: \curl -sSL https://api.coditsu.io/run/ci | bash
@@ -1,6 +1,11 @@
1
1
  # Envlogic gem changelog
2
2
 
3
- ## Unreleased (master)
3
+ ## 1.1.2 (2020-04-24)
4
+ - restore JRuby support
5
+ - add TruffleRuby support
6
+ - Change license to LGPL-3.0
7
+
8
+ ## 1.1.1 (2020-04-22)
4
9
  - drop jruby support
5
10
  - drop Ruby 2.2 support
6
11
  - drop Ruby 2.3 support
@@ -9,6 +14,7 @@
9
14
  - Ruby 2.7.1 support
10
15
  - Replace travis with GH actions
11
16
  - Update docs to show per instance support
17
+ - Support signing the releases
12
18
 
13
19
  ## 1.1.0
14
20
  - Ruby 2.4.2 support
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- envlogic (1.1.1)
4
+ envlogic (1.1.2)
5
5
  dry-inflector (~> 0.1)
6
6
 
7
7
  GEM
data/LICENSE ADDED
@@ -0,0 +1,165 @@
1
+ GNU LESSER GENERAL PUBLIC LICENSE
2
+ Version 3, 29 June 2007
3
+
4
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
5
+ Everyone is permitted to copy and distribute verbatim copies
6
+ of this license document, but changing it is not allowed.
7
+
8
+
9
+ This version of the GNU Lesser General Public License incorporates
10
+ the terms and conditions of version 3 of the GNU General Public
11
+ License, supplemented by the additional permissions listed below.
12
+
13
+ 0. Additional Definitions.
14
+
15
+ As used herein, "this License" refers to version 3 of the GNU Lesser
16
+ General Public License, and the "GNU GPL" refers to version 3 of the GNU
17
+ General Public License.
18
+
19
+ "The Library" refers to a covered work governed by this License,
20
+ other than an Application or a Combined Work as defined below.
21
+
22
+ An "Application" is any work that makes use of an interface provided
23
+ by the Library, but which is not otherwise based on the Library.
24
+ Defining a subclass of a class defined by the Library is deemed a mode
25
+ of using an interface provided by the Library.
26
+
27
+ A "Combined Work" is a work produced by combining or linking an
28
+ Application with the Library. The particular version of the Library
29
+ with which the Combined Work was made is also called the "Linked
30
+ Version".
31
+
32
+ The "Minimal Corresponding Source" for a Combined Work means the
33
+ Corresponding Source for the Combined Work, excluding any source code
34
+ for portions of the Combined Work that, considered in isolation, are
35
+ based on the Application, and not on the Linked Version.
36
+
37
+ The "Corresponding Application Code" for a Combined Work means the
38
+ object code and/or source code for the Application, including any data
39
+ and utility programs needed for reproducing the Combined Work from the
40
+ Application, but excluding the System Libraries of the Combined Work.
41
+
42
+ 1. Exception to Section 3 of the GNU GPL.
43
+
44
+ You may convey a covered work under sections 3 and 4 of this License
45
+ without being bound by section 3 of the GNU GPL.
46
+
47
+ 2. Conveying Modified Versions.
48
+
49
+ If you modify a copy of the Library, and, in your modifications, a
50
+ facility refers to a function or data to be supplied by an Application
51
+ that uses the facility (other than as an argument passed when the
52
+ facility is invoked), then you may convey a copy of the modified
53
+ version:
54
+
55
+ a) under this License, provided that you make a good faith effort to
56
+ ensure that, in the event an Application does not supply the
57
+ function or data, the facility still operates, and performs
58
+ whatever part of its purpose remains meaningful, or
59
+
60
+ b) under the GNU GPL, with none of the additional permissions of
61
+ this License applicable to that copy.
62
+
63
+ 3. Object Code Incorporating Material from Library Header Files.
64
+
65
+ The object code form of an Application may incorporate material from
66
+ a header file that is part of the Library. You may convey such object
67
+ code under terms of your choice, provided that, if the incorporated
68
+ material is not limited to numerical parameters, data structure
69
+ layouts and accessors, or small macros, inline functions and templates
70
+ (ten or fewer lines in length), you do both of the following:
71
+
72
+ a) Give prominent notice with each copy of the object code that the
73
+ Library is used in it and that the Library and its use are
74
+ covered by this License.
75
+
76
+ b) Accompany the object code with a copy of the GNU GPL and this license
77
+ document.
78
+
79
+ 4. Combined Works.
80
+
81
+ You may convey a Combined Work under terms of your choice that,
82
+ taken together, effectively do not restrict modification of the
83
+ portions of the Library contained in the Combined Work and reverse
84
+ engineering for debugging such modifications, if you also do each of
85
+ the following:
86
+
87
+ a) Give prominent notice with each copy of the Combined Work that
88
+ the Library is used in it and that the Library and its use are
89
+ covered by this License.
90
+
91
+ b) Accompany the Combined Work with a copy of the GNU GPL and this license
92
+ document.
93
+
94
+ c) For a Combined Work that displays copyright notices during
95
+ execution, include the copyright notice for the Library among
96
+ these notices, as well as a reference directing the user to the
97
+ copies of the GNU GPL and this license document.
98
+
99
+ d) Do one of the following:
100
+
101
+ 0) Convey the Minimal Corresponding Source under the terms of this
102
+ License, and the Corresponding Application Code in a form
103
+ suitable for, and under terms that permit, the user to
104
+ recombine or relink the Application with a modified version of
105
+ the Linked Version to produce a modified Combined Work, in the
106
+ manner specified by section 6 of the GNU GPL for conveying
107
+ Corresponding Source.
108
+
109
+ 1) Use a suitable shared library mechanism for linking with the
110
+ Library. A suitable mechanism is one that (a) uses at run time
111
+ a copy of the Library already present on the user's computer
112
+ system, and (b) will operate properly with a modified version
113
+ of the Library that is interface-compatible with the Linked
114
+ Version.
115
+
116
+ e) Provide Installation Information, but only if you would otherwise
117
+ be required to provide such information under section 6 of the
118
+ GNU GPL, and only to the extent that such information is
119
+ necessary to install and execute a modified version of the
120
+ Combined Work produced by recombining or relinking the
121
+ Application with a modified version of the Linked Version. (If
122
+ you use option 4d0, the Installation Information must accompany
123
+ the Minimal Corresponding Source and Corresponding Application
124
+ Code. If you use option 4d1, you must provide the Installation
125
+ Information in the manner specified by section 6 of the GNU GPL
126
+ for conveying Corresponding Source.)
127
+
128
+ 5. Combined Libraries.
129
+
130
+ You may place library facilities that are a work based on the
131
+ Library side by side in a single library together with other library
132
+ facilities that are not Applications and are not covered by this
133
+ License, and convey such a combined library under terms of your
134
+ choice, if you do both of the following:
135
+
136
+ a) Accompany the combined library with a copy of the same work based
137
+ on the Library, uncombined with any other library facilities,
138
+ conveyed under the terms of this License.
139
+
140
+ b) Give prominent notice with the combined library that part of it
141
+ is a work based on the Library, and explaining where to find the
142
+ accompanying uncombined form of the same work.
143
+
144
+ 6. Revised Versions of the GNU Lesser General Public License.
145
+
146
+ The Free Software Foundation may publish revised and/or new versions
147
+ of the GNU Lesser General Public License from time to time. Such new
148
+ versions will be similar in spirit to the present version, but may
149
+ differ in detail to address new problems or concerns.
150
+
151
+ Each version is given a distinguishing version number. If the
152
+ Library as you received it specifies that a certain numbered version
153
+ of the GNU Lesser General Public License "or any later version"
154
+ applies to it, you have the option of following the terms and
155
+ conditions either of that published version or of any later version
156
+ published by the Free Software Foundation. If the Library as you
157
+ received it does not specify a version number of the GNU Lesser
158
+ General Public License, you may choose any version of the GNU Lesser
159
+ General Public License ever published by the Free Software Foundation.
160
+
161
+ If the Library as you received it specifies that a proxy can decide
162
+ whether future versions of the GNU Lesser General Public License shall
163
+ apply, that proxy's public statement of acceptance of any version is
164
+ permanent authorization for you to choose that version for the
165
+ Library.
data/README.md CHANGED
@@ -110,7 +110,7 @@ Basic::Karafka.env.development? # => true
110
110
  ## References
111
111
 
112
112
  * [Karafka framework](https://github.com/karafka/karafka)
113
- * [Envlogic Travis CI](https://travis-ci.org/karafka/envlogic)
113
+ * [Envlogic Actions CI](https://github.com/karafka/envlogic/actions?query=workflow%3Aci)
114
114
  * [Envlogic Coditsu](https://app.coditsu.io/karafka/repositories/envlogic)
115
115
 
116
116
  ## Note on contributions
@@ -0,0 +1,25 @@
1
+ -----BEGIN CERTIFICATE-----
2
+ MIIEODCCAqCgAwIBAgIBATANBgkqhkiG9w0BAQsFADAjMSEwHwYDVQQDDBhtYWNp
3
+ ZWovREM9bWVuc2ZlbGQvREM9cGwwHhcNMTkwNzMwMTQ1NDU0WhcNMjAwNzI5MTQ1
4
+ NDU0WjAjMSEwHwYDVQQDDBhtYWNpZWovREM9bWVuc2ZlbGQvREM9cGwwggGiMA0G
5
+ CSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQC9fCwtaHZG2SyyNXiH8r0QbJQx/xxl
6
+ dkvwWz9QGJO+O8rEx20FB1Ab+MVkfOscwIv5jWpmk1U9whzDPl1uFtIbgu+sk+Zb
7
+ uQlZyK/DPN6c+/BbBL+RryTBRyvkPLoCVwm7uxc/JZ1n4AI6eF4cCZ2ieZ9QgQbU
8
+ MQs2QPqs9hT50Ez/40GnOdadVfiDDGz+NME2C4ms0BriXwZ1tcRTfJIHe2xjIbbb
9
+ y5qRGfsLKcgMzvLQR24olixyX1MR0s4+Wveq3QL/gBhL4veUcv+UABJA8IJR0kyB
10
+ seHHutusiwZ1v3SjjjW1xLLrc2ARV0mgCb0WaK2T4iA3oFTGLh6Ydz8LNl31KQFv
11
+ 94nRd8IhmJxrhQ6dQ/WT9IXoa5S9lfT5lPJeINemH4/6QPABzf9W2IZlCdI9wCdB
12
+ TBaw57MKneGAYZiKjw6OALSy2ltQUCl3RqFl3VP7n8uFy1U987Q5VIIQ3O1UUsQD
13
+ Oe/h+r7GUU4RSPKgPlrwvW9bD/UQ+zF51v8CAwEAAaN3MHUwCQYDVR0TBAIwADAL
14
+ BgNVHQ8EBAMCBLAwHQYDVR0OBBYEFJNIBHdfEUD7TqHqIer2YhWaWhwcMB0GA1Ud
15
+ EQQWMBSBEm1hY2llakBtZW5zZmVsZC5wbDAdBgNVHRIEFjAUgRJtYWNpZWpAbWVu
16
+ c2ZlbGQucGwwDQYJKoZIhvcNAQELBQADggGBAKA4eqko6BTNhlysip6rfBkVTGri
17
+ ZXsL+kRb2hLvsQJS/kLyM21oMlu+LN0aPj3qEFR8mE/YeDD8rLAfruBRTltPNbR7
18
+ xA5eE1gkxY5LfExUtK3b2wPqfmo7mZgfcsMwfYg/tUXw1WpBCnrhAJodpGH6SXmp
19
+ A40qFUZst0vjiOoO+aTblIHPmMJXoZ3K42dTlNKlEiDKUWMRKSgpjjYGEYalFNWI
20
+ hHfCz2r8L2t+dYdMZg1JGbEkq4ADGsAA8ioZIpJd7V4hI17u5TCdi7X5wh/0gN0E
21
+ CgP+nLox3D+l2q0QuQEkayr+auFYkzTCkF+BmEk1D0Ru4mcf3F4CJvEmW4Pzbjqt
22
+ i1tsCWPtJ4E/UUKnKaWKqGbjrjHJ0MuShYzHkodox5IOiCXIQg+1+YSzfXUV6WEK
23
+ KJG/fhg1JV5vVDdVy6x+tv5SQ5ctU0feCsVfESi3rE3zRd+nvzE9HcZ5aXeL1UtJ
24
+ nT5Xrioegu2w1jPyVEgyZgTZC5rvD0nNS5sFNQ==
25
+ -----END CERTIFICATE-----
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
14
14
  spec.summary = 'Library which allows to set and get environments values'
15
15
  spec.description = 'Library used to manage environments for your Ruby application'
16
16
  spec.homepage = 'https://github.com/karafka/envlogic'
17
- spec.license = 'MIT'
17
+ spec.license = 'LGPL-3.0'
18
18
 
19
19
  spec.add_dependency 'dry-inflector', '~> 0.1'
20
20
  spec.required_ruby_version = '>= 2.5.0'
@@ -3,5 +3,5 @@
3
3
  # Main module to encapsulate logic
4
4
  module Envlogic
5
5
  # Current version of gem
6
- VERSION = '1.1.1'
6
+ VERSION = '1.1.2'
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: envlogic
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - pavlo_vavruk
@@ -35,7 +35,7 @@ cert_chain:
35
35
  KJG/fhg1JV5vVDdVy6x+tv5SQ5ctU0feCsVfESi3rE3zRd+nvzE9HcZ5aXeL1UtJ
36
36
  nT5Xrioegu2w1jPyVEgyZgTZC5rvD0nNS5sFNQ==
37
37
  -----END CERTIFICATE-----
38
- date: 2020-04-22 00:00:00.000000000 Z
38
+ date: 2020-04-24 00:00:00.000000000 Z
39
39
  dependencies:
40
40
  - !ruby/object:Gem::Dependency
41
41
  name: dry-inflector
@@ -69,16 +69,17 @@ files:
69
69
  - CHANGELOG.md
70
70
  - Gemfile
71
71
  - Gemfile.lock
72
- - MIT-LICENCE
72
+ - LICENSE
73
73
  - README.md
74
74
  - Rakefile
75
+ - certs/mensfeld.pem
75
76
  - envlogic.gemspec
76
77
  - lib/envlogic.rb
77
78
  - lib/envlogic/env.rb
78
79
  - lib/envlogic/version.rb
79
80
  homepage: https://github.com/karafka/envlogic
80
81
  licenses:
81
- - MIT
82
+ - LGPL-3.0
82
83
  metadata: {}
83
84
  post_install_message:
84
85
  rdoc_options: []
metadata.gz.sig CHANGED
Binary file
@@ -1,18 +0,0 @@
1
- Permission is hereby granted, free of charge, to any person obtaining
2
- a copy of this software and associated documentation files (the
3
- "Software"), to deal in the Software without restriction, including
4
- without limitation the rights to use, copy, modify, merge, publish,
5
- distribute, sublicense, and/or sell copies of the Software, and to
6
- permit persons to whom the Software is furnished to do so, subject to
7
- the following conditions:
8
-
9
- The above copyright notice and this permission notice shall be
10
- included in all copies or substantial portions of the Software.
11
-
12
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
13
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
14
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
15
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
16
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
17
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
18
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.