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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 81aff8e187347108683968d2aa3a9fecae6a7195d6261b0809658031204bef71
4
- data.tar.gz: 740300783062b617a412f05c9b1f65757a81bef733a77e0e86361ce41a4a00b8
3
+ metadata.gz: e36a84e4188599cef5bacb3523079fcbfbfb8babf8fe035754b658716b3a6a75
4
+ data.tar.gz: fd277c3b3367049e77f305576960c0bd9788c45b4f0a7cd4c0f3bb241cde64f2
5
5
  SHA512:
6
- metadata.gz: 42f3055ac5a872743e63b982a74afc7a26852681432f091e520cf690df78eef5787f84390f620fd7210edf67cada60c5aa08c127eb97ef1ef478e0603ff16020
7
- data.tar.gz: 0cf7835d45cc7bbbcfc6247d58890beaef9e8cfd8784534bc97281857a5ebfec4d75e763a86bf195b96759c2be740d0b78247aa4aef30c79c6994203a8a0bb2f
6
+ metadata.gz: f03216949b9e2d38c95876f3058bfb205032d5b5c2a294f660c1c257b707ae66e9d662090af81080e6cf2a5de64a5355cada1c953f2636af89405f03daa53e0e
7
+ data.tar.gz: 0c3dd9cffd328d6d7249b3e73c4a4ff43cdb792ae26faf818a5ab89b5cbfbda1343f9bf86e8eb461a5407bc3b3b541c280f35e9adc6525b3e7551469439265c4
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## v5.2.0 (2024-06-28)
2
+
3
+ - Source required Ruby version dynamically from .ruby-version
4
+
5
+ ## v5.1.0 (2024-06-15)
6
+
7
+ - Rename primary branch from `master` to `main`
8
+
1
9
  ## v5.0.0 (2023-12-29)
2
10
 
3
11
  - Don't use anonymous keyword rest arguments in block
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')
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Runger # :nodoc:
4
- VERSION = '5.0.0'
4
+ VERSION = '5.2.0'
5
5
  end
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.0.0
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: 2023-12-30 00:00:00.000000000 Z
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/master/CHANGELOG.md
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.3
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