nationbuilder-rb 1.3.3 → 1.3.4
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.
- checksums.yaml +4 -4
- data/Rakefile +2 -2
- data/VERSION +1 -1
- data/lib/api_spec/lib/api_spec/specs/people.rb +6 -0
- data/lib/api_spec/spec.json +9 -0
- data/nationbuilder-rb.gemspec +5 -5
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9ae3eac8821d3d3b35eb365a6c5e27c197fcea6e
|
|
4
|
+
data.tar.gz: a71bc6ecc5804a576ab469c487a2372268ae0313
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: adb1c95e4adba2d8e7f2f13a42aaef24bef6a9ef305fa33fc0cce994e6874bc09bb51252128174cd526acd6449c0217656930b2013c9c0f17782cad82b3cc984
|
|
7
|
+
data.tar.gz: d5037f7b2e87b540fdfc8c1c2aa07e9b67054a9e1ee6141256805e3b52e763231d4be0d03e4659f575864e26ad002655bc1e1707dce95a4ef203e37ae186949a
|
data/Rakefile
CHANGED
|
@@ -8,8 +8,8 @@ Jeweler::Tasks.new do |gem|
|
|
|
8
8
|
gem.license = 'MIT'
|
|
9
9
|
gem.summary = 'A Ruby client to the NationBuilder API'
|
|
10
10
|
gem.description = 'A Ruby client to the NationBuilder API'
|
|
11
|
-
gem.email = '
|
|
12
|
-
gem.authors = ['David Huie']
|
|
11
|
+
gem.email = 'schmitt@nationbuilder.com'
|
|
12
|
+
gem.authors = ['David Huie', 'Alexandre Schmitt']
|
|
13
13
|
end
|
|
14
14
|
|
|
15
15
|
Jeweler::RubygemsDotOrgTasks.new
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.3.
|
|
1
|
+
1.3.4
|
|
@@ -27,6 +27,12 @@ class ApiSpec::Spec
|
|
|
27
27
|
end
|
|
28
28
|
end
|
|
29
29
|
|
|
30
|
+
people.method('Count') do |method|
|
|
31
|
+
method.synopsis = "Returns a count of people in the nation"
|
|
32
|
+
method.http_method = "GET"
|
|
33
|
+
method.uri = "/people/count"
|
|
34
|
+
end
|
|
35
|
+
|
|
30
36
|
people.method('Show') do |method|
|
|
31
37
|
method.synopsis = "Returns a full representation of the person"
|
|
32
38
|
method.http_method = "GET"
|
data/lib/api_spec/spec.json
CHANGED
|
@@ -1724,6 +1724,15 @@
|
|
|
1724
1724
|
}
|
|
1725
1725
|
]
|
|
1726
1726
|
},
|
|
1727
|
+
{
|
|
1728
|
+
"MethodName": "Count",
|
|
1729
|
+
"Synopsis": "Returns a count of people in the nation",
|
|
1730
|
+
"HTTPMethod": "GET",
|
|
1731
|
+
"URI": "/people/count",
|
|
1732
|
+
"parameters": [
|
|
1733
|
+
|
|
1734
|
+
]
|
|
1735
|
+
},
|
|
1727
1736
|
{
|
|
1728
1737
|
"MethodName": "Show",
|
|
1729
1738
|
"Synopsis": "Returns a full representation of the person",
|
data/nationbuilder-rb.gemspec
CHANGED
|
@@ -2,18 +2,18 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: nationbuilder-rb 1.3.
|
|
5
|
+
# stub: nationbuilder-rb 1.3.4 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "nationbuilder-rb"
|
|
9
|
-
s.version = "1.3.
|
|
9
|
+
s.version = "1.3.4"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib"]
|
|
13
|
-
s.authors = ["David Huie"]
|
|
14
|
-
s.date = "2015-07
|
|
13
|
+
s.authors = ["David Huie", "Alexandre Schmitt"]
|
|
14
|
+
s.date = "2015-08-07"
|
|
15
15
|
s.description = "A Ruby client to the NationBuilder API"
|
|
16
|
-
s.email = "
|
|
16
|
+
s.email = "schmitt@nationbuilder.com"
|
|
17
17
|
s.executables = ["nbdoc"]
|
|
18
18
|
s.extra_rdoc_files = [
|
|
19
19
|
"LICENSE.txt",
|
metadata
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: nationbuilder-rb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Huie
|
|
8
|
+
- Alexandre Schmitt
|
|
8
9
|
autorequire:
|
|
9
10
|
bindir: bin
|
|
10
11
|
cert_chain: []
|
|
11
|
-
date: 2015-07
|
|
12
|
+
date: 2015-08-07 00:00:00.000000000 Z
|
|
12
13
|
dependencies:
|
|
13
14
|
- !ruby/object:Gem::Dependency
|
|
14
15
|
name: httpclient
|
|
@@ -95,7 +96,7 @@ dependencies:
|
|
|
95
96
|
- !ruby/object:Gem::Version
|
|
96
97
|
version: '1.18'
|
|
97
98
|
description: A Ruby client to the NationBuilder API
|
|
98
|
-
email:
|
|
99
|
+
email: schmitt@nationbuilder.com
|
|
99
100
|
executables:
|
|
100
101
|
- nbdoc
|
|
101
102
|
extensions: []
|