runger_config 5.0.0 → 5.1.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 +4 -4
- data/CHANGELOG.md +4 -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: 6d7b6bb5cc8cd669711aff10814df1fcebc522e9284227c8badb4b08e45ada7c
|
|
4
|
+
data.tar.gz: 237b1530944cc34469d4b33e5f456f4b61078116294d7a2e3c41ad4703ce4b0f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 82d00211c95f788f45accdef25e01b3f13ede5d6efdd407e067431ca43d16548c1ce0d422d5db6fc305684d32f8afddae2e5b481073b70f73bc44470301c479c
|
|
7
|
+
data.tar.gz: b8626650770d62b495352a9bcd71275a4b450da699227f7cf918dfea6f33339bdb9e87a952ff813405cf283f287c2f2746781dd688a805b8f368e9aa5764f026
|
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.1.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-16 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.11
|
|
185
186
|
signing_key:
|
|
186
187
|
specification_version: 4
|
|
187
188
|
summary: Configuration DSL for Ruby libraries and applications
|