gon 6.3.1 → 6.4.0

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: d3011b64184a618203097a39e862d2003267b1cd01174fd10277036bd2bccf76
4
- data.tar.gz: 4103a6703347a5c5cd35502d9a0655730e3889686346042dc702ba7bebe58dbf
3
+ metadata.gz: 3bdd0446070acfd94f0e8ef48b57eb1bfdf82179dca4cdd7a6e230d43ee9551b
4
+ data.tar.gz: 3dea439ff1cefa4edef65a9c39f2d0e505114140fcbf1a9effda085f04741e64
5
5
  SHA512:
6
- metadata.gz: df7d4d73cebf80666e8a5f65c04fb8368c83fe53f600976c93f6c8136873add54e9af82df246440b851b18c1254d21f191498d2254cb537734ae8101f5277187
7
- data.tar.gz: 0af70690d9acd62e3550ce7bea2142ddc9a518b41b921db60b70fa092fdf0344b6758adb24cbe90c7825b56e81edfb0ed987f88f73937c3191f5bd1af0041fb4
6
+ metadata.gz: af0597738e9196231399b4c15e77358bb4e3e90cbfe26fefae9da4d70ae5c20982c15c424e34b37ed58cd05cf8e867f6756cfa83f8621eda301df266ab5ff251
7
+ data.tar.gz: 37a2e08e06f44c863bfce115e99c9628f798347b2db2579b491d38aa959b5e5ee076b9207ae02405e303b94c8952198becef9f2d24fce8f79bd7a0b5cf001339
@@ -0,0 +1 @@
1
+ tidelift: "rubygems/gon"
data/.travis.yml CHANGED
@@ -6,7 +6,9 @@ env:
6
6
 
7
7
  rvm:
8
8
  - 2.2.10
9
- - 2.3.7
10
- - 2.4.4
11
- - 2.5.1
9
+ - 2.3.8
10
+ - 2.4.10
11
+ - 2.5.8
12
+ - 2.6.6
13
+ - 2.7.1
12
14
  - ruby-head
data/CHANGELOG.md CHANGED
@@ -1,129 +1,264 @@
1
1
  # CHANGELOG
2
2
 
3
- ## 6.0.1
4
-
5
- * Free dependencies
6
-
7
- ## 6.0.0
8
-
9
- * Refactoring
10
- * nonce option. Thanks to @joeljackson
11
- * Included rails url_helpers into jbuilder. Thanks to @razum2um
12
- * Welcome @takiy33 as contributor!
13
-
14
- ## 5.2.3
15
-
16
- * Coffescript implementation of watch.js. Thanks to @willcosgrove
17
- * unwatchAll function in watch.js. Thanks to @willcosgrove
18
-
19
- ## 5.2.2
20
-
21
- * add support for controller helper methods in jbuilder
22
-
23
- ## 5.2.1
24
-
25
- * fix for jbuilder module. Thanks to @jankovy
26
- * merge variable feature (for merge hash-like variables instead of overriding them). Thanks to @jalkoby
27
-
28
- ## 5.2.0
29
-
30
- * fix issue where include_gon would raise exception if the controller did not assign any gon variables. Thanks to @asalme
31
- * namespace_check option. Thanks to @tommyh
32
- * Only inject gon into ActionController::Base-like object in spec_helper. Thanks to @kevinoconnor7
33
- * AMD compatible version of including gon. Thanks to @vijoc
34
-
35
- ## 5.1.2
36
-
37
- * Clarifying helpers, dump gon#watch content to safe json before render. Thanks to @Strech
38
-
39
- ## 5.1.1
40
-
41
- * global_root option. Thanks to @rafaelliu
42
- * MultiJson support. Thanks to @Strech
43
-
44
- ## 5.1.0
45
-
46
- * Many fixes https://github.com/gazay/gon/compare/91845f3f0debd0cb8fa569aad65f5dc40a7e28e5...8dc7400fbb83ba5a086bd36c76342a393690d53f
47
- * Thanks to @Silex, @kilefritz, @irobayna, @kyrylo, @randoum, @jackquack, @tuvistavie, @Strech for awesome commits and help!
48
-
49
- ## 5.0.4
50
-
51
- * Fix check for get and assign variables for Gon.global
52
-
53
- ## 5.0.3
54
-
55
- * Revert changes in gemspec
56
-
57
- ## 5.0.2
58
-
59
- * Fix issue when there is no gon object for current thread and
60
- rendering include_gon (#108 part) (wasn't fixed) (@gregmolnar)
61
-
62
- ## 5.0.1
63
-
64
- * Fix issue when there is no gon object for current thread and
65
- rendering include_gon (#108 part)
66
-
67
- ## 5.0.0
68
-
69
- * Gon is threadsafe now! (@razum2um)
70
- * Camelcasing with depth (@MaxSchmeling)
71
- * Optional CDATA and style refactoring (@torbjon)
72
- * jBuilder supports not only String and Hash types of locals
73
- (@steakchaser)
74
- * Using ActionDispatch::Request#uuid instead of
75
- ActionDispatch::Request#id (@sharshenov)
76
-
77
- ## 4.1.1
78
-
79
- * Fixed critical XSS vulnerability https://github.com/gazay/gon/issues/84 (@vadimr & @Hebo)
80
-
81
- ## 4.1.0
82
-
83
- * Refactored script tag generation (@toothrot)
84
- * Stop support for MRI 1.8.7
85
- * Added rabl-rails support (@jtherrell)
86
- * Accepting locals in jbuilder templates
87
-
88
- ## 4.0.3
89
-
90
- * Added new method `Gon#push` for assign variables through Hash-like
91
- objects (@topdev)
92
- * Fixes for 1.8.7 compatibility.
93
- * !!!IMPORTANT!!! Last version with compatibility for MRI 1.8.7
94
-
95
- ## 4.0.2
96
-
97
- * Fixed gon.watch in JS without callback and options
98
-
99
- ## 4.0.1
100
-
101
- * Removed BlankSlate requirement *Peter Schröder*
102
- * Gon#set_variable and Gon#get_variable moved to public scope
103
- * Added option :locals to gon.rabl functionality
104
-
105
- ## 4.0.0
106
-
107
- * Added gon.watch functionality (thanks to @brainopia and @kossnocorp)
108
- * Compatibility with jbuilder paths for partial! method
109
- * Fixed some bugs
110
- * Little bit refactoring - Gon now is a class
111
-
112
- ## 3.0.3
113
-
114
- * Include ActionView::Helpers into Gon::JBuilder
115
- * Added init option (@torbjon)
116
-
117
- ## 3.0.2
118
-
119
- * Added need_tag option (@afa)
120
-
121
- ## 3.0.0
122
-
123
- * Almost all code refactored
124
- * Added Gon.global for using gon everywhere
125
- * Included ActionView::Helpers into Rabl::Engine
126
-
127
- ## 2.3.0
128
-
129
- * Don't really remember what was before this version
3
+ ## [Unreleased]
4
+
5
+ ## [6.4.0] - 2020-09-18
6
+ ### Security
7
+ - CVE-2020-25739: Enforce HTML entities escaping in gon output
8
+
9
+ ## [6.3.2] - 2019-11-18
10
+ ### Security
11
+ - Restrict possibility of vulnerable i18n legacy verision (0.3.6.pre)
12
+ installation
13
+
14
+ ## [6.3.1] - 2019-11-18
15
+ ### Changed
16
+ - ActionView::Base and ActionController::Base should be loaded inside
17
+ ActiveSupport.on_load hook. Thanks to @amatsuda
18
+ - Require Ruby >= 2.2.2 (activesupport). Thanks to @nicolasleger
19
+ - Update old_rails.rb to reflect GonHelpers -> ControllerHelpers name change.
20
+ Thanks to @etipton
21
+
22
+ ## [6.2.1] - 2018-07-11
23
+ ### Changed
24
+ - Update README: correct spelling mistake. Thanks to @EdwardBetts
25
+ - Autoload test classes only in test env. Thanks to @wilddima
26
+
27
+ ### Fixed
28
+ - Fix keys cache. Thanks to @ertrzyiks
29
+ - fixing tests by running with rabl and rabl-rails separately. Thanks to
30
+ @dsalahutdinov
31
+
32
+ ## [6.2.0] - 2017-10-04
33
+ ### Added
34
+ - Introduce keys cache. Thanks to @vlazar
35
+ - Add possibleErrorCallback to watch params. Thanks to @etagwerker
36
+
37
+ ### Changed
38
+ - Update readme with PhoenixGon hex link. Thanks to @khusnetdinov
39
+ - Fix code highlighting in README. Thanks to @ojab
40
+ - Refactoring: use attr_reader
41
+
42
+ ### Removed
43
+ - Remove unnecessary json dependency.
44
+ - Remove rubysl and rubinius-developer_tools gem.
45
+
46
+ ## [6.1.0] - 2016-07-11
47
+ ### Deprecated
48
+ - env is deprecated and will be removed from Rails 5.0. Thanks to @dlupu
49
+
50
+ ### Fixed
51
+ - fix merging routes bug. Thanks to @strikyflo
52
+ - Show what method was used in public methods error.
53
+
54
+ ### Changed
55
+ - Use 'need_tag' as option name to prevent calling 'tag' method. Thanks to
56
+ @june29
57
+ - Update README; comment out gon.clear from sample code. Thanks to
58
+ @speee-nakajima
59
+ - Update README; Replace the include_gon method with render_data method.
60
+ - Refactoring: use attr_accessor method.
61
+ - Refactoring: use attr_reader method.
62
+
63
+ ## [6.0.1] - 2015-07-22
64
+ ### Changed
65
+ - Free dependencies
66
+
67
+ ## [6.0.0] - 2015-07-22
68
+ ### Added
69
+ - nonce option. Thanks to @joeljackson
70
+
71
+ ### Changed
72
+ - Refactoring
73
+ - Included rails url_helpers into jbuilder. Thanks to @razum2um
74
+
75
+ ## [5.2.3] - 2014-11-03
76
+ ### Added
77
+ - Coffescript implementation of watch.js. Thanks to @willcosgrove
78
+ - unwatchAll function in watch.js. Thanks to @willcosgrove
79
+
80
+ ## [5.2.2] - 2014-10-31
81
+ ### Added
82
+ - support for controller helper methods in jbuilder
83
+
84
+ ## [5.2.1] - 2014-10-28
85
+ ### Added
86
+ - merge variable feature (for merge hash-like variables instead of overriding
87
+ them). Thanks to @jalkoby
88
+
89
+ ### Fixed
90
+ - fix for jbuilder module. Thanks to @jankovy
91
+
92
+ ## [5.2.0] - 2014-08-26
93
+ ### Added
94
+ - namespace_check option. Thanks to @tommyh
95
+ - AMD compatible version of including gon. Thanks to @vijoc
96
+
97
+ ### Changed
98
+ - Only inject gon into ActionController::Base-like object in spec_helper. Thanks
99
+ to @kevinoconnor7
100
+
101
+ ### Fixed
102
+ - fix issue where include_gon would raise exception if the controller did not
103
+ assign any gon variables. Thanks to @asalme
104
+
105
+ ## [5.1.2] - 2014-07-22
106
+ ### Changed
107
+ - Clarifying helpers, dump gon#watch content to safe json before render. Thanks
108
+ to @Strech
109
+
110
+ ## [5.1.1] - 2014-07-17
111
+ ### Added
112
+ - global_root option. Thanks to @rafaelliu
113
+ - MultiJson support. Thanks to @Strech
114
+
115
+ ## [5.1.0] - 2014-06-29
116
+ ### Fixed
117
+ - Many fixes. Thanks to @Silex, @kilefritz, @irobayna, @kyrylo, @randoum,
118
+ @jackquack, @tuvistavie, @Strech for awesome commits and help!
119
+
120
+ ## [5.0.4] - 2014-02-13
121
+ ### Fixed
122
+ - Fix check for get and assign variables for Gon.global
123
+
124
+ ## [5.0.3] - 2014-02-12
125
+ ### Removed
126
+ - Revert changes in gemspec
127
+
128
+ ## [5.0.2] - 2014-02-12
129
+ ### Fixed
130
+ - Fix issue when there is no gon object for current thread and rendering
131
+ include_gon (#108 part) (wasn't fixed) (@gregmolnar)
132
+
133
+ ## [5.0.1] - 2013-12-30
134
+ ### Fixed
135
+ - Fix issue when there is no gon object for current thread and rendering
136
+ include_gon (#108 part)
137
+
138
+ ## [5.0.0] - 2013-12-26
139
+ ### Changed
140
+ - Gon is threadsafe now! (@razum2um)
141
+ - Camelcasing with depth (@MaxSchmeling)
142
+ - Optional CDATA and style refactoring (@torbjon)
143
+ - jBuilder supports not only String and Hash types of locals (@steakchaser)
144
+ - Using ActionDispatch::Request#uuid instead of ActionDispatch::Request#id
145
+ (@sharshenov)
146
+
147
+ ## [4.1.1] - 2013-06-04
148
+ ### Fixed
149
+ - Fixed critical XSS vulnerability https://github.com/gazay/gon/issues/84
150
+ (@vadimr & @Hebo)
151
+
152
+ ## [4.1.0] - 2013-04-14
153
+ ### Added
154
+ - rabl-rails support (@jtherrell)
155
+
156
+ ### Changed
157
+ - Refactored script tag generation (@toothrot)
158
+ - Stop support for MRI 1.8.7
159
+ - Accepting locals in jbuilder templates
160
+
161
+ ## [4.0.3] - 2013-04-14
162
+ !!!IMPORTANT!!! Last version with compatibility for MRI 1.8.7
163
+
164
+ ### Added
165
+ - new method `Gon#push` for assign variables through Hash-like objects (@topdev)
166
+ ### Changed
167
+ - Fixes for 1.8.7 compatibility.
168
+
169
+ ## [4.0.2] - 2012-12-17
170
+ ### Fixed
171
+ - Fixed gon.watch in JS without callback and options
172
+
173
+ ## [4.0.1] - 2012-10-25
174
+ ### Added
175
+ - option :locals to gon.rabl functionality
176
+
177
+ ### Changed
178
+ - Gon#set_variable and Gon#get_variable moved to public scope
179
+
180
+ ### Removed
181
+ - BlankSlate requirement (@phoet)
182
+
183
+ ## [4.0.0] - 2012-07-23
184
+ ### Added
185
+ - gon.watch functionality (thanks to @brainopia and @kossnocorp)
186
+ - Compatibility with jbuilder paths for partial! method
187
+
188
+ ### Changed
189
+ - Little bit refactoring - Gon now is a class
190
+
191
+ ### Fixed
192
+ - Fixed some bugs
193
+
194
+ ## [3.0.5] - 2012-06-22
195
+ ### Added
196
+ - type text/javascript option (@torbjon)
197
+
198
+ ### Changed
199
+ - A litlle bit refactoring
200
+ - Made compatible with active support json encoding for escaping script tags
201
+
202
+ ### Fixed
203
+ - bug for init option
204
+ - clear if init true (@torbjon)
205
+
206
+ ## [3.0.4] - 2012-06-02
207
+ ### Fixed
208
+ - Fix bug with gon clear with global variables, bump version
209
+
210
+ ## [3.0.3] - 2012-05-22
211
+ ### Added
212
+ - init option (@torbjon)
213
+
214
+ ### Changed
215
+ - Include ActionView::Helpers into Gon::JBuilder
216
+
217
+ ## [3.0.2] - 2012-04-28
218
+ ### Added
219
+ - need_tag option (@afa)
220
+
221
+ ## [3.0.0] - 2012-04-17
222
+ ### Added
223
+ - Added Gon.global for using gon everywhere
224
+
225
+ ### Changed
226
+ - Almost all code refactored
227
+ - Included ActionView::Helpers into Rabl::Engine
228
+
229
+ ## [2.3.0] - 2012-04-09
230
+ ### Changed
231
+ - Don't really remember what was before this version
232
+
233
+ [Unreleased]: https://github.com/gazay/gon/compare/v6.3.2...master
234
+ [6.3.2]: https://github.com/gazay/gon/compare/v6.3.1...v6.3.2
235
+ [6.3.1]: https://github.com/gazay/gon/compare/v6.2.1...v6.3.1
236
+ [6.2.1]: https://github.com/gazay/gon/compare/v6.2.0...v6.2.1
237
+ [6.2.0]: https://github.com/gazay/gon/compare/v6.1.0...v6.2.0
238
+ [6.1.0]: https://github.com/gazay/gon/compare/v6.0.1...v6.1.0
239
+ [6.0.1]: https://github.com/gazay/gon/compare/v6.0.0...v6.0.1
240
+ [6.0.0]: https://github.com/gazay/gon/compare/v5.2.3...v6.0.0
241
+ [5.2.3]: https://github.com/gazay/gon/compare/v5.2.2...v5.2.3
242
+ [5.2.2]: https://github.com/gazay/gon/compare/v5.2.1...v5.2.2
243
+ [5.2.1]: https://github.com/gazay/gon/compare/v5.2.0...v5.2.1
244
+ [5.2.0]: https://github.com/gazay/gon/compare/v5.1.2...v5.2.0
245
+ [5.1.2]: https://github.com/gazay/gon/compare/v5.1.1...v5.1.2
246
+ [5.1.1]: https://github.com/gazay/gon/compare/v5.1.0...v5.1.1
247
+ [5.1.0]: https://github.com/gazay/gon/compare/v5.0.4...v5.1.0
248
+ [5.0.4]: https://github.com/gazay/gon/compare/v5.0.3...v5.0.4
249
+ [5.0.3]: https://github.com/gazay/gon/compare/v5.0.2...v5.0.3
250
+ [5.0.2]: https://github.com/gazay/gon/compare/v5.0.1...v5.0.2
251
+ [5.0.1]: https://github.com/gazay/gon/compare/v5.0.0...v5.0.1
252
+ [5.0.0]: https://github.com/gazay/gon/compare/v4.1.1...v5.0.0
253
+ [4.1.1]: https://github.com/gazay/gon/compare/v4.1.0...v4.1.1
254
+ [4.1.0]: https://github.com/gazay/gon/compare/v4.0.3...v4.1.0
255
+ [4.0.3]: https://github.com/gazay/gon/compare/v4.0.2...v4.0.3
256
+ [4.0.2]: https://github.com/gazay/gon/compare/v4.0.1...v4.0.2
257
+ [4.0.1]: https://github.com/gazay/gon/compare/v4.0.0...v4.0.1
258
+ [4.0.0]: https://github.com/gazay/gon/compare/v3.0.5...v4.0.0
259
+ [3.0.5]: https://github.com/gazay/gon/compare/v3.0.4...v3.0.5
260
+ [3.0.4]: https://github.com/gazay/gon/compare/v3.0.3...v3.0.4
261
+ [3.0.3]: https://github.com/gazay/gon/compare/v3.0.2...v3.0.3
262
+ [3.0.2]: https://github.com/gazay/gon/compare/v3.0.0...v3.0.2
263
+ [3.0.0]: https://github.com/gazay/gon/compare/v2.3.0...v3.0.0
264
+ [2.3.0]: https://github.com/gazay/gon/releases/tag/v2.3.0
data/README.md CHANGED
@@ -237,3 +237,7 @@ Special thanks to @brainopia, @kossnocorp and @ai.
237
237
  ## License
238
238
 
239
239
  The MIT License
240
+
241
+ ## Security Contact
242
+
243
+ To report a security vulnerability, please use the [Tidelift security contact](https://tidelift.com/security). Tidelift will coordinate the fix and disclosure.
data/gon.gemspec CHANGED
@@ -16,14 +16,16 @@ Gem::Specification.new do |s|
16
16
  s.files = `git ls-files`.split("\n")
17
17
  s.require_paths = ['lib']
18
18
  s.required_ruby_version = '>= 2.2.0'
19
- s.add_dependency 'actionpack', '>= 3.0'
19
+ s.add_dependency 'actionpack', '>= 3.0.20'
20
+ s.add_dependency 'i18n', '>= 0.7'
20
21
  s.add_dependency 'request_store', '>= 1.0'
21
22
  s.add_dependency 'multi_json'
22
23
  s.add_development_dependency 'rabl', '0.11.3'
23
24
  s.add_development_dependency 'rabl-rails'
24
25
  s.add_development_dependency 'rspec', '>= 3.0'
25
26
  s.add_development_dependency 'jbuilder'
26
- s.add_development_dependency 'railties', '>= 3.0'
27
+ s.add_development_dependency 'railties', '>= 3.0.20'
27
28
  s.add_development_dependency 'rake'
28
29
  s.add_development_dependency 'pry'
30
+ s.add_development_dependency 'pry-byebug'
29
31
  end
@@ -1,8 +1,23 @@
1
1
  class Gon
2
2
  module JsonDumper
3
+ # Taken from ERB::Util
4
+ JSON_ESCAPE_REGEXP = /[\u2028\u2029&><]/u
5
+ JSON_ESCAPE = {
6
+ "&" => '\u0026',
7
+ ">" => '\u003e',
8
+ "<" => '\u003c',
9
+ "\u2028" => '\u2028',
10
+ "\u2029" => '\u2029'
11
+ }
12
+
3
13
  def self.dump(object)
4
- MultiJson.dump object,
14
+ dumped_json = MultiJson.dump object,
5
15
  mode: :compat, escape_mode: :xss_safe, time_format: :ruby
16
+ escape(dumped_json)
17
+ end
18
+
19
+ def self.escape(json)
20
+ json.gsub(JSON_ESCAPE_REGEXP, JSON_ESCAPE)
6
21
  end
7
22
  end
8
23
  end
@@ -5,7 +5,7 @@ class Gon
5
5
 
6
6
  module ClassMethods
7
7
  module GonSession
8
- def process(*)
8
+ def process(*, **)
9
9
  # preload threadlocal & store controller instance
10
10
  if controller.is_a? ActionController::Base
11
11
  controller.gon
data/lib/gon/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  class Gon
2
- VERSION = '6.3.1'
2
+ VERSION = '6.4.0'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gon
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.3.1
4
+ version: 6.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - gazay
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-11-16 00:00:00.000000000 Z
11
+ date: 2020-09-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: actionpack
@@ -16,14 +16,28 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '3.0'
19
+ version: 3.0.20
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: '3.0'
26
+ version: 3.0.20
27
+ - !ruby/object:Gem::Dependency
28
+ name: i18n
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0.7'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0.7'
27
41
  - !ruby/object:Gem::Dependency
28
42
  name: request_store
29
43
  requirement: !ruby/object:Gem::Requirement
@@ -114,14 +128,14 @@ dependencies:
114
128
  requirements:
115
129
  - - ">="
116
130
  - !ruby/object:Gem::Version
117
- version: '3.0'
131
+ version: 3.0.20
118
132
  type: :development
119
133
  prerelease: false
120
134
  version_requirements: !ruby/object:Gem::Requirement
121
135
  requirements:
122
136
  - - ">="
123
137
  - !ruby/object:Gem::Version
124
- version: '3.0'
138
+ version: 3.0.20
125
139
  - !ruby/object:Gem::Dependency
126
140
  name: rake
127
141
  requirement: !ruby/object:Gem::Requirement
@@ -150,6 +164,20 @@ dependencies:
150
164
  - - ">="
151
165
  - !ruby/object:Gem::Version
152
166
  version: '0'
167
+ - !ruby/object:Gem::Dependency
168
+ name: pry-byebug
169
+ requirement: !ruby/object:Gem::Requirement
170
+ requirements:
171
+ - - ">="
172
+ - !ruby/object:Gem::Version
173
+ version: '0'
174
+ type: :development
175
+ prerelease: false
176
+ version_requirements: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - ">="
179
+ - !ruby/object:Gem::Version
180
+ version: '0'
153
181
  description: If you need to send some data to your js files and you don't want to
154
182
  do this with long way trough views and parsing - use this force!
155
183
  email:
@@ -158,6 +186,7 @@ executables: []
158
186
  extensions: []
159
187
  extra_rdoc_files: []
160
188
  files:
189
+ - ".github/FUNDING.yml"
161
190
  - ".gitignore"
162
191
  - ".travis.yml"
163
192
  - CHANGELOG.md
@@ -224,7 +253,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
224
253
  - !ruby/object:Gem::Version
225
254
  version: '0'
226
255
  requirements: []
227
- rubygems_version: 3.0.3
256
+ rubygems_version: 3.1.2
228
257
  signing_key:
229
258
  specification_version: 4
230
259
  summary: Get your Rails variables in your JS