styx 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- data/app/views/styx/_initializer.html.erb +2 -2
- data/styx.gemspec +1 -1
- metadata +14 -13
@@ -2,11 +2,11 @@
|
|
2
2
|
//<![CDATA[
|
3
3
|
if (Styx.Initializers.<%=klass%> && Styx.Initializers.<%=klass%>.initialize)
|
4
4
|
{
|
5
|
-
Styx.Initializers.<%=klass%>.initialize(<%=data.to_json%>)
|
5
|
+
Styx.Initializers.<%=klass%>.initialize(<%=data.to_json.html_safe%>)
|
6
6
|
}
|
7
7
|
if (Styx.Initializers.<%=klass%> && Styx.Initializers.<%=klass%>.<%=method%>)
|
8
8
|
{
|
9
|
-
Styx.Initializers.<%=klass%>.<%=method%>(<%=data.to_json%>)
|
9
|
+
Styx.Initializers.<%=klass%>.<%=method%>(<%=data.to_json.html_safe%>)
|
10
10
|
}
|
11
11
|
//]]>
|
12
12
|
</script>
|
data/styx.gemspec
CHANGED
metadata
CHANGED
@@ -1,17 +1,18 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: styx
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
|
4
|
+
version: 0.0.4
|
5
|
+
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Boris Staal
|
9
|
-
autorequire:
|
9
|
+
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-01-
|
12
|
+
date: 2012-01-10 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
|
-
description: Set of helpers to maintain bridge between Server (Rails) side and Client
|
14
|
+
description: Set of helpers to maintain bridge between Server (Rails) side and Client
|
15
|
+
(JS) side
|
15
16
|
email: boris@roundlake.ru
|
16
17
|
executables: []
|
17
18
|
extensions: []
|
@@ -30,27 +31,27 @@ files:
|
|
30
31
|
- styx.gemspec
|
31
32
|
homepage: http://github.com/roundlake/styx
|
32
33
|
licenses: []
|
33
|
-
post_install_message:
|
34
|
+
post_install_message:
|
34
35
|
rdoc_options: []
|
35
36
|
require_paths:
|
36
37
|
- lib
|
37
38
|
required_ruby_version: !ruby/object:Gem::Requirement
|
39
|
+
none: false
|
38
40
|
requirements:
|
39
41
|
- - ! '>='
|
40
42
|
- !ruby/object:Gem::Version
|
41
43
|
version: '0'
|
42
|
-
none: false
|
43
44
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
45
|
+
none: false
|
44
46
|
requirements:
|
45
47
|
- - ! '>='
|
46
48
|
- !ruby/object:Gem::Version
|
47
49
|
version: '0'
|
48
|
-
none: false
|
49
50
|
requirements: []
|
50
|
-
rubyforge_project:
|
51
|
-
rubygems_version: 1.8.
|
52
|
-
signing_key:
|
51
|
+
rubyforge_project:
|
52
|
+
rubygems_version: 1.8.10
|
53
|
+
signing_key:
|
53
54
|
specification_version: 3
|
54
|
-
summary: Set of helpers to maintain bridge between Server (Rails) side and Client
|
55
|
+
summary: Set of helpers to maintain bridge between Server (Rails) side and Client
|
56
|
+
(JS) side
|
55
57
|
test_files: []
|
56
|
-
...
|