view_component 1.16.0 → 1.17.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b95c56d30fd1e36093504017055a6bbc887afaaf27f6d801d5ebc023c95663fa
4
- data.tar.gz: 5815e617efc02b962202ffc7af13a4bdafc19aa80acd75e17e8c07aee10b16f4
3
+ metadata.gz: 91485b58594a99f3189bf1ee9eb24f5943e264dc3581b1331d8586b0547923df
4
+ data.tar.gz: 47629f3e6d93eaf333dffb53f2d465fdf8669034aa48592a9e144de04e67fe86
5
5
  SHA512:
6
- metadata.gz: b5488a8639f3383c6abb9e01112e63122a6a19069f5438358fa615da00c155b88b88298ba7a3b591177e6d954cc263807d874e7594f58220df111b7dd3398750
7
- data.tar.gz: 566d554ba24af618543d26f9a7269bd6a3c2c5a42de7e33306bdf14bc78304c2cf5c94ba2e850519ef5b835c03cfb1bc49bf188633c51f751ac02d1d2afb799a
6
+ metadata.gz: 650f7631c2b3b11ab5399c567e96639158641484950c70aefc1c73982b79c8fc19082cd1d3b9571806af5576aa5417e1aad8682353ad9031c52d89b127478b0a
7
+ data.tar.gz: 2d7bccb44d21f6a9232b39b278cb66dc2deb068ea00660fbabfa2737e28c70dbc09a4990fecb308c1ae318839480010f07aa7b6bf3df69259d8ff9b275afa2d4
@@ -8,7 +8,7 @@ jobs:
8
8
  strategy:
9
9
  matrix:
10
10
  rails_version: [5.0.0, 5.2.3, 6.0.0, master]
11
- ruby_version: [2.5.x, 2.6.x, 2.7.x]
11
+ ruby_version: [2.4.x, 2.5.x, 2.6.x, 2.7.x]
12
12
  exclude:
13
13
  - rails_version: master
14
14
  ruby_version: 2.4.x
@@ -20,6 +20,10 @@ jobs:
20
20
  uses: actions/setup-ruby@v1
21
21
  with:
22
22
  ruby-version: ${{ matrix.ruby_version }}
23
+ - name: Update rubygems when testing with Ruby 2.4.x
24
+ if: startsWith(matrix.ruby_version, '2.4')
25
+ run: |
26
+ gem update --system --no-document
23
27
  - name: Build and test with Rake
24
28
  run: |
25
29
  gem install bundler:1.17.3
@@ -1,9 +1,19 @@
1
1
  # master
2
2
 
3
+ # v1.17.0
4
+
5
+ * Support Ruby 2.4 in CI.
6
+
7
+ *Andrew Mason*
8
+
3
9
  * ViewComponent generators do not not prompt for content requirement.
4
10
 
5
11
  *Joel Hawksley*
6
12
 
13
+ * Add post-install message that gem has been renamed to `view_component`.
14
+
15
+ *Joel Hawksley*
16
+
7
17
  # v1.16.0
8
18
 
9
19
  * Add `refute_component_rendered` test helper.
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- actionview-component (1.16.0)
5
- capybara (>= 3)
4
+ actionview-component (1.17.0)
5
+ capybara (~> 3)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
@@ -189,7 +189,7 @@ PLATFORMS
189
189
  DEPENDENCIES
190
190
  actionview-component!
191
191
  better_html (~> 1)
192
- bundler (>= 1.14)
192
+ bundler (~> 1.14)
193
193
  haml (~> 5)
194
194
  minitest (= 5.1.0)
195
195
  rails (= 6.0.0)
data/README.md CHANGED
@@ -33,7 +33,7 @@ This library is designed to integrate as seamlessly as possible with Rails, with
33
33
 
34
34
  ## Compatibility
35
35
 
36
- `actionview-component` is tested for compatibility with combinations of Ruby `2.5`/`2.6`/`2.7` and Rails `5.0.0`/`5.2.3`/`6.0.0`/`master`.
36
+ `actionview-component` is tested for compatibility with combinations of Ruby `2.4`/`2.5`/`2.6`/`2.7` and Rails `5.0.0`/`5.2.3`/`6.0.0`/`master`.
37
37
 
38
38
  ## Installation
39
39
 
@@ -3,7 +3,7 @@
3
3
  module ViewComponent
4
4
  module VERSION
5
5
  MAJOR = 1
6
- MINOR = 16
6
+ MINOR = 17
7
7
  PATCH = 0
8
8
 
9
9
  STRING = [MAJOR, MINOR, PATCH].join(".")
@@ -12,7 +12,6 @@ Gem::Specification.new do |spec|
12
12
  spec.email = ["opensource+view_component@github.com"]
13
13
 
14
14
  spec.summary = %q{View components for Rails}
15
- spec.description = %q{View components for Rails}
16
15
  spec.homepage = "https://github.com/github/view_component"
17
16
  spec.license = "MIT"
18
17
 
@@ -34,8 +33,8 @@ Gem::Specification.new do |spec|
34
33
 
35
34
  spec.required_ruby_version = ">= 2.3.0"
36
35
 
37
- spec.add_runtime_dependency "capybara", ">= 3"
38
- spec.add_development_dependency "bundler", ">= 1.14"
36
+ spec.add_runtime_dependency "capybara", "~> 3"
37
+ spec.add_development_dependency "bundler", "~> 1.14"
39
38
  spec.add_development_dependency "rake", "~> 13.0"
40
39
  spec.add_development_dependency "minitest", "= 5.1.0"
41
40
  spec.add_development_dependency "haml", "~> 5"
metadata CHANGED
@@ -1,41 +1,41 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: view_component
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.16.0
4
+ version: 1.17.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - GitHub Open Source
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-03-20 00:00:00.000000000 Z
11
+ date: 2020-03-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: capybara
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ">="
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
19
  version: '3'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ">="
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '3'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ">="
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
33
  version: '1.14'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ">="
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '1.14'
41
41
  - !ruby/object:Gem::Dependency
@@ -136,7 +136,7 @@ dependencies:
136
136
  - - "~>"
137
137
  - !ruby/object:Gem::Version
138
138
  version: 0.13.0
139
- description: View components for Rails
139
+ description:
140
140
  email:
141
141
  - opensource+view_component@github.com
142
142
  executables: []
@@ -219,7 +219,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
219
219
  - !ruby/object:Gem::Version
220
220
  version: '0'
221
221
  requirements: []
222
- rubygems_version: 3.0.3
222
+ rubygems_version: 3.1.2
223
223
  signing_key:
224
224
  specification_version: 4
225
225
  summary: View components for Rails