dekorator 1.0.0.pre.1 → 1.2.1

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.
Files changed (46) hide show
  1. checksums.yaml +4 -4
  2. data/.codeclimate.yml +4 -0
  3. data/.github/workflows/test.yml +40 -0
  4. data/CHANGELOG.md +44 -4
  5. data/CODE_OF_CONDUCT.md +1 -1
  6. data/README.md +107 -40
  7. data/benchmarks/README.md +7 -0
  8. data/benchmarks/benchmark.rb +135 -0
  9. data/dekorator.gemspec +29 -15
  10. data/lib/dekorator/rails/controller.rb +17 -0
  11. data/lib/dekorator/rails/tasks/dekorator.rake +11 -0
  12. data/lib/dekorator/railtie.rb +9 -5
  13. data/lib/dekorator/version.rb +1 -1
  14. data/lib/dekorator.rb +79 -53
  15. data/lib/generators/decorator_generator.rb +7 -0
  16. data/lib/generators/{decorator → dekorator/decorator}/USAGE +1 -1
  17. data/lib/generators/dekorator/decorator/decorator_generator.rb +17 -0
  18. data/lib/generators/{decorator → dekorator/decorator}/templates/decorator.rb +0 -0
  19. data/lib/generators/dekorator/{install_generator.rb → install/install_generator.rb} +8 -6
  20. data/lib/generators/rspec/decorator_generator.rb +2 -0
  21. data/lib/generators/test_unit/decorator_generator.rb +2 -0
  22. metadata +60 -52
  23. data/.editorconfig +0 -14
  24. data/.gitignore +0 -11
  25. data/.rspec +0 -3
  26. data/.rubocop.yml +0 -114
  27. data/.simplecov +0 -5
  28. data/.travis.yml +0 -37
  29. data/Appraisals +0 -17
  30. data/Gemfile +0 -22
  31. data/Gemfile.lock +0 -157
  32. data/bin/console +0 -16
  33. data/bin/setup +0 -8
  34. data/gemfiles/.bundle/config +0 -2
  35. data/gemfiles/rails_5.0.x.gemfile +0 -21
  36. data/gemfiles/rails_5.0.x.gemfile.lock +0 -207
  37. data/gemfiles/rails_5.1.x.gemfile +0 -21
  38. data/gemfiles/rails_5.1.x.gemfile.lock +0 -207
  39. data/gemfiles/rails_5.2.x.gemfile +0 -21
  40. data/gemfiles/rails_5.2.x.gemfile.lock +0 -207
  41. data/gemfiles/rails_6.0.x.gemfile +0 -21
  42. data/gemfiles/rails_6.0.x.gemfile.lock +0 -220
  43. data/lib/dekorator/decorators_helper.rb +0 -5
  44. data/lib/dekorator/rspec.rb +0 -0
  45. data/lib/generators/decorator/decorator_generator.rb +0 -11
  46. data/lib/generators/decorator/templates/decorator_test.rb +0 -1
data/.travis.yml DELETED
@@ -1,37 +0,0 @@
1
- language: ruby
2
- sudo: false
3
-
4
- before_install:
5
- - gem update --system
6
- - gem install bundler
7
-
8
- rvm:
9
- - 2.3
10
- - 2.4
11
- - 2.5
12
- - 2.6
13
- - ruby-head
14
-
15
- cache:
16
- bundler: true
17
-
18
- gemfile:
19
- - gemfiles/rails_5.0.x.gemfile
20
- - gemfiles/rails_5.1.x.gemfile
21
- - gemfiles/rails_5.2.x.gemfile
22
- - gemfiles/rails_6.0.x.gemfile
23
-
24
- matrix:
25
- exclude:
26
- - rvm: 2.2
27
- gemfile: gemfiles/rails_6.0.x.gemfile
28
- - rvm: 2.3
29
- gemfile: gemfiles/rails_6.0.x.gemfile
30
- - rvm: 2.4
31
- gemfile: gemfiles/rails_6.0.x.gemfile
32
-
33
- install:
34
- - bundle install
35
-
36
- script:
37
- - bundle exec rake test:all_with_coverage
data/Appraisals DELETED
@@ -1,17 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- appraise "rails-5.0.x" do
4
- gem "rails", "~> 5.0"
5
- end
6
-
7
- appraise "rails-5.1.x" do
8
- gem "rails", "~> 5.1"
9
- end
10
-
11
- appraise "rails-5.2.x" do
12
- gem "rails", "~> 5.2"
13
- end
14
-
15
- appraise "rails-6.0.x" do
16
- gem "rails", "~> 6.0.0.beta1"
17
- end
data/Gemfile DELETED
@@ -1,22 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- source "https://rubygems.org"
4
-
5
- git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
6
-
7
- # Specify your gem's dependencies in dekorator.gemspec
8
- gemspec
9
-
10
- gem "activerecord"
11
- gem "activemodel"
12
- gem "activesupport"
13
- gem "actionview"
14
- gem "railties"
15
-
16
- gem "appraisal", require: false
17
- gem "rubocop", require: false
18
-
19
- group :test do
20
- gem "simplecov", require: false
21
- gem 'coveralls', require: false
22
- end
data/Gemfile.lock DELETED
@@ -1,157 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- dekorator (1.0.0.pre.1)
5
- actionview (>= 5.0, < 6.1)
6
- activesupport (>= 5.0, < 6.1)
7
- railties (>= 5.0, < 6.1)
8
-
9
- GEM
10
- remote: https://rubygems.org/
11
- specs:
12
- actionpack (5.2.2)
13
- actionview (= 5.2.2)
14
- activesupport (= 5.2.2)
15
- rack (~> 2.0)
16
- rack-test (>= 0.6.3)
17
- rails-dom-testing (~> 2.0)
18
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
19
- actionview (5.2.2)
20
- activesupport (= 5.2.2)
21
- builder (~> 3.1)
22
- erubi (~> 1.4)
23
- rails-dom-testing (~> 2.0)
24
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
25
- activemodel (5.2.2)
26
- activesupport (= 5.2.2)
27
- activerecord (5.2.2)
28
- activemodel (= 5.2.2)
29
- activesupport (= 5.2.2)
30
- arel (>= 9.0)
31
- activesupport (5.2.2)
32
- concurrent-ruby (~> 1.0, >= 1.0.2)
33
- i18n (>= 0.7, < 2)
34
- minitest (~> 5.1)
35
- tzinfo (~> 1.1)
36
- appraisal (2.2.0)
37
- bundler
38
- rake
39
- thor (>= 0.14.0)
40
- arel (9.0.0)
41
- ast (2.4.0)
42
- builder (3.2.3)
43
- concurrent-ruby (1.1.4)
44
- coveralls (0.7.1)
45
- multi_json (~> 1.3)
46
- rest-client
47
- simplecov (>= 0.7)
48
- term-ansicolor
49
- thor
50
- crass (1.0.4)
51
- diff-lcs (1.3)
52
- docile (1.3.1)
53
- domain_name (0.5.20180417)
54
- unf (>= 0.0.5, < 1.0.0)
55
- erubi (1.8.0)
56
- http-cookie (1.0.3)
57
- domain_name (~> 0.5)
58
- i18n (1.5.3)
59
- concurrent-ruby (~> 1.0)
60
- jaro_winkler (1.5.2)
61
- json (2.1.0)
62
- loofah (2.2.3)
63
- crass (~> 1.0.2)
64
- nokogiri (>= 1.5.9)
65
- method_source (0.9.2)
66
- mime-types (3.2.2)
67
- mime-types-data (~> 3.2015)
68
- mime-types-data (3.2018.0812)
69
- mini_portile2 (2.4.0)
70
- minitest (5.11.3)
71
- multi_json (1.13.1)
72
- netrc (0.11.0)
73
- nokogiri (1.10.1)
74
- mini_portile2 (~> 2.4.0)
75
- parallel (1.13.0)
76
- parser (2.6.0.0)
77
- ast (~> 2.4.0)
78
- powerpack (0.1.2)
79
- rack (2.0.6)
80
- rack-test (1.1.0)
81
- rack (>= 1.0, < 3)
82
- rails-dom-testing (2.0.3)
83
- activesupport (>= 4.2.0)
84
- nokogiri (>= 1.6)
85
- rails-html-sanitizer (1.0.4)
86
- loofah (~> 2.2, >= 2.2.2)
87
- railties (5.2.2)
88
- actionpack (= 5.2.2)
89
- activesupport (= 5.2.2)
90
- method_source
91
- rake (>= 0.8.7)
92
- thor (>= 0.19.0, < 2.0)
93
- rainbow (3.0.0)
94
- rake (10.5.0)
95
- rest-client (2.0.2)
96
- http-cookie (>= 1.0.2, < 2.0)
97
- mime-types (>= 1.16, < 4.0)
98
- netrc (~> 0.8)
99
- rspec (3.8.0)
100
- rspec-core (~> 3.8.0)
101
- rspec-expectations (~> 3.8.0)
102
- rspec-mocks (~> 3.8.0)
103
- rspec-core (3.8.0)
104
- rspec-support (~> 3.8.0)
105
- rspec-expectations (3.8.2)
106
- diff-lcs (>= 1.2.0, < 2.0)
107
- rspec-support (~> 3.8.0)
108
- rspec-mocks (3.8.0)
109
- diff-lcs (>= 1.2.0, < 2.0)
110
- rspec-support (~> 3.8.0)
111
- rspec-support (3.8.0)
112
- rubocop (0.63.1)
113
- jaro_winkler (~> 1.5.1)
114
- parallel (~> 1.10)
115
- parser (>= 2.5, != 2.5.1.1)
116
- powerpack (~> 0.1)
117
- rainbow (>= 2.2.2, < 4.0)
118
- ruby-progressbar (~> 1.7)
119
- unicode-display_width (~> 1.4.0)
120
- ruby-progressbar (1.10.0)
121
- simplecov (0.16.1)
122
- docile (~> 1.1)
123
- json (>= 1.8, < 3)
124
- simplecov-html (~> 0.10.0)
125
- simplecov-html (0.10.2)
126
- term-ansicolor (1.7.1)
127
- tins (~> 1.0)
128
- thor (0.20.3)
129
- thread_safe (0.3.6)
130
- tins (1.20.2)
131
- tzinfo (1.2.5)
132
- thread_safe (~> 0.1)
133
- unf (0.1.4)
134
- unf_ext
135
- unf_ext (0.0.7.5)
136
- unicode-display_width (1.4.1)
137
-
138
- PLATFORMS
139
- ruby
140
-
141
- DEPENDENCIES
142
- actionview
143
- activemodel
144
- activerecord
145
- activesupport
146
- appraisal
147
- bundler (~> 2.0)
148
- coveralls
149
- dekorator!
150
- railties
151
- rake (~> 10.0)
152
- rspec (~> 3.0)
153
- rubocop
154
- simplecov
155
-
156
- BUNDLED WITH
157
- 2.0.1
data/bin/console DELETED
@@ -1,16 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- # frozen_string_literal: true
4
-
5
- require "bundler/setup"
6
- require "dekorator"
7
-
8
- # You can add fixtures and/or initialization code here to make experimenting
9
- # with your gem easier. You can also use a different console, if you like.
10
-
11
- # (If you use this, don't forget to add pry to your Gemfile!)
12
- # require "pry"
13
- # Pry.start
14
-
15
- require "irb"
16
- IRB.start(__FILE__)
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here
@@ -1,2 +0,0 @@
1
- ---
2
- BUNDLE_RETRY: "1"
@@ -1,21 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- # This file was generated by Appraisal
4
-
5
- source "https://rubygems.org"
6
-
7
- gem "activerecord"
8
- gem "activemodel"
9
- gem "activesupport"
10
- gem "actionview"
11
- gem "railties"
12
- gem "appraisal", require: false
13
- gem "rubocop", require: false
14
- gem "rails", "~> 5.0"
15
-
16
- group :test do
17
- gem "simplecov", require: false
18
- gem "coveralls", require: false
19
- end
20
-
21
- gemspec path: "../"
@@ -1,207 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- dekorator (1.0.0.pre.1)
5
- actionview (>= 5.0, < 6.1)
6
- activesupport (>= 5.0, < 6.1)
7
- railties (>= 5.0, < 6.1)
8
-
9
- GEM
10
- remote: https://rubygems.org/
11
- specs:
12
- actioncable (5.2.2)
13
- actionpack (= 5.2.2)
14
- nio4r (~> 2.0)
15
- websocket-driver (>= 0.6.1)
16
- actionmailer (5.2.2)
17
- actionpack (= 5.2.2)
18
- actionview (= 5.2.2)
19
- activejob (= 5.2.2)
20
- mail (~> 2.5, >= 2.5.4)
21
- rails-dom-testing (~> 2.0)
22
- actionpack (5.2.2)
23
- actionview (= 5.2.2)
24
- activesupport (= 5.2.2)
25
- rack (~> 2.0)
26
- rack-test (>= 0.6.3)
27
- rails-dom-testing (~> 2.0)
28
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
29
- actionview (5.2.2)
30
- activesupport (= 5.2.2)
31
- builder (~> 3.1)
32
- erubi (~> 1.4)
33
- rails-dom-testing (~> 2.0)
34
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
35
- activejob (5.2.2)
36
- activesupport (= 5.2.2)
37
- globalid (>= 0.3.6)
38
- activemodel (5.2.2)
39
- activesupport (= 5.2.2)
40
- activerecord (5.2.2)
41
- activemodel (= 5.2.2)
42
- activesupport (= 5.2.2)
43
- arel (>= 9.0)
44
- activestorage (5.2.2)
45
- actionpack (= 5.2.2)
46
- activerecord (= 5.2.2)
47
- marcel (~> 0.3.1)
48
- activesupport (5.2.2)
49
- concurrent-ruby (~> 1.0, >= 1.0.2)
50
- i18n (>= 0.7, < 2)
51
- minitest (~> 5.1)
52
- tzinfo (~> 1.1)
53
- appraisal (2.2.0)
54
- bundler
55
- rake
56
- thor (>= 0.14.0)
57
- arel (9.0.0)
58
- ast (2.4.0)
59
- builder (3.2.3)
60
- concurrent-ruby (1.1.4)
61
- coveralls (0.7.1)
62
- multi_json (~> 1.3)
63
- rest-client
64
- simplecov (>= 0.7)
65
- term-ansicolor
66
- thor
67
- crass (1.0.4)
68
- diff-lcs (1.3)
69
- docile (1.3.1)
70
- domain_name (0.5.20180417)
71
- unf (>= 0.0.5, < 1.0.0)
72
- erubi (1.8.0)
73
- globalid (0.4.2)
74
- activesupport (>= 4.2.0)
75
- http-cookie (1.0.3)
76
- domain_name (~> 0.5)
77
- i18n (1.5.3)
78
- concurrent-ruby (~> 1.0)
79
- jaro_winkler (1.5.2)
80
- json (2.1.0)
81
- loofah (2.2.3)
82
- crass (~> 1.0.2)
83
- nokogiri (>= 1.5.9)
84
- mail (2.7.1)
85
- mini_mime (>= 0.1.1)
86
- marcel (0.3.3)
87
- mimemagic (~> 0.3.2)
88
- method_source (0.9.2)
89
- mime-types (3.2.2)
90
- mime-types-data (~> 3.2015)
91
- mime-types-data (3.2018.0812)
92
- mimemagic (0.3.3)
93
- mini_mime (1.0.1)
94
- mini_portile2 (2.4.0)
95
- minitest (5.11.3)
96
- multi_json (1.13.1)
97
- netrc (0.11.0)
98
- nio4r (2.3.1)
99
- nokogiri (1.10.1)
100
- mini_portile2 (~> 2.4.0)
101
- parallel (1.13.0)
102
- parser (2.6.0.0)
103
- ast (~> 2.4.0)
104
- powerpack (0.1.2)
105
- rack (2.0.6)
106
- rack-test (1.1.0)
107
- rack (>= 1.0, < 3)
108
- rails (5.2.2)
109
- actioncable (= 5.2.2)
110
- actionmailer (= 5.2.2)
111
- actionpack (= 5.2.2)
112
- actionview (= 5.2.2)
113
- activejob (= 5.2.2)
114
- activemodel (= 5.2.2)
115
- activerecord (= 5.2.2)
116
- activestorage (= 5.2.2)
117
- activesupport (= 5.2.2)
118
- bundler (>= 1.3.0)
119
- railties (= 5.2.2)
120
- sprockets-rails (>= 2.0.0)
121
- rails-dom-testing (2.0.3)
122
- activesupport (>= 4.2.0)
123
- nokogiri (>= 1.6)
124
- rails-html-sanitizer (1.0.4)
125
- loofah (~> 2.2, >= 2.2.2)
126
- railties (5.2.2)
127
- actionpack (= 5.2.2)
128
- activesupport (= 5.2.2)
129
- method_source
130
- rake (>= 0.8.7)
131
- thor (>= 0.19.0, < 2.0)
132
- rainbow (3.0.0)
133
- rake (10.5.0)
134
- rest-client (2.0.2)
135
- http-cookie (>= 1.0.2, < 2.0)
136
- mime-types (>= 1.16, < 4.0)
137
- netrc (~> 0.8)
138
- rspec (3.8.0)
139
- rspec-core (~> 3.8.0)
140
- rspec-expectations (~> 3.8.0)
141
- rspec-mocks (~> 3.8.0)
142
- rspec-core (3.8.0)
143
- rspec-support (~> 3.8.0)
144
- rspec-expectations (3.8.2)
145
- diff-lcs (>= 1.2.0, < 2.0)
146
- rspec-support (~> 3.8.0)
147
- rspec-mocks (3.8.0)
148
- diff-lcs (>= 1.2.0, < 2.0)
149
- rspec-support (~> 3.8.0)
150
- rspec-support (3.8.0)
151
- rubocop (0.63.1)
152
- jaro_winkler (~> 1.5.1)
153
- parallel (~> 1.10)
154
- parser (>= 2.5, != 2.5.1.1)
155
- powerpack (~> 0.1)
156
- rainbow (>= 2.2.2, < 4.0)
157
- ruby-progressbar (~> 1.7)
158
- unicode-display_width (~> 1.4.0)
159
- ruby-progressbar (1.10.0)
160
- simplecov (0.16.1)
161
- docile (~> 1.1)
162
- json (>= 1.8, < 3)
163
- simplecov-html (~> 0.10.0)
164
- simplecov-html (0.10.2)
165
- sprockets (3.7.2)
166
- concurrent-ruby (~> 1.0)
167
- rack (> 1, < 3)
168
- sprockets-rails (3.2.1)
169
- actionpack (>= 4.0)
170
- activesupport (>= 4.0)
171
- sprockets (>= 3.0.0)
172
- term-ansicolor (1.7.1)
173
- tins (~> 1.0)
174
- thor (0.20.3)
175
- thread_safe (0.3.6)
176
- tins (1.20.2)
177
- tzinfo (1.2.5)
178
- thread_safe (~> 0.1)
179
- unf (0.1.4)
180
- unf_ext
181
- unf_ext (0.0.7.5)
182
- unicode-display_width (1.4.1)
183
- websocket-driver (0.7.0)
184
- websocket-extensions (>= 0.1.0)
185
- websocket-extensions (0.1.3)
186
-
187
- PLATFORMS
188
- ruby
189
-
190
- DEPENDENCIES
191
- actionview
192
- activemodel
193
- activerecord
194
- activesupport
195
- appraisal
196
- bundler (~> 2.0)
197
- coveralls
198
- dekorator!
199
- rails (~> 5.0)
200
- railties
201
- rake (~> 10.0)
202
- rspec (~> 3.0)
203
- rubocop
204
- simplecov
205
-
206
- BUNDLED WITH
207
- 2.0.1
@@ -1,21 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- # This file was generated by Appraisal
4
-
5
- source "https://rubygems.org"
6
-
7
- gem "activerecord"
8
- gem "activemodel"
9
- gem "activesupport"
10
- gem "actionview"
11
- gem "railties"
12
- gem "appraisal", require: false
13
- gem "rubocop", require: false
14
- gem "rails", "~> 5.1"
15
-
16
- group :test do
17
- gem "simplecov", require: false
18
- gem "coveralls", require: false
19
- end
20
-
21
- gemspec path: "../"