tropo-provisioning 0.0.20
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +24 -0
- data/LICENSE +21 -0
- data/README.rdoc +85 -0
- data/Rakefile +46 -0
- data/VERSION +1 -0
- data/examples/create_address.rb +18 -0
- data/examples/create_application.rb +22 -0
- data/examples/create_user.rb +22 -0
- data/examples/delete_application.rb +11 -0
- data/examples/list_addresses.rb +18 -0
- data/examples/list_applications.rb +19 -0
- data/examples/list_exchanges.rb +13 -0
- data/examples/list_pin.rb +0 -0
- data/examples/update_application.rb +17 -0
- data/lib/tropo-provisioning.rb +2 -0
- data/lib/tropo-provisioning/error.rb +7 -0
- data/lib/tropo-provisioning/tropo-provisioning.rb +864 -0
- data/spec/live-tropo-provisioning_spec.rb +77 -0
- data/spec/spec_helper.rb +10 -0
- data/spec/tropo-provisioning_spec.rb +1168 -0
- data/tropo-provisioning.gemspec +70 -0
- metadata +116 -0
@@ -0,0 +1,70 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{tropo-provisioning}
|
8
|
+
s.version = "0.0.20"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Jason Goecke"]
|
12
|
+
s.date = %q{2010-07-28}
|
13
|
+
s.description = %q{Library for interacting with the Tropo Provisioning API}
|
14
|
+
s.email = %q{jsgoecke@voxeo.com}
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"LICENSE",
|
17
|
+
"README.rdoc"
|
18
|
+
]
|
19
|
+
s.files = [
|
20
|
+
".gitignore",
|
21
|
+
"LICENSE",
|
22
|
+
"README.rdoc",
|
23
|
+
"Rakefile",
|
24
|
+
"VERSION",
|
25
|
+
"lib/tropo-provisioning.rb",
|
26
|
+
"lib/tropo-provisioning/tropo-provisioning.rb",
|
27
|
+
"lib/tropo-provisioning/error.rb",
|
28
|
+
"tropo-provisioning.gemspec"
|
29
|
+
]
|
30
|
+
s.homepage = %q{http://github.com/voxeo/tropo-provisioning}
|
31
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
32
|
+
s.require_paths = ["lib"]
|
33
|
+
s.rubygems_version = %q{1.3.7}
|
34
|
+
s.summary = %q{Library for interacting with the Tropo Provisioning API}
|
35
|
+
s.test_files = [
|
36
|
+
"spec/live-tropo-provisioning_spec.rb",
|
37
|
+
"spec/spec_helper.rb",
|
38
|
+
"spec/tropo-provisioning_spec.rb",
|
39
|
+
"spec/live-tropo-provisioning_spec.rb",
|
40
|
+
"examples/create_address.rb",
|
41
|
+
"examples/create_user.rb",
|
42
|
+
"examples/create_application.rb",
|
43
|
+
"examples/delete_application.rb",
|
44
|
+
"examples/list_addresses.rb",
|
45
|
+
"examples/list_applications.rb",
|
46
|
+
"examples/list_exchanges.rb",
|
47
|
+
"examples/list_pin.rb",
|
48
|
+
"examples/update_application.rb"
|
49
|
+
]
|
50
|
+
|
51
|
+
if s.respond_to? :specification_version then
|
52
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
53
|
+
s.specification_version = 3
|
54
|
+
|
55
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
56
|
+
s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
|
57
|
+
s.add_runtime_dependency(%q<hashie>, [">= 0.2.1"])
|
58
|
+
s.add_runtime_dependency(%q<activesupport>)
|
59
|
+
else
|
60
|
+
s.add_dependency(%q<rspec>, [">= 1.2.9"])
|
61
|
+
s.add_dependency(%q<hashie>, [">= 0.2.1"])
|
62
|
+
s.add_dependency(%q<activesupport>)
|
63
|
+
end
|
64
|
+
else
|
65
|
+
s.add_dependency(%q<rspec>, [">= 1.2.9"])
|
66
|
+
s.add_dependency(%q<hashie>, [">= 0.2.1"])
|
67
|
+
s.add_dependency(%q<activesupport>)
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
metadata
ADDED
@@ -0,0 +1,116 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: tropo-provisioning
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.20
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Jason Goecke
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2010-07-28 00:00:00.000000000 -04:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: rspec
|
17
|
+
requirement: &70321080432300 !ruby/object:Gem::Requirement
|
18
|
+
none: false
|
19
|
+
requirements:
|
20
|
+
- - ! '>='
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 1.2.9
|
23
|
+
type: :development
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: *70321080432300
|
26
|
+
- !ruby/object:Gem::Dependency
|
27
|
+
name: hashie
|
28
|
+
requirement: &70321080431820 !ruby/object:Gem::Requirement
|
29
|
+
none: false
|
30
|
+
requirements:
|
31
|
+
- - ! '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 0.2.1
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: *70321080431820
|
37
|
+
- !ruby/object:Gem::Dependency
|
38
|
+
name: activesupport
|
39
|
+
requirement: &70321080431440 !ruby/object:Gem::Requirement
|
40
|
+
none: false
|
41
|
+
requirements:
|
42
|
+
- - ! '>='
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
version: '0'
|
45
|
+
type: :runtime
|
46
|
+
prerelease: false
|
47
|
+
version_requirements: *70321080431440
|
48
|
+
description: Library for interacting with the Tropo Provisioning API
|
49
|
+
email: jsgoecke@voxeo.com
|
50
|
+
executables: []
|
51
|
+
extensions: []
|
52
|
+
extra_rdoc_files:
|
53
|
+
- LICENSE
|
54
|
+
- README.rdoc
|
55
|
+
files:
|
56
|
+
- .gitignore
|
57
|
+
- LICENSE
|
58
|
+
- README.rdoc
|
59
|
+
- Rakefile
|
60
|
+
- VERSION
|
61
|
+
- lib/tropo-provisioning.rb
|
62
|
+
- lib/tropo-provisioning/tropo-provisioning.rb
|
63
|
+
- lib/tropo-provisioning/error.rb
|
64
|
+
- tropo-provisioning.gemspec
|
65
|
+
- spec/live-tropo-provisioning_spec.rb
|
66
|
+
- spec/spec_helper.rb
|
67
|
+
- spec/tropo-provisioning_spec.rb
|
68
|
+
- examples/create_address.rb
|
69
|
+
- examples/create_user.rb
|
70
|
+
- examples/create_application.rb
|
71
|
+
- examples/delete_application.rb
|
72
|
+
- examples/list_addresses.rb
|
73
|
+
- examples/list_applications.rb
|
74
|
+
- examples/list_exchanges.rb
|
75
|
+
- examples/list_pin.rb
|
76
|
+
- examples/update_application.rb
|
77
|
+
has_rdoc: true
|
78
|
+
homepage: http://github.com/voxeo/tropo-provisioning
|
79
|
+
licenses: []
|
80
|
+
post_install_message:
|
81
|
+
rdoc_options:
|
82
|
+
- --charset=UTF-8
|
83
|
+
require_paths:
|
84
|
+
- lib
|
85
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
86
|
+
none: false
|
87
|
+
requirements:
|
88
|
+
- - ! '>='
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: '0'
|
91
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
92
|
+
none: false
|
93
|
+
requirements:
|
94
|
+
- - ! '>='
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
requirements: []
|
98
|
+
rubyforge_project:
|
99
|
+
rubygems_version: 1.6.2
|
100
|
+
signing_key:
|
101
|
+
specification_version: 3
|
102
|
+
summary: Library for interacting with the Tropo Provisioning API
|
103
|
+
test_files:
|
104
|
+
- spec/live-tropo-provisioning_spec.rb
|
105
|
+
- spec/spec_helper.rb
|
106
|
+
- spec/tropo-provisioning_spec.rb
|
107
|
+
- spec/live-tropo-provisioning_spec.rb
|
108
|
+
- examples/create_address.rb
|
109
|
+
- examples/create_user.rb
|
110
|
+
- examples/create_application.rb
|
111
|
+
- examples/delete_application.rb
|
112
|
+
- examples/list_addresses.rb
|
113
|
+
- examples/list_applications.rb
|
114
|
+
- examples/list_exchanges.rb
|
115
|
+
- examples/list_pin.rb
|
116
|
+
- examples/update_application.rb
|