hyper-operation 0.5.3 → 0.5.4

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
  SHA1:
3
- metadata.gz: b7c4cecfbe9d2c6353f4d797a743220eb7475b56
4
- data.tar.gz: 837467c2f158e76ff03669d4765383a8f3713714
3
+ metadata.gz: 55a51f0f00f835cad841e22e4134a1aad3941e4e
4
+ data.tar.gz: ecf9e3ca605a6ba2e8e4457072c1da89ceb08508
5
5
  SHA512:
6
- metadata.gz: 690c6f512bea18092eaff36f3e2d2dcf126719ba52ac392053d9d386c771a8fba0bec48e15adca62b37d4dc8e5501c8d8b1a5189b02ba039acd144de32d32c04
7
- data.tar.gz: 2b4811133557e9cc2c17b139dca97a302a2e77d45aadae02f269e7afdd1d68b93cf318747d65f836c9137d9b9f1f196310d57db421d2dbd933aa333965f35012
6
+ metadata.gz: cdca326bc1be10ae50cd7d4c57baa7d1e4cf8491a0627bb493be74e33298c4f5d063066ad2807e401b628eb1934f6d1a7965673d3672633af90785cb2f507e2c
7
+ data.tar.gz: 40d8425a7370b54b69c4f1b49ec98104c0d93169fee556d80b4c020610c48386b8695b43fb2137bb5936cde2a3c251e9c9615a7b8ec59f4988445ab29e15132e
@@ -1,10 +1,10 @@
1
1
  PATH
2
2
  remote: ../..
3
3
  specs:
4
- hyper-operation (0.5.1)
4
+ hyper-operation (0.5.4)
5
5
  activerecord (>= 0.3.0)
6
6
  hyper-component (>= 0.12.2)
7
- hyperloop-config (>= 0.9.2)
7
+ hyperloop-config (>= 0.9.7)
8
8
  mutations
9
9
  opal-activesupport
10
10
  pusher
@@ -91,20 +91,21 @@ GEM
91
91
  hike (1.2.3)
92
92
  http_parser.rb (0.6.0)
93
93
  httpclient (2.8.3)
94
- hyper-component (0.12.2)
95
- hyper-react (>= 0.12.0)
94
+ hyper-component (0.12.3)
95
+ hyper-react (>= 0.12.3)
96
96
  hyperloop-config (>= 0.9.2)
97
97
  opal-rails (~> 0.9.0)
98
98
  react-rails (< 1.10.0)
99
- hyper-react (0.12.2)
99
+ hyper-react (0.12.5)
100
100
  hyper-store (>= 0.2.1)
101
- hyperloop-config (>= 0.9.2)
101
+ hyperloop-config (>= 0.9.7)
102
102
  opal (>= 0.8.0)
103
103
  opal-activesupport (>= 0.2.0)
104
- hyper-store (0.2.1)
104
+ hyper-store (0.2.2)
105
105
  hyperloop-config (>= 0.9.2)
106
- hyperloop-config (0.9.2)
106
+ hyperloop-config (0.9.7)
107
107
  opal
108
+ opal-browser
108
109
  i18n (0.8.1)
109
110
  jbuilder (2.6.3)
110
111
  activesupport (>= 3.0.0, < 5.2)
@@ -21,20 +21,26 @@ module Hyperloop
21
21
  Object.send(:remove_const, :Application) if @fake_application_defined
22
22
  policy = begin
23
23
  Object.const_get 'ApplicationPolicy'
24
- rescue Exception => e
25
- #raise e unless e.is_a?(NameError) && e.message == "uninitialized constant ApplicationPolicy"
26
24
  rescue LoadError
25
+ rescue NameError => e
26
+ raise e unless e.message =~ /uninitialized constant ApplicationPolicy/
27
27
  end
28
28
  application = begin
29
29
  Object.const_get('Application')
30
30
  rescue LoadError
31
- rescue Exception => e
32
- #raise e unless e.is_a?(NameError) && e.message == "uninitialized constant Application"
31
+ rescue NameError
32
+ raise e unless e.message =~ /uninitialized constant Application/
33
33
  end if policy
34
34
  if policy && !application
35
35
  Object.const_set 'Application', Class.new
36
36
  @fake_application_defined = true
37
37
  end
38
+ begin
39
+ Object.const_get 'Hyperloop::ApplicationPolicy'
40
+ rescue LoadError
41
+ rescue NameError => e
42
+ raise e unless e.message =~ /uninitialized constant Hyperloop::ApplicationPolicy/
43
+ end
38
44
  @pusher = nil
39
45
  end
40
46
 
@@ -1,5 +1,5 @@
1
1
  module Hyperloop
2
2
  class Operation
3
- VERSION = '0.5.3'
3
+ VERSION = '0.5.4'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hyper-operation
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.3
4
+ version: 0.5.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - catmando
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-03-28 00:00:00.000000000 Z
11
+ date: 2017-03-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mutations
@@ -314,7 +314,6 @@ files:
314
314
  - ".gitignore"
315
315
  - CODE_OF_CONDUCT.md
316
316
  - Gemfile
317
- - Gemfile.lock
318
317
  - LICENSE.txt
319
318
  - README.md
320
319
  - Rakefile
@@ -1,325 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- hyper-operation (0.5.3)
5
- activerecord (>= 0.3.0)
6
- hyper-component (>= 0.12.2)
7
- hyperloop-config (>= 0.9.7)
8
- mutations
9
- opal-activesupport
10
- pusher
11
- pusher-fake
12
-
13
- GEM
14
- remote: https://rubygems.org/
15
- specs:
16
- abstract_type (0.0.7)
17
- actioncable (5.0.2)
18
- actionpack (= 5.0.2)
19
- nio4r (>= 1.2, < 3.0)
20
- websocket-driver (~> 0.6.1)
21
- actionmailer (5.0.2)
22
- actionpack (= 5.0.2)
23
- actionview (= 5.0.2)
24
- activejob (= 5.0.2)
25
- mail (~> 2.5, >= 2.5.4)
26
- rails-dom-testing (~> 2.0)
27
- actionpack (5.0.2)
28
- actionview (= 5.0.2)
29
- activesupport (= 5.0.2)
30
- rack (~> 2.0)
31
- rack-test (~> 0.6.3)
32
- rails-dom-testing (~> 2.0)
33
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
34
- actionview (5.0.2)
35
- activesupport (= 5.0.2)
36
- builder (~> 3.1)
37
- erubis (~> 2.7.0)
38
- rails-dom-testing (~> 2.0)
39
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
40
- activejob (5.0.2)
41
- activesupport (= 5.0.2)
42
- globalid (>= 0.3.6)
43
- activemodel (5.0.2)
44
- activesupport (= 5.0.2)
45
- activerecord (5.0.2)
46
- activemodel (= 5.0.2)
47
- activesupport (= 5.0.2)
48
- arel (~> 7.0)
49
- activesupport (5.0.2)
50
- concurrent-ruby (~> 1.0, >= 1.0.2)
51
- i18n (~> 0.7)
52
- minitest (~> 5.1)
53
- tzinfo (~> 1.1)
54
- adamantium (0.2.0)
55
- ice_nine (~> 0.11.0)
56
- memoizable (~> 0.4.0)
57
- addressable (2.5.0)
58
- public_suffix (~> 2.0, >= 2.0.2)
59
- arel (7.1.4)
60
- ast (2.3.0)
61
- babel-source (5.8.35)
62
- babel-transpiler (0.7.0)
63
- babel-source (>= 4.0, < 6)
64
- execjs (~> 2.0)
65
- builder (3.2.3)
66
- capybara (2.12.1)
67
- addressable
68
- mime-types (>= 1.16)
69
- nokogiri (>= 1.3.3)
70
- rack (>= 1.0.0)
71
- rack-test (>= 0.5.4)
72
- xpath (~> 2.0)
73
- childprocess (0.6.2)
74
- ffi (~> 1.0, >= 1.0.11)
75
- cliver (0.3.2)
76
- coderay (1.1.1)
77
- coffee-script-source (1.12.2)
78
- concord (0.1.5)
79
- adamantium (~> 0.2.0)
80
- equalizer (~> 0.0.9)
81
- concurrent-ruby (1.0.5)
82
- connection_pool (2.2.1)
83
- cookiejar (0.3.3)
84
- daemons (1.2.4)
85
- database_cleaner (1.5.3)
86
- diff-lcs (1.2.5)
87
- em-http-request (1.1.5)
88
- addressable (>= 2.3.4)
89
- cookiejar (!= 0.3.1)
90
- em-socksify (>= 0.3)
91
- eventmachine (>= 1.0.3)
92
- http_parser.rb (>= 0.6.0)
93
- em-socksify (0.3.1)
94
- eventmachine (>= 1.0.0.beta.4)
95
- em-websocket (0.5.1)
96
- eventmachine (>= 0.12.9)
97
- http_parser.rb (~> 0.6.0)
98
- equalizer (0.0.11)
99
- erubis (2.7.0)
100
- eventmachine (1.2.3)
101
- execjs (2.7.0)
102
- ffi (1.9.18)
103
- globalid (0.3.7)
104
- activesupport (>= 4.1.0)
105
- hike (1.2.3)
106
- http_parser.rb (0.6.0)
107
- httpclient (2.8.3)
108
- hyper-component (0.12.3)
109
- hyper-react (>= 0.12.3)
110
- hyperloop-config (>= 0.9.2)
111
- opal-rails (~> 0.9.0)
112
- react-rails (< 1.10.0)
113
- hyper-react (0.12.5)
114
- hyper-store (>= 0.2.1)
115
- hyperloop-config (>= 0.9.7)
116
- opal (>= 0.8.0)
117
- opal-activesupport (>= 0.2.0)
118
- hyper-spec (0.1.0)
119
- capybara
120
- opal
121
- parser
122
- poltergeist
123
- pry
124
- rspec-rails
125
- selenium-webdriver (= 2.53.4)
126
- timecop
127
- unparser (= 0.2.5)
128
- hyper-store (0.2.1)
129
- hyperloop-config (>= 0.9.2)
130
- hyperloop-config (0.9.7)
131
- opal
132
- opal-browser
133
- i18n (0.8.1)
134
- ice_nine (0.11.2)
135
- jquery-rails (4.3.1)
136
- rails-dom-testing (>= 1, < 3)
137
- railties (>= 4.2.0)
138
- thor (>= 0.14, < 2.0)
139
- loofah (2.0.3)
140
- nokogiri (>= 1.5.9)
141
- mail (2.6.4)
142
- mime-types (>= 1.16, < 4)
143
- memoizable (0.4.2)
144
- thread_safe (~> 0.3, >= 0.3.1)
145
- method_source (0.8.2)
146
- mime-types (3.1)
147
- mime-types-data (~> 3.2015)
148
- mime-types-data (3.2016.0521)
149
- mini_portile2 (2.1.0)
150
- minitest (5.10.1)
151
- multi_json (1.12.1)
152
- mutations (0.8.1)
153
- activesupport
154
- nio4r (2.0.0)
155
- nokogiri (1.7.1)
156
- mini_portile2 (~> 2.1.0)
157
- opal (0.10.3)
158
- hike (~> 1.2)
159
- sourcemap (~> 0.1.0)
160
- sprockets (~> 3.1)
161
- tilt (>= 1.4)
162
- opal-activesupport (0.3.0)
163
- opal (>= 0.5.0, < 1.0.0)
164
- opal-browser (0.2.0)
165
- opal
166
- paggio
167
- opal-jquery (0.4.2)
168
- opal (>= 0.7.0, < 0.11.0)
169
- opal-rails (0.9.1)
170
- jquery-rails
171
- opal (>= 0.8.0, < 0.11)
172
- opal-activesupport (>= 0.0.5)
173
- opal-jquery (~> 0.4.0)
174
- opal-sprockets (~> 0.4.0)
175
- rails (>= 4.0, < 6.0)
176
- sprockets-rails (< 3.0)
177
- opal-sprockets (0.4.0.0.10.0.3.0.0)
178
- opal (~> 0.10.0)
179
- sprockets (~> 3.0)
180
- tilt (>= 1.4)
181
- paggio (0.2.6)
182
- parser (2.3.3.1)
183
- ast (~> 2.2)
184
- poltergeist (1.13.0)
185
- capybara (~> 2.1)
186
- cliver (~> 0.3.1)
187
- websocket-driver (>= 0.2.0)
188
- procto (0.0.3)
189
- pry (0.10.4)
190
- coderay (~> 1.1.0)
191
- method_source (~> 0.8.1)
192
- slop (~> 3.4)
193
- public_suffix (2.0.5)
194
- puma (3.8.2)
195
- pusher (1.3.1)
196
- httpclient (~> 2.7)
197
- multi_json (~> 1.0)
198
- pusher-signature (~> 0.1.8)
199
- pusher-fake (1.8.0)
200
- em-http-request (~> 1.1)
201
- em-websocket (~> 0.5)
202
- multi_json (~> 1.6)
203
- thin (~> 1.5)
204
- pusher-signature (0.1.8)
205
- rack (2.0.1)
206
- rack-test (0.6.3)
207
- rack (>= 1.0)
208
- rails (5.0.2)
209
- actioncable (= 5.0.2)
210
- actionmailer (= 5.0.2)
211
- actionpack (= 5.0.2)
212
- actionview (= 5.0.2)
213
- activejob (= 5.0.2)
214
- activemodel (= 5.0.2)
215
- activerecord (= 5.0.2)
216
- activesupport (= 5.0.2)
217
- bundler (>= 1.3.0, < 2.0)
218
- railties (= 5.0.2)
219
- sprockets-rails (>= 2.0.0)
220
- rails-dom-testing (2.0.2)
221
- activesupport (>= 4.2.0, < 6.0)
222
- nokogiri (~> 1.6)
223
- rails-html-sanitizer (1.0.3)
224
- loofah (~> 2.0)
225
- railties (5.0.2)
226
- actionpack (= 5.0.2)
227
- activesupport (= 5.0.2)
228
- method_source
229
- rake (>= 0.8.7)
230
- thor (>= 0.18.1, < 2.0)
231
- rake (10.5.0)
232
- react-rails (1.9.0)
233
- babel-transpiler (>= 0.7.0)
234
- coffee-script-source (~> 1.8)
235
- connection_pool
236
- execjs
237
- railties (>= 3.2)
238
- tilt
239
- rspec (3.5.0)
240
- rspec-core (~> 3.5.0)
241
- rspec-expectations (~> 3.5.0)
242
- rspec-mocks (~> 3.5.0)
243
- rspec-core (3.5.4)
244
- rspec-support (~> 3.5.0)
245
- rspec-expectations (3.5.0)
246
- diff-lcs (>= 1.2.0, < 2.0)
247
- rspec-support (~> 3.5.0)
248
- rspec-mocks (3.5.0)
249
- diff-lcs (>= 1.2.0, < 2.0)
250
- rspec-support (~> 3.5.0)
251
- rspec-rails (3.5.2)
252
- actionpack (>= 3.0)
253
- activesupport (>= 3.0)
254
- railties (>= 3.0)
255
- rspec-core (~> 3.5.0)
256
- rspec-expectations (~> 3.5.0)
257
- rspec-mocks (~> 3.5.0)
258
- rspec-support (~> 3.5.0)
259
- rspec-steps (2.1.1)
260
- rspec (>= 3.0, < 3.99)
261
- rspec-support (3.5.0)
262
- rspec-wait (0.0.9)
263
- rspec (>= 3, < 4)
264
- rubyzip (1.2.1)
265
- selenium-webdriver (2.53.4)
266
- childprocess (~> 0.5)
267
- rubyzip (~> 1.0)
268
- websocket (~> 1.0)
269
- slop (3.6.0)
270
- sourcemap (0.1.1)
271
- sprockets (3.7.1)
272
- concurrent-ruby (~> 1.0)
273
- rack (> 1, < 3)
274
- sprockets-rails (2.3.3)
275
- actionpack (>= 3.0)
276
- activesupport (>= 3.0)
277
- sprockets (>= 2.8, < 4.0)
278
- sqlite3 (1.3.10)
279
- thin (1.7.0)
280
- daemons (~> 1.0, >= 1.0.9)
281
- eventmachine (~> 1.0, >= 1.0.4)
282
- rack (>= 1, < 3)
283
- thor (0.19.4)
284
- thread_safe (0.3.6)
285
- tilt (2.0.7)
286
- timecop (0.8.1)
287
- tzinfo (1.2.2)
288
- thread_safe (~> 0.1)
289
- unparser (0.2.5)
290
- abstract_type (~> 0.0.7)
291
- adamantium (~> 0.2.0)
292
- concord (~> 0.1.5)
293
- diff-lcs (~> 1.2.5)
294
- equalizer (~> 0.0.9)
295
- parser (~> 2.3.0)
296
- procto (~> 0.0.2)
297
- websocket (1.2.4)
298
- websocket-driver (0.6.5)
299
- websocket-extensions (>= 0.1.0)
300
- websocket-extensions (0.1.2)
301
- xpath (2.0.0)
302
- nokogiri (~> 1.3)
303
-
304
- PLATFORMS
305
- ruby
306
-
307
- DEPENDENCIES
308
- bundler (~> 1.8)
309
- database_cleaner
310
- hyper-operation!
311
- hyper-react
312
- hyper-spec
313
- opal-browser
314
- opal-rails
315
- pry
316
- puma
317
- rails (~> 5.0.0)
318
- rake (~> 10.0)
319
- rspec-rails
320
- rspec-steps
321
- rspec-wait
322
- sqlite3 (= 1.3.10)
323
-
324
- BUNDLED WITH
325
- 1.12.5