rjson 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/rjson.gemspec +4 -4
- metadata +11 -11
data/Rakefile
CHANGED
|
@@ -9,7 +9,7 @@ Jeweler::Tasks.new do |gem|
|
|
|
9
9
|
gem.description = %Q{Template Handler for JSON}
|
|
10
10
|
gem.email = "jan@sumocoders.be"
|
|
11
11
|
gem.authors = ["Jan De Poorter"]
|
|
12
|
-
gem.add_runtime_dependency 'actionpack', ['
|
|
12
|
+
gem.add_runtime_dependency 'actionpack', ['> 3.0.0', '< 3.2.0']
|
|
13
13
|
end
|
|
14
14
|
Jeweler::RubygemsDotOrgTasks.new
|
|
15
15
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.3
|
data/rjson.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{rjson}
|
|
8
|
-
s.version = "0.1.
|
|
8
|
+
s.version = "0.1.3"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Jan De Poorter"]
|
|
@@ -37,12 +37,12 @@ Gem::Specification.new do |s|
|
|
|
37
37
|
s.specification_version = 3
|
|
38
38
|
|
|
39
39
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
40
|
-
s.add_runtime_dependency(%q<actionpack>, ["
|
|
40
|
+
s.add_runtime_dependency(%q<actionpack>, ["< 3.2.0", "> 3.0.0"])
|
|
41
41
|
else
|
|
42
|
-
s.add_dependency(%q<actionpack>, ["
|
|
42
|
+
s.add_dependency(%q<actionpack>, ["< 3.2.0", "> 3.0.0"])
|
|
43
43
|
end
|
|
44
44
|
else
|
|
45
|
-
s.add_dependency(%q<actionpack>, ["
|
|
45
|
+
s.add_dependency(%q<actionpack>, ["< 3.2.0", "> 3.0.0"])
|
|
46
46
|
end
|
|
47
47
|
end
|
|
48
48
|
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rjson
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 29
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 3
|
|
10
|
+
version: 0.1.3
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Jan De Poorter
|
|
@@ -24,22 +24,22 @@ dependencies:
|
|
|
24
24
|
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
25
|
none: false
|
|
26
26
|
requirements:
|
|
27
|
-
- -
|
|
27
|
+
- - <
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
hash:
|
|
29
|
+
hash: 15
|
|
30
30
|
segments:
|
|
31
31
|
- 3
|
|
32
|
+
- 2
|
|
32
33
|
- 0
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
- - ~>
|
|
34
|
+
version: 3.2.0
|
|
35
|
+
- - ">"
|
|
36
36
|
- !ruby/object:Gem::Version
|
|
37
|
-
hash:
|
|
37
|
+
hash: 7
|
|
38
38
|
segments:
|
|
39
39
|
- 3
|
|
40
|
-
- 1
|
|
41
40
|
- 0
|
|
42
|
-
|
|
41
|
+
- 0
|
|
42
|
+
version: 3.0.0
|
|
43
43
|
type: :runtime
|
|
44
44
|
version_requirements: *id001
|
|
45
45
|
description: Template Handler for JSON
|