opensecrets 0.0.1 → 0.0.2
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.rdoc +7 -0
- data/VERSION +1 -1
- data/opensecrets.gemspec +65 -0
- metadata +2 -1
data/README.rdoc
CHANGED
|
@@ -26,6 +26,13 @@ like to contribute please see : http://sunlightlabs.com/projects/opensecrets-rub
|
|
|
26
26
|
cand = OpenSecrets::Candidate.new('YOUR OPEN SECRETS API KEY')
|
|
27
27
|
pp cand.summary({:cid => 'N00007360'})["response"]
|
|
28
28
|
|
|
29
|
+
|
|
30
|
+
== Project Websites
|
|
31
|
+
|
|
32
|
+
* Project Home : http://github.com/grempe/opensecrets/tree/master
|
|
33
|
+
* API Documentation : http://rdoc.info/projects/grempe/opensecrets
|
|
34
|
+
* Report Bugs / Request Features : http://github.com/grempe/opensecrets/issues
|
|
35
|
+
|
|
29
36
|
== Note on Patches/Pull Requests
|
|
30
37
|
|
|
31
38
|
* Fork the project.
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.2
|
data/opensecrets.gemspec
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
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{opensecrets}
|
|
8
|
+
s.version = "0.0.2"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Glenn Rempe"]
|
|
12
|
+
s.date = %q{2009-11-04}
|
|
13
|
+
s.description = %q{OpenSecrets are the best kind. Created as a community service as requested by the Sunlight Foundation.}
|
|
14
|
+
s.email = %q{glenn@rempe.us}
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"LICENSE",
|
|
17
|
+
"README.rdoc"
|
|
18
|
+
]
|
|
19
|
+
s.files = [
|
|
20
|
+
".document",
|
|
21
|
+
".gitignore",
|
|
22
|
+
"LICENSE",
|
|
23
|
+
"README.rdoc",
|
|
24
|
+
"Rakefile",
|
|
25
|
+
"VERSION",
|
|
26
|
+
"examples/example.rb",
|
|
27
|
+
"lib/opensecrets.rb",
|
|
28
|
+
"opensecrets.gemspec",
|
|
29
|
+
"test/helper.rb",
|
|
30
|
+
"test/test_opensecrets.rb"
|
|
31
|
+
]
|
|
32
|
+
s.homepage = %q{http://github.com/grempe/opensecrets}
|
|
33
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
34
|
+
s.require_paths = ["lib"]
|
|
35
|
+
s.rubygems_version = %q{1.3.5}
|
|
36
|
+
s.summary = %q{OpenSecrets.org API Ruby Wrapper}
|
|
37
|
+
s.test_files = [
|
|
38
|
+
"test/helper.rb",
|
|
39
|
+
"test/test_opensecrets.rb",
|
|
40
|
+
"examples/example.rb"
|
|
41
|
+
]
|
|
42
|
+
|
|
43
|
+
if s.respond_to? :specification_version then
|
|
44
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
45
|
+
s.specification_version = 3
|
|
46
|
+
|
|
47
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
48
|
+
s.add_runtime_dependency(%q<httparty>, [">= 0.4.5"])
|
|
49
|
+
s.add_runtime_dependency(%q<crack>, [">= 0.1.4"])
|
|
50
|
+
s.add_development_dependency(%q<shoulda>, [">= 0"])
|
|
51
|
+
s.add_development_dependency(%q<yard>, [">= 0"])
|
|
52
|
+
else
|
|
53
|
+
s.add_dependency(%q<httparty>, [">= 0.4.5"])
|
|
54
|
+
s.add_dependency(%q<crack>, [">= 0.1.4"])
|
|
55
|
+
s.add_dependency(%q<shoulda>, [">= 0"])
|
|
56
|
+
s.add_dependency(%q<yard>, [">= 0"])
|
|
57
|
+
end
|
|
58
|
+
else
|
|
59
|
+
s.add_dependency(%q<httparty>, [">= 0.4.5"])
|
|
60
|
+
s.add_dependency(%q<crack>, [">= 0.1.4"])
|
|
61
|
+
s.add_dependency(%q<shoulda>, [">= 0"])
|
|
62
|
+
s.add_dependency(%q<yard>, [">= 0"])
|
|
63
|
+
end
|
|
64
|
+
end
|
|
65
|
+
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: opensecrets
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Glenn Rempe
|
|
@@ -70,6 +70,7 @@ files:
|
|
|
70
70
|
- VERSION
|
|
71
71
|
- examples/example.rb
|
|
72
72
|
- lib/opensecrets.rb
|
|
73
|
+
- opensecrets.gemspec
|
|
73
74
|
- test/helper.rb
|
|
74
75
|
- test/test_opensecrets.rb
|
|
75
76
|
has_rdoc: true
|