reactive-ruby 0.7.18 → 0.7.19
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/example/examples/Gemfile +1 -1
- data/example/examples/Gemfile.lock +4 -8
- data/example/examples/app/show.rb +1 -3
- data/lib/reactive-ruby/component.rb +2 -3
- data/lib/reactive-ruby/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1291eb9025b7407c477b96834fdafb03417f74b4
|
4
|
+
data.tar.gz: 8a9c2c6290d2470b8160e42b8dd5d55edd1e38e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 60717270fb07ccda56cf87360442bb5991c68cecf206041f4f4b057e2d303b58e216a943a5dddae29ed7214555034eff372f7cb60159b92f5ed8a79751768b4e
|
7
|
+
data.tar.gz: 630c92fd6d7cdacad40602624292bec149edf94e50a5aa2bdbb5b4183a392bd48a84b3120308cdb755a50e719ffe30b2f807a2203ecf3bf292d31956f69a9d34
|
data/example/examples/Gemfile
CHANGED
@@ -1,17 +1,11 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ../..
|
3
3
|
specs:
|
4
|
-
reactive-ruby (0.7.
|
4
|
+
reactive-ruby (0.7.18)
|
5
5
|
opal
|
6
6
|
opal-activesupport
|
7
7
|
opal-browser
|
8
8
|
|
9
|
-
PATH
|
10
|
-
remote: ../../../reactive-router
|
11
|
-
specs:
|
12
|
-
reactive-router (0.7.2.1)
|
13
|
-
reactive-ruby
|
14
|
-
|
15
9
|
GEM
|
16
10
|
remote: http://rubygems.org/
|
17
11
|
specs:
|
@@ -32,6 +26,8 @@ GEM
|
|
32
26
|
rack (1.6.4)
|
33
27
|
rack-protection (1.5.3)
|
34
28
|
rack
|
29
|
+
reactive-router (0.7.8)
|
30
|
+
reactive-ruby
|
35
31
|
sinatra (1.4.6)
|
36
32
|
rack (~> 1.4)
|
37
33
|
rack-protection (~> 1.4)
|
@@ -46,7 +42,7 @@ PLATFORMS
|
|
46
42
|
|
47
43
|
DEPENDENCIES
|
48
44
|
opal-jquery
|
49
|
-
reactive-router
|
45
|
+
reactive-router
|
50
46
|
reactive-ruby!
|
51
47
|
sinatra
|
52
48
|
|
@@ -88,9 +88,8 @@ module React
|
|
88
88
|
React::RenderingContext.render(name, *args, &block)
|
89
89
|
end
|
90
90
|
rescue Exception => e
|
91
|
-
|
92
|
-
|
93
|
-
`console.error(#{message})`
|
91
|
+
message = "#{base.name}.#{n} method_missing handler exception raised: #{e}" rescue nil
|
92
|
+
`console.error(#{message})` rescue nil
|
94
93
|
end
|
95
94
|
|
96
95
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: reactive-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.19
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Chang
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-09-
|
11
|
+
date: 2015-09-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: opal
|