unifig-rails 0.3.0 → 0.4.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: da0f60e60a062264ab0ffeca7a196182cfc33a470ec1b778350eb2bfc7f3606a
4
- data.tar.gz: 78e9d12ba53db07e32d66c4feca9fa11c65cf912911429baeb7490cb3d4bdeee
3
+ metadata.gz: 74badf63e9b7f40a6ba17060cfc2efb6b492c8ce15e2989059347172ca18c446
4
+ data.tar.gz: ed267db6b594db09e440a5276dd8c1866e808c48af542c6d45240ab9a2105219
5
5
  SHA512:
6
- metadata.gz: e581b11efcd48cb1944bfd2197b72ff23569146e7f4a9dcf02f8d179de5ddc402d2386c4ca3bd5438224baa242e94c2d7e5f3fb7ab1d02729a14816ba08c2b3b
7
- data.tar.gz: bbfbd1a7900fc5c0ce5aeb7c6acc2b23010a068b0cfe3939797d5c3a7d13e1becac1e24ee83ee5d0adef772750519955419b1a2a751e8057375a4f5dbaa93e33
6
+ metadata.gz: cae2a7852b30e96d5baf803a981495a0c6fd2da60cd42778d28cbf6bea45324447c8f5b7f42d4459961bc150df749aa1b8517e0db6025fc72fc72698c50e99c2
7
+ data.tar.gz: 44bd69f3834e4f7d1d9323cccc7f829016a1c9609e0bda5e5d8a2cf74a57324ef9c662ee4c5de7f4d23d1263b7cba51e5105af3ae8b58713c118c612464c1213
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ # [0.4.0][] (2022-09-01)
2
+
3
+ ## Changed
4
+
5
+ - Support for Unifig increased to 0.4.0.
6
+
1
7
  # [0.3.0][] (2022-08-03)
2
8
 
3
9
  ## Changed
@@ -18,6 +24,7 @@
18
24
 
19
25
  Initial release.
20
26
 
27
+ [0.4.0]: https://github.com/AaronLasseigne/unifig-rails/compare/v0.3.0...v0.4.0
21
28
  [0.3.0]: https://github.com/AaronLasseigne/unifig-rails/compare/v0.2.0...v0.3.0
22
29
  [0.2.0]: https://github.com/AaronLasseigne/unifig-rails/compare/v0.1.0...v0.2.0
23
30
  [0.1.0]: https://github.com/AaronLasseigne/unifig-rails/compare/v0.0.0...v0.1.0
data/README.md CHANGED
@@ -10,13 +10,13 @@ Adds [Rails][] support to [Unifig][].
10
10
  Add it to your Gemfile:
11
11
 
12
12
  ``` rb
13
- gem 'unifig-rails', '~> 0.3.0'
13
+ gem 'unifig-rails', '~> 0.4.0'
14
14
  ```
15
15
 
16
16
  Run the configuration generator:
17
17
 
18
18
  ``` sh
19
- rails generate unifig:config
19
+ bundle exec rails generate unifig:config
20
20
  ```
21
21
 
22
22
  This project uses [Semantic Versioning][].
@@ -30,8 +30,8 @@ For information on how to use Unifig see the [documentation][] for that gem.
30
30
 
31
31
  If you need to know more information about the variables in Unifig you can run `rake unifig:vars` and get a listing.
32
32
 
33
- ```sh
34
- > be rake unifig:vars
33
+ ```
34
+ > rake unifig:vars
35
35
  ┌────────┬────────────────┬──────────┬──────────┬─────────┐
36
36
  │ │ │ │ │ │
37
37
  │ Var │ Value │ Provider │ Required │ Method │
@@ -10,7 +10,7 @@ module Unifig
10
10
  abort 'A configuration file already exists.' if File.exist?(Unifig::Rails::CONFIG_PATH)
11
11
 
12
12
  create_file Unifig::Rails::CONFIG_PATH, <<~YML
13
- config:
13
+ unifig:
14
14
  providers: local
15
15
 
16
16
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Unifig
4
4
  module Rails
5
- VERSION = '0.3.0'
5
+ VERSION = '0.4.0'
6
6
  end
7
7
  end
@@ -10,7 +10,7 @@ RSpec.describe Unifig::ConfigGenerator do
10
10
  end
11
11
 
12
12
  expect(content).to eql <<~YML
13
- config:
13
+ unifig:
14
14
  providers: local
15
15
 
16
16
 
@@ -20,7 +20,7 @@ RSpec.describe Unifig::ConfigGenerator do
20
20
  context 'with an existing file' do
21
21
  before do
22
22
  write_config(<<~YML)
23
- config:
23
+ unifig:
24
24
  providers: local
25
25
 
26
26
  ONE:
@@ -11,7 +11,7 @@ RSpec.describe Unifig::Railtie do
11
11
  context 'with a config' do
12
12
  before do
13
13
  write_config(<<~YML)
14
- config:
14
+ unifig:
15
15
  providers: local
16
16
 
17
17
  FOO:
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unifig-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aaron Lasseigne
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-08-03 00:00:00.000000000 Z
11
+ date: 2022-09-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -44,14 +44,14 @@ dependencies:
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: 0.3.2
47
+ version: 0.4.0
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: 0.3.2
54
+ version: 0.4.0
55
55
  description: Unifig support for Rails.
56
56
  email:
57
57
  - aaron.lasseigne@gmail.com