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 +4 -4
- data/.travis.yml +15 -8
- data/Appraisals +10 -3
- data/CHANGELOG.md +11 -2
- data/Gemfile.lock +28 -28
- data/README.md +5 -3
- data/lib/flutie/version.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 827bb367a00d0cc4813295e6f6d9fe1783dc33bd2ce7850e1899274564eb8ce8
|
4
|
+
data.tar.gz: 3813b5ae6fe02f3e6c7e983e9ba258bb9fc01c90f4363823d238bb8dd07ec98f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9de27be52275a4f84f5210bb300a3db04b49011f3cf7641b8b60a0b1362ce00ffaf563f633665add4eebe0c14463a47f03dab1b5eb03a3dd24d7580c2c6e9104
|
7
|
+
data.tar.gz: 8a56833e5ebf7e8094b226ab347f99fa6f6c2df7f628c6da333f441cf6fc071d23ce2e600c81fcfade824d87abeb6ee9954c485f05d5fd33f60659d5b9b0cf17
|
data/.travis.yml
CHANGED
@@ -1,13 +1,20 @@
|
|
1
1
|
language: ruby
|
2
|
+
|
2
3
|
rvm:
|
3
|
-
- 2.
|
4
|
-
- 2.
|
5
|
-
- 2.
|
4
|
+
- 2.4.7
|
5
|
+
- 2.5.6
|
6
|
+
- 2.6.4
|
7
|
+
|
6
8
|
gemfile:
|
7
|
-
- gemfiles/rails_5.
|
8
|
-
- gemfiles/rails_5.1.
|
9
|
-
- gemfiles/rails_5.
|
10
|
-
- gemfiles/
|
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
|
-
|
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
|
-
|
2
|
-
|
3
|
-
|
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
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,15 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
-
## [
|
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
|
-
[
|
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
|
data/Gemfile.lock
CHANGED
@@ -1,25 +1,25 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
flutie (2.
|
4
|
+
flutie (2.2.0)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
8
8
|
specs:
|
9
|
-
actionpack (5.2.
|
10
|
-
actionview (= 5.2.
|
11
|
-
activesupport (= 5.2.
|
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.
|
17
|
-
activesupport (= 5.2.
|
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.
|
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.
|
32
|
+
concurrent-ruby (1.1.5)
|
33
33
|
crass (1.0.4)
|
34
34
|
diff-lcs (1.3)
|
35
|
-
erubi (1.
|
36
|
-
i18n (1.
|
35
|
+
erubi (1.8.0)
|
36
|
+
i18n (1.6.0)
|
37
37
|
concurrent-ruby (~> 1.0)
|
38
|
-
loofah (2.2.
|
38
|
+
loofah (2.2.3)
|
39
39
|
crass (~> 1.0.2)
|
40
40
|
nokogiri (>= 1.5.9)
|
41
|
-
method_source (0.9.
|
42
|
-
mini_portile2 (2.
|
41
|
+
method_source (0.9.2)
|
42
|
+
mini_portile2 (2.4.0)
|
43
43
|
minitest (5.11.3)
|
44
|
-
nokogiri (1.
|
45
|
-
mini_portile2 (~> 2.
|
46
|
-
rack (2.0.
|
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
|
52
|
+
rails-html-sanitizer (1.2.0)
|
53
53
|
loofah (~> 2.2, >= 2.2.2)
|
54
|
-
railties (5.2.
|
55
|
-
actionpack (= 5.2.
|
56
|
-
activesupport (= 5.2.
|
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.
|
61
|
-
rspec-core (3.8.
|
60
|
+
rake (12.3.3)
|
61
|
+
rspec-core (3.8.2)
|
62
62
|
rspec-support (~> 3.8.0)
|
63
|
-
rspec-expectations (3.8.
|
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.
|
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.
|
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.
|
77
|
+
rspec-support (3.8.2)
|
78
78
|
sqlite3 (1.3.13)
|
79
|
-
thor (0.20.
|
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.
|
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]
|
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
|
data/lib/flutie/version.rb
CHANGED
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.
|
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:
|
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
|
-
|
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
|