esse-rails 0.0.1 → 0.0.2

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: f617e7597afa910dbfde6b428b6c3cab87bb03c75a192718dad856d692163fe2
4
- data.tar.gz: 7f161a6e35bf664bfd20ec28cd681c066675f23b179d82463fac83177d28a7e1
3
+ metadata.gz: 99954456a98fabb1f93e3b1bf49f35304223e195da31c3747faf41b2b27fd917
4
+ data.tar.gz: e030db114c19d4d3d9586fdfb7394bf9c26b9be29e399ebb2a8b7cbd15c5e52e
5
5
  SHA512:
6
- metadata.gz: 9bb4b60191ad204c857279422077d8f74b642891f8d54de5c83d64732320362e16c8b0c22e700ad422af125ca7bee34a8c97bce9dfa0c85a9f36140361af1228
7
- data.tar.gz: 3fbb84943825c3a87263b11edd4132f3e528b466062c2bcceb63644eef1badeeaf0b583bc7f4e63378cb154b91d559cdaff1641b884f19e6bfb3c3d81ace6e71
6
+ metadata.gz: e747467f1a1cabe4da5f1099a4e5835e144adea24f5e6022c465a0aafc21f4a630fff49fc9e096bdc5bb7bbc340e79ee7572bc79290ca723804eb252eb9edfce
7
+ data.tar.gz: 70f326b3f5013a3a197d17104f8ed7b7aed720a9ba1556b621488a4566d9095cde125e64787392cdbbc74a53e96c125030e4b8fda1776768dc7ac97e6e4c68a9
data/Gemfile CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "esse", github: "marcosgz/esse", branch: "master"
5
+ gem "esse", "~> 0.2.2"
6
6
  gem "activesupport", "~> 5.2"
7
7
 
8
8
  # Specify your gem's dependencies in esse-rails.gemspec
data/Gemfile.lock CHANGED
@@ -1,18 +1,9 @@
1
- GIT
2
- remote: https://github.com/marcosgz/esse.git
3
- revision: 7b9bf919265464e20dd42fc58d7908a1b90d73fa
4
- branch: master
5
- specs:
6
- esse (0.2.2)
7
- multi_json
8
- thor (>= 0.19)
9
-
10
1
  PATH
11
2
  remote: .
12
3
  specs:
13
- esse-rails (0.0.1)
4
+ esse-rails (0.0.2)
14
5
  activesupport (>= 4.2, < 8)
15
- esse
6
+ esse (>= 0.2.2)
16
7
 
17
8
  GEM
18
9
  remote: https://rubygems.org/
@@ -38,7 +29,6 @@ GEM
38
29
  addressable (2.8.5)
39
30
  public_suffix (>= 2.0.2, < 6.0)
40
31
  ast (2.4.2)
41
- awesome_print (1.9.2)
42
32
  builder (3.2.4)
43
33
  coderay (1.1.3)
44
34
  concurrent-ruby (1.2.2)
@@ -46,8 +36,10 @@ GEM
46
36
  rexml
47
37
  crass (1.0.6)
48
38
  diff-lcs (1.5.0)
49
- dotenv (2.8.1)
50
39
  erubi (1.12.0)
40
+ esse (0.2.4)
41
+ multi_json
42
+ thor (>= 0.19)
51
43
  hashdiff (1.0.1)
52
44
  i18n (1.14.1)
53
45
  concurrent-ruby (~> 1.0)
@@ -164,9 +156,7 @@ PLATFORMS
164
156
 
165
157
  DEPENDENCIES
166
158
  activesupport (~> 5.2)
167
- awesome_print
168
- dotenv
169
- esse!
159
+ esse (~> 0.2.2)
170
160
  esse-rails!
171
161
  lograge
172
162
  pry
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "railties", "~> 5.2.0"
6
+
7
+ gemspec path: ".."
@@ -0,0 +1,172 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ esse-rails (0.0.2)
5
+ activesupport (>= 4.2, < 8)
6
+ esse (>= 0.2.2)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actionpack (5.2.8.1)
12
+ actionview (= 5.2.8.1)
13
+ activesupport (= 5.2.8.1)
14
+ rack (~> 2.0, >= 2.0.8)
15
+ rack-test (>= 0.6.3)
16
+ rails-dom-testing (~> 2.0)
17
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
18
+ actionview (5.2.8.1)
19
+ activesupport (= 5.2.8.1)
20
+ builder (~> 3.1)
21
+ erubi (~> 1.4)
22
+ rails-dom-testing (~> 2.0)
23
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
24
+ activesupport (5.2.8.1)
25
+ concurrent-ruby (~> 1.0, >= 1.0.2)
26
+ i18n (>= 0.7, < 2)
27
+ minitest (~> 5.1)
28
+ tzinfo (~> 1.1)
29
+ addressable (2.8.5)
30
+ public_suffix (>= 2.0.2, < 6.0)
31
+ ast (2.4.2)
32
+ builder (3.2.4)
33
+ coderay (1.1.3)
34
+ concurrent-ruby (1.2.2)
35
+ crack (0.4.5)
36
+ rexml
37
+ crass (1.0.6)
38
+ diff-lcs (1.5.0)
39
+ erubi (1.12.0)
40
+ esse (0.2.3)
41
+ multi_json
42
+ thor (>= 0.19)
43
+ hashdiff (1.0.1)
44
+ i18n (1.14.1)
45
+ concurrent-ruby (~> 1.0)
46
+ json (2.6.3)
47
+ language_server-protocol (3.17.0.3)
48
+ lint_roller (1.1.0)
49
+ lograge (0.14.0)
50
+ actionpack (>= 4)
51
+ activesupport (>= 4)
52
+ railties (>= 4)
53
+ request_store (~> 1.0)
54
+ loofah (2.22.0)
55
+ crass (~> 1.0.2)
56
+ nokogiri (>= 1.12.0)
57
+ method_source (1.0.0)
58
+ minitest (5.20.0)
59
+ multi_json (1.15.0)
60
+ nokogiri (1.15.4-x86_64-linux)
61
+ racc (~> 1.4)
62
+ parallel (1.23.0)
63
+ parser (3.2.2.4)
64
+ ast (~> 2.4.1)
65
+ racc
66
+ pry (0.14.2)
67
+ coderay (~> 1.1)
68
+ method_source (~> 1.0)
69
+ public_suffix (5.0.3)
70
+ racc (1.7.3)
71
+ rack (2.2.8)
72
+ rack-test (2.1.0)
73
+ rack (>= 1.3)
74
+ rails-dom-testing (2.2.0)
75
+ activesupport (>= 5.0.0)
76
+ minitest
77
+ nokogiri (>= 1.6)
78
+ rails-html-sanitizer (1.6.0)
79
+ loofah (~> 2.21)
80
+ nokogiri (~> 1.14)
81
+ railties (5.2.8.1)
82
+ actionpack (= 5.2.8.1)
83
+ activesupport (= 5.2.8.1)
84
+ method_source
85
+ rake (>= 0.8.7)
86
+ thor (>= 0.19.0, < 2.0)
87
+ rainbow (3.1.1)
88
+ rake (12.3.3)
89
+ regexp_parser (2.8.2)
90
+ request_store (1.5.1)
91
+ rack (>= 1.4)
92
+ rexml (3.2.6)
93
+ rspec (3.12.0)
94
+ rspec-core (~> 3.12.0)
95
+ rspec-expectations (~> 3.12.0)
96
+ rspec-mocks (~> 3.12.0)
97
+ rspec-core (3.12.2)
98
+ rspec-support (~> 3.12.0)
99
+ rspec-expectations (3.12.3)
100
+ diff-lcs (>= 1.2.0, < 2.0)
101
+ rspec-support (~> 3.12.0)
102
+ rspec-mocks (3.12.6)
103
+ diff-lcs (>= 1.2.0, < 2.0)
104
+ rspec-support (~> 3.12.0)
105
+ rspec-support (3.12.1)
106
+ rubocop (1.57.2)
107
+ json (~> 2.3)
108
+ language_server-protocol (>= 3.17.0)
109
+ parallel (~> 1.10)
110
+ parser (>= 3.2.2.4)
111
+ rainbow (>= 2.2.2, < 4.0)
112
+ regexp_parser (>= 1.8, < 3.0)
113
+ rexml (>= 3.2.5, < 4.0)
114
+ rubocop-ast (>= 1.28.1, < 2.0)
115
+ ruby-progressbar (~> 1.7)
116
+ unicode-display_width (>= 2.4.0, < 3.0)
117
+ rubocop-ast (1.30.0)
118
+ parser (>= 3.2.1.0)
119
+ rubocop-capybara (2.19.0)
120
+ rubocop (~> 1.41)
121
+ rubocop-factory_bot (2.24.0)
122
+ rubocop (~> 1.33)
123
+ rubocop-performance (1.19.1)
124
+ rubocop (>= 1.7.0, < 2.0)
125
+ rubocop-ast (>= 0.4.0)
126
+ rubocop-rspec (2.25.0)
127
+ rubocop (~> 1.40)
128
+ rubocop-capybara (~> 2.17)
129
+ rubocop-factory_bot (~> 2.22)
130
+ ruby-progressbar (1.13.0)
131
+ standard (1.32.0)
132
+ language_server-protocol (~> 3.17.0.2)
133
+ lint_roller (~> 1.0)
134
+ rubocop (~> 1.57.2)
135
+ standard-custom (~> 1.0.0)
136
+ standard-performance (~> 1.2)
137
+ standard-custom (1.0.2)
138
+ lint_roller (~> 1.0)
139
+ rubocop (~> 1.50)
140
+ standard-performance (1.2.1)
141
+ lint_roller (~> 1.1)
142
+ rubocop-performance (~> 1.19.1)
143
+ thor (1.3.0)
144
+ thread_safe (0.3.6)
145
+ tzinfo (1.2.11)
146
+ thread_safe (~> 0.1)
147
+ unicode-display_width (2.5.0)
148
+ webmock (3.19.1)
149
+ addressable (>= 2.8.0)
150
+ crack (>= 0.3.2)
151
+ hashdiff (>= 0.4.0, < 2.0.0)
152
+ yard (0.9.34)
153
+
154
+ PLATFORMS
155
+ x86_64-linux
156
+
157
+ DEPENDENCIES
158
+ esse-rails!
159
+ lograge
160
+ pry
161
+ railties (~> 5.2.0)
162
+ rake (~> 12.3)
163
+ rspec (~> 3.0)
164
+ rubocop (~> 1.20)
165
+ rubocop-performance (~> 1.11, >= 1.11.5)
166
+ rubocop-rspec (~> 2.4)
167
+ standard (~> 1.3)
168
+ webmock (~> 3.14)
169
+ yard (~> 0.9.20)
170
+
171
+ BUNDLED WITH
172
+ 2.4.13
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "railties", "~> 6.1.0"
6
+
7
+ gemspec path: ".."
@@ -0,0 +1,173 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ esse-rails (0.0.2)
5
+ activesupport (>= 4.2, < 8)
6
+ esse (>= 0.2.2)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actionpack (6.1.7.6)
12
+ actionview (= 6.1.7.6)
13
+ activesupport (= 6.1.7.6)
14
+ rack (~> 2.0, >= 2.0.9)
15
+ rack-test (>= 0.6.3)
16
+ rails-dom-testing (~> 2.0)
17
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
18
+ actionview (6.1.7.6)
19
+ activesupport (= 6.1.7.6)
20
+ builder (~> 3.1)
21
+ erubi (~> 1.4)
22
+ rails-dom-testing (~> 2.0)
23
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
24
+ activesupport (6.1.7.6)
25
+ concurrent-ruby (~> 1.0, >= 1.0.2)
26
+ i18n (>= 1.6, < 2)
27
+ minitest (>= 5.1)
28
+ tzinfo (~> 2.0)
29
+ zeitwerk (~> 2.3)
30
+ addressable (2.8.5)
31
+ public_suffix (>= 2.0.2, < 6.0)
32
+ ast (2.4.2)
33
+ builder (3.2.4)
34
+ coderay (1.1.3)
35
+ concurrent-ruby (1.2.2)
36
+ crack (0.4.5)
37
+ rexml
38
+ crass (1.0.6)
39
+ diff-lcs (1.5.0)
40
+ erubi (1.12.0)
41
+ esse (0.2.3)
42
+ multi_json
43
+ thor (>= 0.19)
44
+ hashdiff (1.0.1)
45
+ i18n (1.14.1)
46
+ concurrent-ruby (~> 1.0)
47
+ json (2.6.3)
48
+ language_server-protocol (3.17.0.3)
49
+ lint_roller (1.1.0)
50
+ lograge (0.14.0)
51
+ actionpack (>= 4)
52
+ activesupport (>= 4)
53
+ railties (>= 4)
54
+ request_store (~> 1.0)
55
+ loofah (2.22.0)
56
+ crass (~> 1.0.2)
57
+ nokogiri (>= 1.12.0)
58
+ method_source (1.0.0)
59
+ minitest (5.20.0)
60
+ multi_json (1.15.0)
61
+ nokogiri (1.15.4-x86_64-linux)
62
+ racc (~> 1.4)
63
+ parallel (1.23.0)
64
+ parser (3.2.2.4)
65
+ ast (~> 2.4.1)
66
+ racc
67
+ pry (0.14.2)
68
+ coderay (~> 1.1)
69
+ method_source (~> 1.0)
70
+ public_suffix (5.0.3)
71
+ racc (1.7.3)
72
+ rack (2.2.8)
73
+ rack-test (2.1.0)
74
+ rack (>= 1.3)
75
+ rails-dom-testing (2.2.0)
76
+ activesupport (>= 5.0.0)
77
+ minitest
78
+ nokogiri (>= 1.6)
79
+ rails-html-sanitizer (1.6.0)
80
+ loofah (~> 2.21)
81
+ nokogiri (~> 1.14)
82
+ railties (6.1.7.6)
83
+ actionpack (= 6.1.7.6)
84
+ activesupport (= 6.1.7.6)
85
+ method_source
86
+ rake (>= 12.2)
87
+ thor (~> 1.0)
88
+ rainbow (3.1.1)
89
+ rake (12.3.3)
90
+ regexp_parser (2.8.2)
91
+ request_store (1.5.1)
92
+ rack (>= 1.4)
93
+ rexml (3.2.6)
94
+ rspec (3.12.0)
95
+ rspec-core (~> 3.12.0)
96
+ rspec-expectations (~> 3.12.0)
97
+ rspec-mocks (~> 3.12.0)
98
+ rspec-core (3.12.2)
99
+ rspec-support (~> 3.12.0)
100
+ rspec-expectations (3.12.3)
101
+ diff-lcs (>= 1.2.0, < 2.0)
102
+ rspec-support (~> 3.12.0)
103
+ rspec-mocks (3.12.6)
104
+ diff-lcs (>= 1.2.0, < 2.0)
105
+ rspec-support (~> 3.12.0)
106
+ rspec-support (3.12.1)
107
+ rubocop (1.57.2)
108
+ json (~> 2.3)
109
+ language_server-protocol (>= 3.17.0)
110
+ parallel (~> 1.10)
111
+ parser (>= 3.2.2.4)
112
+ rainbow (>= 2.2.2, < 4.0)
113
+ regexp_parser (>= 1.8, < 3.0)
114
+ rexml (>= 3.2.5, < 4.0)
115
+ rubocop-ast (>= 1.28.1, < 2.0)
116
+ ruby-progressbar (~> 1.7)
117
+ unicode-display_width (>= 2.4.0, < 3.0)
118
+ rubocop-ast (1.30.0)
119
+ parser (>= 3.2.1.0)
120
+ rubocop-capybara (2.19.0)
121
+ rubocop (~> 1.41)
122
+ rubocop-factory_bot (2.24.0)
123
+ rubocop (~> 1.33)
124
+ rubocop-performance (1.19.1)
125
+ rubocop (>= 1.7.0, < 2.0)
126
+ rubocop-ast (>= 0.4.0)
127
+ rubocop-rspec (2.25.0)
128
+ rubocop (~> 1.40)
129
+ rubocop-capybara (~> 2.17)
130
+ rubocop-factory_bot (~> 2.22)
131
+ ruby-progressbar (1.13.0)
132
+ standard (1.32.0)
133
+ language_server-protocol (~> 3.17.0.2)
134
+ lint_roller (~> 1.0)
135
+ rubocop (~> 1.57.2)
136
+ standard-custom (~> 1.0.0)
137
+ standard-performance (~> 1.2)
138
+ standard-custom (1.0.2)
139
+ lint_roller (~> 1.0)
140
+ rubocop (~> 1.50)
141
+ standard-performance (1.2.1)
142
+ lint_roller (~> 1.1)
143
+ rubocop-performance (~> 1.19.1)
144
+ thor (1.3.0)
145
+ tzinfo (2.0.6)
146
+ concurrent-ruby (~> 1.0)
147
+ unicode-display_width (2.5.0)
148
+ webmock (3.19.1)
149
+ addressable (>= 2.8.0)
150
+ crack (>= 0.3.2)
151
+ hashdiff (>= 0.4.0, < 2.0.0)
152
+ yard (0.9.34)
153
+ zeitwerk (2.6.12)
154
+
155
+ PLATFORMS
156
+ x86_64-linux
157
+
158
+ DEPENDENCIES
159
+ esse-rails!
160
+ lograge
161
+ pry
162
+ railties (~> 6.1.0)
163
+ rake (~> 12.3)
164
+ rspec (~> 3.0)
165
+ rubocop (~> 1.20)
166
+ rubocop-performance (~> 1.11, >= 1.11.5)
167
+ rubocop-rspec (~> 2.4)
168
+ standard (~> 1.3)
169
+ webmock (~> 3.14)
170
+ yard (~> 0.9.20)
171
+
172
+ BUNDLED WITH
173
+ 2.4.13
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Esse
4
4
  module Rails
5
- VERSION = "0.0.1"
5
+ VERSION = "0.0.2"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: esse-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marcos G. Zimmermann
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-11-14 00:00:00.000000000 Z
11
+ date: 2023-11-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: esse
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0'
19
+ version: 0.2.2
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
- version: '0'
26
+ version: 0.2.2
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: activesupport
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -58,34 +58,6 @@ dependencies:
58
58
  - - ">="
59
59
  - !ruby/object:Gem::Version
60
60
  version: '0'
61
- - !ruby/object:Gem::Dependency
62
- name: awesome_print
63
- requirement: !ruby/object:Gem::Requirement
64
- requirements:
65
- - - ">="
66
- - !ruby/object:Gem::Version
67
- version: '0'
68
- type: :development
69
- prerelease: false
70
- version_requirements: !ruby/object:Gem::Requirement
71
- requirements:
72
- - - ">="
73
- - !ruby/object:Gem::Version
74
- version: '0'
75
- - !ruby/object:Gem::Dependency
76
- name: dotenv
77
- requirement: !ruby/object:Gem::Requirement
78
- requirements:
79
- - - ">="
80
- - !ruby/object:Gem::Version
81
- version: '0'
82
- type: :development
83
- prerelease: false
84
- version_requirements: !ruby/object:Gem::Requirement
85
- requirements:
86
- - - ">="
87
- - !ruby/object:Gem::Version
88
- version: '0'
89
61
  - !ruby/object:Gem::Dependency
90
62
  name: pry
91
63
  requirement: !ruby/object:Gem::Requirement
@@ -231,6 +203,10 @@ files:
231
203
  - Gemfile.lock
232
204
  - LICENSE
233
205
  - README.md
206
+ - ci/Gemfile.rails-5.2
207
+ - ci/Gemfile.rails-5.2.lock
208
+ - ci/Gemfile.rails-6.1
209
+ - ci/Gemfile.rails-6.1.lock
234
210
  - lib/esse-rails.rb
235
211
  - lib/esse/rails.rb
236
212
  - lib/esse/rails/cli/autoloader.rb