xoopit-cloudquery 0.1.4 → 0.1.5
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/README.markdown +8 -1
- data/Rakefile +5 -1
- data/VERSION.yml +1 -1
- metadata +32 -3
data/README.markdown
CHANGED
@@ -6,11 +6,18 @@ Client for Xoopit's cloudquery API
|
|
6
6
|
Install
|
7
7
|
-------
|
8
8
|
|
9
|
-
|
9
|
+
Depends on `json`, `rack`, and `taf2-curb`. The install below should take
|
10
|
+
care of it. If not, `sudo gem install json rack taf2-curb` will do it.
|
11
|
+
|
12
|
+
Be sure you've run `gem sources -a http://gems.github.com` once on your system. Then:
|
13
|
+
|
14
|
+
sudo gem install xoopit-cloudquery
|
10
15
|
|
11
16
|
Simple contacts application example
|
12
17
|
-----------------------------------
|
13
18
|
|
19
|
+
> require 'rubygems'
|
20
|
+
=> true
|
14
21
|
> require 'cloudquery'
|
15
22
|
=> true
|
16
23
|
> include Cloudquery
|
data/Rakefile
CHANGED
@@ -11,7 +11,11 @@ begin
|
|
11
11
|
gem.authors = ["Cameron Walters", "nb.io"]
|
12
12
|
gem.files = FileList["[A-Z]*", "{lib,spec}/**/*"]
|
13
13
|
# gem.rubyforge_project = "cloudquery"
|
14
|
-
|
14
|
+
gem.add_dependency('rack', ">= 1.0")
|
15
|
+
gem.add_dependency('json', ">= 1.1.4")
|
16
|
+
gem.add_dependency('taf2-curb', ">= 0.2.8.0")
|
17
|
+
|
18
|
+
|
15
19
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
16
20
|
end
|
17
21
|
rescue LoadError
|
data/VERSION.yml
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: xoopit-cloudquery
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Cameron Walters
|
@@ -12,8 +12,37 @@ cert_chain: []
|
|
12
12
|
|
13
13
|
date: 2009-05-04 00:00:00 -07:00
|
14
14
|
default_executable:
|
15
|
-
dependencies:
|
16
|
-
|
15
|
+
dependencies:
|
16
|
+
- !ruby/object:Gem::Dependency
|
17
|
+
name: rack
|
18
|
+
type: :runtime
|
19
|
+
version_requirement:
|
20
|
+
version_requirements: !ruby/object:Gem::Requirement
|
21
|
+
requirements:
|
22
|
+
- - ">="
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: "1.0"
|
25
|
+
version:
|
26
|
+
- !ruby/object:Gem::Dependency
|
27
|
+
name: json
|
28
|
+
type: :runtime
|
29
|
+
version_requirement:
|
30
|
+
version_requirements: !ruby/object:Gem::Requirement
|
31
|
+
requirements:
|
32
|
+
- - ">="
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: 1.1.4
|
35
|
+
version:
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: taf2-curb
|
38
|
+
type: :runtime
|
39
|
+
version_requirement:
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
requirements:
|
42
|
+
- - ">="
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
version: 0.2.8.0
|
45
|
+
version:
|
17
46
|
description: Client for Xoopit's cloudquery API
|
18
47
|
email: us@nb.io
|
19
48
|
executables: []
|