flutie 2.1.0 → 2.2.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: 40b644b9e3d68ac23396f430560d921c5ca9a10c011918be5ec87cfa091757fc
4
- data.tar.gz: 166e8e7c83edc2e5bf95edadcedd01e16614e32641735dc8b0d81de8d2e1abe7
3
+ metadata.gz: 827bb367a00d0cc4813295e6f6d9fe1783dc33bd2ce7850e1899274564eb8ce8
4
+ data.tar.gz: 3813b5ae6fe02f3e6c7e983e9ba258bb9fc01c90f4363823d238bb8dd07ec98f
5
5
  SHA512:
6
- metadata.gz: cb914b168238ed393e27ae7cbbffa31f9ef612cba00e1af569725b9e31ba8514da16adbeb7e51a4f4460b8a0d7196e9a06dd849cea40c1d3ccc397d98884b1e4
7
- data.tar.gz: 2ab8dddabc7741b6e796968c28e7119d08f3ea7abee5b1fda4b95f3ae92ddb36be230b715dfdfad80462df2603333a3bbe8e8f8b0dd64c41a6d5264ba1bdfb00
6
+ metadata.gz: 9de27be52275a4f84f5210bb300a3db04b49011f3cf7641b8b60a0b1362ce00ffaf563f633665add4eebe0c14463a47f03dab1b5eb03a3dd24d7580c2c6e9104
7
+ data.tar.gz: 8a56833e5ebf7e8094b226ab347f99fa6f6c2df7f628c6da333f441cf6fc071d23ce2e600c81fcfade824d87abeb6ee9954c485f05d5fd33f60659d5b9b0cf17
@@ -1,13 +1,20 @@
1
1
  language: ruby
2
+
2
3
  rvm:
3
- - 2.3.7
4
- - 2.4.4
5
- - 2.5.1
4
+ - 2.4.7
5
+ - 2.5.6
6
+ - 2.6.4
7
+
6
8
  gemfile:
7
- - gemfiles/rails_5.2.0.gemfile
8
- - gemfiles/rails_5.1.0.gemfile
9
- - gemfiles/rails_5.0.0.gemfile
10
- - gemfiles/rails_4.2.0.gemfile
9
+ - gemfiles/rails_5.0.gemfile
10
+ - gemfiles/rails_5.1.gemfile
11
+ - gemfiles/rails_5.2.gemfile
12
+ - gemfiles/rails_6.0.gemfile
13
+
11
14
  notifications:
12
15
  email: false
13
- sudo: false
16
+
17
+ matrix:
18
+ exclude:
19
+ - rvm: 2.4.7
20
+ gemfile: gemfiles/rails_6.0.gemfile
data/Appraisals CHANGED
@@ -1,5 +1,12 @@
1
- ['5.2.0', '5.1.0', '5.0.0', '4.2.0'].each do |rails_version|
2
- appraise "rails_#{rails_version}" do
3
- gem 'rails', "~> #{rails_version}"
1
+ rails_versions = %w(
2
+ 5.0
3
+ 5.1
4
+ 5.2
5
+ 6.0
6
+ )
7
+
8
+ rails_versions.each do |version|
9
+ appraise "rails_#{version}" do
10
+ gem "rails", "~> #{version}.0"
4
11
  end
5
12
  end
@@ -1,6 +1,15 @@
1
1
  # Changelog
2
2
 
3
- ## [Unreleased]
3
+ ## [2.2.0] - 2019-09-10
4
+
5
+ ### Added
6
+
7
+ - Add support for Rails 6
8
+
9
+ ### Removed
10
+
11
+ - Dropped support for Ruby prior to 2.4.0
12
+ - Dropped support for Rails prior to 5.0.0
4
13
 
5
14
  ## [2.1.0] - 2018-09-27
6
15
 
@@ -29,6 +38,6 @@
29
38
 
30
39
  - Convert from Rails Engine to Railtie
31
40
 
32
- [Unreleased]: https://github.com/thoughtbot/flutie/compare/v2.1.0...HEAD
41
+ [2.2.0]: https://github.com/thoughtbot/flutie/compare/v2.1.0...v2.2.0
33
42
  [2.1.0]: https://github.com/thoughtbot/flutie/compare/v2.0.0...v2.1.0
34
43
  [2.0.0]: https://github.com/thoughtbot/flutie/compare/v1.3.4...v2.0.0
@@ -1,25 +1,25 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- flutie (2.1.0)
4
+ flutie (2.2.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
- actionpack (5.2.1)
10
- actionview (= 5.2.1)
11
- activesupport (= 5.2.1)
9
+ actionpack (5.2.3)
10
+ actionview (= 5.2.3)
11
+ activesupport (= 5.2.3)
12
12
  rack (~> 2.0)
13
13
  rack-test (>= 0.6.3)
14
14
  rails-dom-testing (~> 2.0)
15
15
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
16
- actionview (5.2.1)
17
- activesupport (= 5.2.1)
16
+ actionview (5.2.3)
17
+ activesupport (= 5.2.3)
18
18
  builder (~> 3.1)
19
19
  erubi (~> 1.4)
20
20
  rails-dom-testing (~> 2.0)
21
21
  rails-html-sanitizer (~> 1.0, >= 1.0.3)
22
- activesupport (5.2.1)
22
+ activesupport (5.2.3)
23
23
  concurrent-ruby (~> 1.0, >= 1.0.2)
24
24
  i18n (>= 0.7, < 2)
25
25
  minitest (~> 5.1)
@@ -29,44 +29,44 @@ GEM
29
29
  rake
30
30
  thor (>= 0.14.0)
31
31
  builder (3.2.3)
32
- concurrent-ruby (1.0.5)
32
+ concurrent-ruby (1.1.5)
33
33
  crass (1.0.4)
34
34
  diff-lcs (1.3)
35
- erubi (1.7.1)
36
- i18n (1.1.0)
35
+ erubi (1.8.0)
36
+ i18n (1.6.0)
37
37
  concurrent-ruby (~> 1.0)
38
- loofah (2.2.2)
38
+ loofah (2.2.3)
39
39
  crass (~> 1.0.2)
40
40
  nokogiri (>= 1.5.9)
41
- method_source (0.9.0)
42
- mini_portile2 (2.3.0)
41
+ method_source (0.9.2)
42
+ mini_portile2 (2.4.0)
43
43
  minitest (5.11.3)
44
- nokogiri (1.8.4)
45
- mini_portile2 (~> 2.3.0)
46
- rack (2.0.5)
44
+ nokogiri (1.10.4)
45
+ mini_portile2 (~> 2.4.0)
46
+ rack (2.0.7)
47
47
  rack-test (1.1.0)
48
48
  rack (>= 1.0, < 3)
49
49
  rails-dom-testing (2.0.3)
50
50
  activesupport (>= 4.2.0)
51
51
  nokogiri (>= 1.6)
52
- rails-html-sanitizer (1.0.4)
52
+ rails-html-sanitizer (1.2.0)
53
53
  loofah (~> 2.2, >= 2.2.2)
54
- railties (5.2.1)
55
- actionpack (= 5.2.1)
56
- activesupport (= 5.2.1)
54
+ railties (5.2.3)
55
+ actionpack (= 5.2.3)
56
+ activesupport (= 5.2.3)
57
57
  method_source
58
58
  rake (>= 0.8.7)
59
59
  thor (>= 0.19.0, < 2.0)
60
- rake (12.3.1)
61
- rspec-core (3.8.0)
60
+ rake (12.3.3)
61
+ rspec-core (3.8.2)
62
62
  rspec-support (~> 3.8.0)
63
- rspec-expectations (3.8.1)
63
+ rspec-expectations (3.8.4)
64
64
  diff-lcs (>= 1.2.0, < 2.0)
65
65
  rspec-support (~> 3.8.0)
66
- rspec-mocks (3.8.0)
66
+ rspec-mocks (3.8.1)
67
67
  diff-lcs (>= 1.2.0, < 2.0)
68
68
  rspec-support (~> 3.8.0)
69
- rspec-rails (3.8.0)
69
+ rspec-rails (3.8.2)
70
70
  actionpack (>= 3.0)
71
71
  activesupport (>= 3.0)
72
72
  railties (>= 3.0)
@@ -74,9 +74,9 @@ GEM
74
74
  rspec-expectations (~> 3.8.0)
75
75
  rspec-mocks (~> 3.8.0)
76
76
  rspec-support (~> 3.8.0)
77
- rspec-support (3.8.0)
77
+ rspec-support (3.8.2)
78
78
  sqlite3 (1.3.13)
79
- thor (0.20.0)
79
+ thor (0.20.3)
80
80
  thread_safe (0.3.6)
81
81
  tzinfo (1.2.5)
82
82
  thread_safe (~> 0.1)
@@ -91,4 +91,4 @@ DEPENDENCIES
91
91
  sqlite3 (~> 1.3)
92
92
 
93
93
  BUNDLED WITH
94
- 1.16.5
94
+ 1.17.3
data/README.md CHANGED
@@ -104,18 +104,20 @@ Please see the [CONTRIBUTING](CONTRIBUTING.md) file for details.
104
104
 
105
105
  ## Credits
106
106
 
107
- ![thoughtbot](http://thoughtbot.com/images/tm/logo.png)
107
+ [![thoughtbot][thoughtbot-logo]][thoughtbot]
108
108
 
109
- Flutie is maintained and funded by [thoughtbot, inc].
109
+ Flutie is maintained and funded by [thoughtbot, inc][thoughtbot].
110
110
 
111
111
  Thank you to all [the contributors]!
112
112
 
113
113
  The names and logos for thoughtbot are trademarks of thoughtbot, inc.
114
114
 
115
+ [thoughtbot]: https://thoughtbot.com?utm_source=github
116
+ [thoughtbot-logo]: http://presskit.thoughtbot.com/images/thoughtbot-logo-for-readmes.svg
117
+
115
118
  ## License
116
119
 
117
120
  Flutie is Copyright © 2010 thoughtbot, inc. It is free software, and may be
118
121
  redistributed under the terms specified in the [LICENSE](LICENSE) file.
119
122
 
120
- [thoughtbot, inc]: http://thoughtbot.com/community
121
123
  [the contributors]: https://github.com/thoughtbot/flutie/contributors
@@ -1,3 +1,3 @@
1
1
  module Flutie
2
- VERSION = '2.1.0'.freeze
2
+ VERSION = '2.2.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flutie
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0
4
+ version: 2.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - " Aaron Suggs"
@@ -28,7 +28,7 @@ authors:
28
28
  autorequire:
29
29
  bindir: bin
30
30
  cert_chain: []
31
- date: 2018-09-27 00:00:00.000000000 Z
31
+ date: 2019-09-10 00:00:00.000000000 Z
32
32
  dependencies:
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: appraisal
@@ -119,8 +119,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
119
119
  - !ruby/object:Gem::Version
120
120
  version: '0'
121
121
  requirements: []
122
- rubyforge_project:
123
- rubygems_version: 2.7.7
122
+ rubygems_version: 3.0.3
124
123
  signing_key:
125
124
  specification_version: 4
126
125
  summary: Flutie provides extra Rails view helpers