apify 0.5.0 → 0.5.1
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/Gemfile +9 -0
- data/Gemfile.lock +48 -0
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/apify.gemspec +6 -4
- data/spec/spec_helper.rb +1 -1
- metadata +10 -6
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,48 @@
|
|
1
|
+
GEM
|
2
|
+
remote: http://rubygems.org/
|
3
|
+
specs:
|
4
|
+
actionmailer (2.3.10)
|
5
|
+
actionpack (= 2.3.10)
|
6
|
+
actionpack (2.3.10)
|
7
|
+
activesupport (= 2.3.10)
|
8
|
+
rack (~> 1.1.0)
|
9
|
+
activerecord (2.3.10)
|
10
|
+
activesupport (= 2.3.10)
|
11
|
+
activeresource (2.3.10)
|
12
|
+
activesupport (= 2.3.10)
|
13
|
+
activesupport (2.3.10)
|
14
|
+
addressable (2.2.2)
|
15
|
+
crack (0.1.8)
|
16
|
+
json (1.4.6)
|
17
|
+
jsonschema (2.0.0)
|
18
|
+
mime-types (1.16)
|
19
|
+
rack (1.1.0)
|
20
|
+
rails (2.3.10)
|
21
|
+
actionmailer (= 2.3.10)
|
22
|
+
actionpack (= 2.3.10)
|
23
|
+
activerecord (= 2.3.10)
|
24
|
+
activeresource (= 2.3.10)
|
25
|
+
activesupport (= 2.3.10)
|
26
|
+
rake (>= 0.8.3)
|
27
|
+
rake (0.8.7)
|
28
|
+
rest-client (1.6.1)
|
29
|
+
mime-types (>= 1.16)
|
30
|
+
rspec (1.3.1)
|
31
|
+
rspec-rails (1.3.3)
|
32
|
+
rack (>= 1.0.0)
|
33
|
+
rspec (= 1.3.1)
|
34
|
+
webmock (1.4.0)
|
35
|
+
addressable (>= 2.2.2)
|
36
|
+
crack (>= 0.1.7)
|
37
|
+
|
38
|
+
PLATFORMS
|
39
|
+
ruby
|
40
|
+
|
41
|
+
DEPENDENCIES
|
42
|
+
json
|
43
|
+
jsonschema
|
44
|
+
rails (= 2.3.10)
|
45
|
+
rest-client
|
46
|
+
rspec (= 1.3.1)
|
47
|
+
rspec-rails (= 1.3.3)
|
48
|
+
webmock
|
data/Rakefile
CHANGED
@@ -31,7 +31,7 @@ begin
|
|
31
31
|
gemspec.authors = ["Henning Koch"]
|
32
32
|
gemspec.add_dependency 'json'
|
33
33
|
gemspec.add_dependency 'jsonschema'
|
34
|
-
gemspec.add_dependency 'rest-client'
|
34
|
+
gemspec.add_dependency 'rest-client', '>=1.6.1'
|
35
35
|
end
|
36
36
|
Jeweler::GemcutterTasks.new
|
37
37
|
rescue LoadError
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.5.
|
1
|
+
0.5.1
|
data/apify.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{apify}
|
8
|
-
s.version = "0.5.
|
8
|
+
s.version = "0.5.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Henning Koch"]
|
@@ -17,6 +17,8 @@ Gem::Specification.new do |s|
|
|
17
17
|
]
|
18
18
|
s.files = [
|
19
19
|
".gitignore",
|
20
|
+
"Gemfile",
|
21
|
+
"Gemfile.lock",
|
20
22
|
"MIT-LICENSE",
|
21
23
|
"README.md",
|
22
24
|
"Rakefile",
|
@@ -154,16 +156,16 @@ Gem::Specification.new do |s|
|
|
154
156
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
155
157
|
s.add_runtime_dependency(%q<json>, [">= 0"])
|
156
158
|
s.add_runtime_dependency(%q<jsonschema>, [">= 0"])
|
157
|
-
s.add_runtime_dependency(%q<rest-client>, [">=
|
159
|
+
s.add_runtime_dependency(%q<rest-client>, [">= 1.6.1"])
|
158
160
|
else
|
159
161
|
s.add_dependency(%q<json>, [">= 0"])
|
160
162
|
s.add_dependency(%q<jsonschema>, [">= 0"])
|
161
|
-
s.add_dependency(%q<rest-client>, [">=
|
163
|
+
s.add_dependency(%q<rest-client>, [">= 1.6.1"])
|
162
164
|
end
|
163
165
|
else
|
164
166
|
s.add_dependency(%q<json>, [">= 0"])
|
165
167
|
s.add_dependency(%q<jsonschema>, [">= 0"])
|
166
|
-
s.add_dependency(%q<rest-client>, [">=
|
168
|
+
s.add_dependency(%q<rest-client>, [">= 1.6.1"])
|
167
169
|
end
|
168
170
|
end
|
169
171
|
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: apify
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 9
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 5
|
9
|
-
-
|
10
|
-
version: 0.5.
|
9
|
+
- 1
|
10
|
+
version: 0.5.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Henning Koch
|
@@ -54,10 +54,12 @@ dependencies:
|
|
54
54
|
requirements:
|
55
55
|
- - ">="
|
56
56
|
- !ruby/object:Gem::Version
|
57
|
-
hash:
|
57
|
+
hash: 13
|
58
58
|
segments:
|
59
|
-
-
|
60
|
-
|
59
|
+
- 1
|
60
|
+
- 6
|
61
|
+
- 1
|
62
|
+
version: 1.6.1
|
61
63
|
type: :runtime
|
62
64
|
version_requirements: *id003
|
63
65
|
description: "Compact definition of JSON APIs for Rails applications. "
|
@@ -70,6 +72,8 @@ extra_rdoc_files:
|
|
70
72
|
- README.md
|
71
73
|
files:
|
72
74
|
- .gitignore
|
75
|
+
- Gemfile
|
76
|
+
- Gemfile.lock
|
73
77
|
- MIT-LICENSE
|
74
78
|
- README.md
|
75
79
|
- Rakefile
|