runger_config 5.0.0 → 5.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/bin/release +27 -0
- data/lib/runger/version.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e36a84e4188599cef5bacb3523079fcbfbfb8babf8fe035754b658716b3a6a75
|
4
|
+
data.tar.gz: fd277c3b3367049e77f305576960c0bd9788c45b4f0a7cd4c0f3bb241cde64f2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f03216949b9e2d38c95876f3058bfb205032d5b5c2a294f660c1c257b707ae66e9d662090af81080e6cf2a5de64a5355cada1c953f2636af89405f03daa53e0e
|
7
|
+
data.tar.gz: 0c3dd9cffd328d6d7249b3e73c4a4ff43cdb792ae26faf818a5ab89b5cbfbda1343f9bf86e8eb461a5407bc3b3b541c280f35e9adc6525b3e7551469439265c4
|
data/CHANGELOG.md
CHANGED
data/bin/release
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
#
|
5
|
+
# This file was generated by Bundler.
|
6
|
+
#
|
7
|
+
# The application 'release' is installed as part of a gem, and
|
8
|
+
# this file is here to facilitate running it.
|
9
|
+
#
|
10
|
+
|
11
|
+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
|
12
|
+
|
13
|
+
bundle_binstub = File.expand_path('bundle', __dir__)
|
14
|
+
|
15
|
+
if File.file?(bundle_binstub)
|
16
|
+
if File.read(bundle_binstub, 300).include?('This file was generated by Bundler')
|
17
|
+
load(bundle_binstub)
|
18
|
+
else
|
19
|
+
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
|
20
|
+
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
require 'rubygems'
|
25
|
+
require 'bundler/setup'
|
26
|
+
|
27
|
+
load Gem.bin_path('runger_release_assistant', 'release')
|
data/lib/runger/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: runger_config
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.
|
4
|
+
version: 5.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Runger
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-06-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -106,6 +106,7 @@ files:
|
|
106
106
|
- CHANGELOG.md
|
107
107
|
- LICENSE.txt
|
108
108
|
- README.md
|
109
|
+
- bin/release
|
109
110
|
- lib/generators/runger/app_config/USAGE
|
110
111
|
- lib/generators/runger/app_config/app_config_generator.rb
|
111
112
|
- lib/generators/runger/config/USAGE
|
@@ -160,7 +161,7 @@ licenses:
|
|
160
161
|
- MIT
|
161
162
|
metadata:
|
162
163
|
bug_tracker_uri: http://github.com/davidrunger/runger_config/issues
|
163
|
-
changelog_uri: https://github.com/davidrunger/runger_config/blob/
|
164
|
+
changelog_uri: https://github.com/davidrunger/runger_config/blob/main/CHANGELOG.md
|
164
165
|
documentation_uri: http://github.com/davidrunger/runger_config
|
165
166
|
funding_uri: https://github.com/sponsors/davidrunger
|
166
167
|
homepage_uri: http://github.com/davidrunger/runger_config
|
@@ -181,7 +182,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
181
182
|
- !ruby/object:Gem::Version
|
182
183
|
version: '0'
|
183
184
|
requirements: []
|
184
|
-
rubygems_version: 3.5.
|
185
|
+
rubygems_version: 3.5.14
|
185
186
|
signing_key:
|
186
187
|
specification_version: 4
|
187
188
|
summary: Configuration DSL for Ruby libraries and applications
|