r_hapi 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
@@ -9,6 +9,7 @@ module RHapi
9
9
  attr_accessor *VALID_OPTIONS_KEYS
10
10
 
11
11
  def configure
12
+ self.reset
12
13
  yield self
13
14
  end
14
15
 
data/r_hapi.gemspec ADDED
@@ -0,0 +1,92 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{r_hapi}
8
+ s.version = "0.1.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Tim Stephenson of RaddOnline"]
12
+ s.date = %q{2011-03-18}
13
+ s.description = %q{Makes it easy to use the HubSpot API in a Ruby application.}
14
+ s.email = %q{tim@raddonline.com}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE.txt",
17
+ "README.rdoc"
18
+ ]
19
+ s.files = [
20
+ "Gemfile",
21
+ "Gemfile.lock",
22
+ "LICENSE.txt",
23
+ "README.rdoc",
24
+ "Rakefile",
25
+ "VERSION",
26
+ "lib/r_hapi.rb",
27
+ "lib/r_hapi/configuration.rb",
28
+ "lib/r_hapi/lead.rb",
29
+ "lib/r_hapi/r_hapi_exception.rb",
30
+ "r_hapi.gemspec",
31
+ "spec/config.yml.sample",
32
+ "spec/configuration_spec.rb",
33
+ "spec/fixtures/error.html",
34
+ "spec/fixtures/lead.json",
35
+ "spec/fixtures/leads.json",
36
+ "spec/lead_spec.rb",
37
+ "spec/r_hapi_spec.rb",
38
+ "spec/spec_helper.rb"
39
+ ]
40
+ s.homepage = %q{http://github.com/timstephenson/rHAPI}
41
+ s.licenses = ["MIT"]
42
+ s.require_paths = ["lib"]
43
+ s.rubygems_version = %q{1.3.7}
44
+ s.summary = %q{A ruby wrapper for the HubSpot API (HAPI).}
45
+ s.test_files = [
46
+ "spec/configuration_spec.rb",
47
+ "spec/lead_spec.rb",
48
+ "spec/r_hapi_spec.rb",
49
+ "spec/spec_helper.rb"
50
+ ]
51
+
52
+ if s.respond_to? :specification_version then
53
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
54
+ s.specification_version = 3
55
+
56
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
57
+ s.add_runtime_dependency(%q<curb>, ["~> 0.7.12"])
58
+ s.add_runtime_dependency(%q<json>, ["~> 1.5.1"])
59
+ s.add_runtime_dependency(%q<activesupport>, [">= 0"])
60
+ s.add_development_dependency(%q<rspec>, ["~> 2.5.0"])
61
+ s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
62
+ s.add_development_dependency(%q<jeweler>, ["~> 1.5.2"])
63
+ s.add_development_dependency(%q<rcov>, [">= 0"])
64
+ s.add_runtime_dependency(%q<curb>, ["~> 0.7.12"])
65
+ s.add_runtime_dependency(%q<json>, ["~> 1.5.1"])
66
+ s.add_runtime_dependency(%q<activesupport>, [">= 0"])
67
+ else
68
+ s.add_dependency(%q<curb>, ["~> 0.7.12"])
69
+ s.add_dependency(%q<json>, ["~> 1.5.1"])
70
+ s.add_dependency(%q<activesupport>, [">= 0"])
71
+ s.add_dependency(%q<rspec>, ["~> 2.5.0"])
72
+ s.add_dependency(%q<bundler>, ["~> 1.0.0"])
73
+ s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
74
+ s.add_dependency(%q<rcov>, [">= 0"])
75
+ s.add_dependency(%q<curb>, ["~> 0.7.12"])
76
+ s.add_dependency(%q<json>, ["~> 1.5.1"])
77
+ s.add_dependency(%q<activesupport>, [">= 0"])
78
+ end
79
+ else
80
+ s.add_dependency(%q<curb>, ["~> 0.7.12"])
81
+ s.add_dependency(%q<json>, ["~> 1.5.1"])
82
+ s.add_dependency(%q<activesupport>, [">= 0"])
83
+ s.add_dependency(%q<rspec>, ["~> 2.5.0"])
84
+ s.add_dependency(%q<bundler>, ["~> 1.0.0"])
85
+ s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
86
+ s.add_dependency(%q<rcov>, [">= 0"])
87
+ s.add_dependency(%q<curb>, ["~> 0.7.12"])
88
+ s.add_dependency(%q<json>, ["~> 1.5.1"])
89
+ s.add_dependency(%q<activesupport>, [">= 0"])
90
+ end
91
+ end
92
+
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: r_hapi
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 0
10
- version: 0.1.0
9
+ - 1
10
+ version: 0.1.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Tim Stephenson of RaddOnline
@@ -192,6 +192,7 @@ files:
192
192
  - lib/r_hapi/configuration.rb
193
193
  - lib/r_hapi/lead.rb
194
194
  - lib/r_hapi/r_hapi_exception.rb
195
+ - r_hapi.gemspec
195
196
  - spec/config.yml.sample
196
197
  - spec/configuration_spec.rb
197
198
  - spec/fixtures/error.html