netroots-ruby-votesmart 0.1.0 → 0.1.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.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: netroots-ruby-votesmart
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dan Cunning
@@ -40,9 +40,8 @@ extensions: []
40
40
 
41
41
  extra_rdoc_files: []
42
42
 
43
- files:
44
- - project-vote-smart.gemspec
45
- - lib/project_vote_smart.rb
43
+ files: []
44
+
46
45
  has_rdoc: true
47
46
  homepage: http://github.com/netroots/ruby-votesmart
48
47
  post_install_message:
@@ -1,24 +0,0 @@
1
- require 'rubygems'
2
- require 'ym4r/google_maps/geocoding'
3
- require 'active_support'
4
- include Ym4r::GoogleMaps
5
-
6
- module ProjectVoteSmart
7
- VERSION = '0.0.1'
8
-
9
- API_URL = "http://api.votesmart.org/"
10
- API_FORMAT = "JSON"
11
-
12
- mattr_accessor :api_key
13
-
14
- class RequestFailed < Exception; end
15
- end
16
-
17
- ProjectVoteSmart.api_key = "key"
18
-
19
- require "#{File.dirname(__FILE__)}/mcll4r/mcll4r.rb"
20
- require "#{File.dirname(__FILE__)}/project_vote_smart/common.rb"
21
-
22
- Dir["#{File.dirname(__FILE__)}/project_vote_smart/*.rb"].each do |source_file|
23
- require source_file unless source_file == "#{File.dirname(__FILE__)}/project_vote_smart/common.rb"
24
- end
@@ -1,13 +0,0 @@
1
- Gem::Specification.new do |s|
2
- s.name = "ruby-votesmart"
3
- s.version = "0.1.0"
4
- s.date = "2009-02-10"
5
- s.summary = "Library for accessing the Project Vote Smart API."
6
- s.email = "dancunning@gmail.com"
7
- s.homepage = "http://github.com/netroots/ruby-votesmart"
8
- s.authors = ["Dan Cunning"]
9
- s.files = ['project-vote-smart.gemspec', 'lib/project_vote_smart.rb']
10
- s.add_dependency("json", [">= 1.1.3"])
11
- s.add_dependency("ym4r", [">= 0.6.1"])
12
- s.has_rdoc = true
13
- end