highrise 2.0.0 → 2.0.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.
- data/.gitignore +1 -1
- data/Rakefile +1 -8
- data/VERSION.yml +1 -1
- data/highrise.gemspec +126 -0
- data/lib/highrise.rb +1 -0
- data/spec/spec.opts +1 -2
- metadata +14 -4
data/.gitignore
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
pkg/**
|
|
2
|
-
|
|
2
|
+
.rvmrc
|
data/Rakefile
CHANGED
|
@@ -1,14 +1,7 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
require 'rubygems'
|
|
5
|
-
require 'rake/rdoctask'
|
|
6
|
-
require 'rake/testtask'
|
|
3
|
+
gem 'rspec', ">= 1.3.0"
|
|
7
4
|
require 'spec/rake/spectask'
|
|
8
|
-
require "date"
|
|
9
|
-
require "fileutils"
|
|
10
|
-
require "rubygems"
|
|
11
|
-
require "rake/gempackagetask"
|
|
12
5
|
|
|
13
6
|
begin
|
|
14
7
|
require 'jeweler'
|
data/VERSION.yml
CHANGED
data/highrise.gemspec
ADDED
|
@@ -0,0 +1,126 @@
|
|
|
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{highrise}
|
|
8
|
+
s.version = "2.0.1"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Marcos Tapaj\303\263s", "Ken Mayer"]
|
|
12
|
+
s.date = %q{2010-08-25}
|
|
13
|
+
s.description = %q{
|
|
14
|
+
Based on the original API module from DHH, http://developer.37signals.com/highrise/, this
|
|
15
|
+
gem is a cleaned up, tested version of the same. Contributors have added support for tags
|
|
16
|
+
which are not supported by the API directly
|
|
17
|
+
|
|
18
|
+
Configure by adding the following:
|
|
19
|
+
|
|
20
|
+
require 'highrise'
|
|
21
|
+
Highrise::Base.site = 'http://your_site.highrisehq.com/'
|
|
22
|
+
Highrise::Base.user = 'your_api_auth_token'
|
|
23
|
+
}
|
|
24
|
+
s.email = ["marcos@tapajos.me", "kmayer@bitwrangler.com"]
|
|
25
|
+
s.extra_rdoc_files = [
|
|
26
|
+
"README.mkdn"
|
|
27
|
+
]
|
|
28
|
+
s.files = [
|
|
29
|
+
".gitignore",
|
|
30
|
+
"CHANGELOG",
|
|
31
|
+
"MIT-LICENSE",
|
|
32
|
+
"README.mkdn",
|
|
33
|
+
"Rakefile",
|
|
34
|
+
"VERSION.yml",
|
|
35
|
+
"autotest/discover.rb",
|
|
36
|
+
"examples/config_initializers_highrise.rb",
|
|
37
|
+
"examples/extending.rb",
|
|
38
|
+
"examples/sample.rb",
|
|
39
|
+
"highrise.gemspec",
|
|
40
|
+
"install.rb",
|
|
41
|
+
"lib/cachable.rb",
|
|
42
|
+
"lib/highrise.rb",
|
|
43
|
+
"lib/highrise/account.rb",
|
|
44
|
+
"lib/highrise/base.rb",
|
|
45
|
+
"lib/highrise/comment.rb",
|
|
46
|
+
"lib/highrise/company.rb",
|
|
47
|
+
"lib/highrise/deal.rb",
|
|
48
|
+
"lib/highrise/email.rb",
|
|
49
|
+
"lib/highrise/group.rb",
|
|
50
|
+
"lib/highrise/kase.rb",
|
|
51
|
+
"lib/highrise/membership.rb",
|
|
52
|
+
"lib/highrise/note.rb",
|
|
53
|
+
"lib/highrise/pagination.rb",
|
|
54
|
+
"lib/highrise/person.rb",
|
|
55
|
+
"lib/highrise/subject.rb",
|
|
56
|
+
"lib/highrise/tag.rb",
|
|
57
|
+
"lib/highrise/taggable.rb",
|
|
58
|
+
"lib/highrise/task.rb",
|
|
59
|
+
"lib/highrise/user.rb",
|
|
60
|
+
"spec/cachable_spec.rb",
|
|
61
|
+
"spec/highrise/account_spec.rb",
|
|
62
|
+
"spec/highrise/base_spec.rb",
|
|
63
|
+
"spec/highrise/comment_spec.rb",
|
|
64
|
+
"spec/highrise/company_spec.rb",
|
|
65
|
+
"spec/highrise/deal_spec.rb",
|
|
66
|
+
"spec/highrise/email_spec.rb",
|
|
67
|
+
"spec/highrise/group_spec.rb",
|
|
68
|
+
"spec/highrise/kase_spec.rb",
|
|
69
|
+
"spec/highrise/membership_spec.rb",
|
|
70
|
+
"spec/highrise/note_spec.rb",
|
|
71
|
+
"spec/highrise/pagination_spec.rb",
|
|
72
|
+
"spec/highrise/person_spec.rb",
|
|
73
|
+
"spec/highrise/subject_spec.rb",
|
|
74
|
+
"spec/highrise/tag_spec.rb",
|
|
75
|
+
"spec/highrise/task_spec.rb",
|
|
76
|
+
"spec/highrise/user_spec.rb",
|
|
77
|
+
"spec/spec.opts",
|
|
78
|
+
"spec/spec_helper.rb",
|
|
79
|
+
"uninstall.rb"
|
|
80
|
+
]
|
|
81
|
+
s.homepage = %q{http://github.com/tapajos/highrise}
|
|
82
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
83
|
+
s.require_paths = ["lib"]
|
|
84
|
+
s.rubygems_version = %q{1.3.7}
|
|
85
|
+
s.summary = %q{Ruby wrapper around Highrise API}
|
|
86
|
+
s.test_files = [
|
|
87
|
+
"spec/cachable_spec.rb",
|
|
88
|
+
"spec/highrise/account_spec.rb",
|
|
89
|
+
"spec/highrise/base_spec.rb",
|
|
90
|
+
"spec/highrise/comment_spec.rb",
|
|
91
|
+
"spec/highrise/company_spec.rb",
|
|
92
|
+
"spec/highrise/deal_spec.rb",
|
|
93
|
+
"spec/highrise/email_spec.rb",
|
|
94
|
+
"spec/highrise/group_spec.rb",
|
|
95
|
+
"spec/highrise/kase_spec.rb",
|
|
96
|
+
"spec/highrise/membership_spec.rb",
|
|
97
|
+
"spec/highrise/note_spec.rb",
|
|
98
|
+
"spec/highrise/pagination_spec.rb",
|
|
99
|
+
"spec/highrise/person_spec.rb",
|
|
100
|
+
"spec/highrise/subject_spec.rb",
|
|
101
|
+
"spec/highrise/tag_spec.rb",
|
|
102
|
+
"spec/highrise/task_spec.rb",
|
|
103
|
+
"spec/highrise/user_spec.rb",
|
|
104
|
+
"spec/spec_helper.rb",
|
|
105
|
+
"examples/config_initializers_highrise.rb",
|
|
106
|
+
"examples/extending.rb",
|
|
107
|
+
"examples/sample.rb"
|
|
108
|
+
]
|
|
109
|
+
|
|
110
|
+
if s.respond_to? :specification_version then
|
|
111
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
112
|
+
s.specification_version = 3
|
|
113
|
+
|
|
114
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
115
|
+
s.add_runtime_dependency(%q<activeresource>, [">= 2.1"])
|
|
116
|
+
s.add_runtime_dependency(%q<activesupport>, [">= 2.1"])
|
|
117
|
+
else
|
|
118
|
+
s.add_dependency(%q<activeresource>, [">= 2.1"])
|
|
119
|
+
s.add_dependency(%q<activesupport>, [">= 2.1"])
|
|
120
|
+
end
|
|
121
|
+
else
|
|
122
|
+
s.add_dependency(%q<activeresource>, [">= 2.1"])
|
|
123
|
+
s.add_dependency(%q<activesupport>, [">= 2.1"])
|
|
124
|
+
end
|
|
125
|
+
end
|
|
126
|
+
|
data/lib/highrise.rb
CHANGED
data/spec/spec.opts
CHANGED
metadata
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: highrise
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
+
hash: 13
|
|
4
5
|
prerelease: false
|
|
5
6
|
segments:
|
|
6
7
|
- 2
|
|
7
8
|
- 0
|
|
8
|
-
-
|
|
9
|
-
version: 2.0.
|
|
9
|
+
- 1
|
|
10
|
+
version: 2.0.1
|
|
10
11
|
platform: ruby
|
|
11
12
|
authors:
|
|
12
13
|
- "Marcos Tapaj\xC3\xB3s"
|
|
@@ -15,16 +16,18 @@ autorequire:
|
|
|
15
16
|
bindir: bin
|
|
16
17
|
cert_chain: []
|
|
17
18
|
|
|
18
|
-
date: 2010-
|
|
19
|
+
date: 2010-08-25 00:00:00 -03:00
|
|
19
20
|
default_executable:
|
|
20
21
|
dependencies:
|
|
21
22
|
- !ruby/object:Gem::Dependency
|
|
22
23
|
name: activeresource
|
|
23
24
|
prerelease: false
|
|
24
25
|
requirement: &id001 !ruby/object:Gem::Requirement
|
|
26
|
+
none: false
|
|
25
27
|
requirements:
|
|
26
28
|
- - ">="
|
|
27
29
|
- !ruby/object:Gem::Version
|
|
30
|
+
hash: 1
|
|
28
31
|
segments:
|
|
29
32
|
- 2
|
|
30
33
|
- 1
|
|
@@ -35,9 +38,11 @@ dependencies:
|
|
|
35
38
|
name: activesupport
|
|
36
39
|
prerelease: false
|
|
37
40
|
requirement: &id002 !ruby/object:Gem::Requirement
|
|
41
|
+
none: false
|
|
38
42
|
requirements:
|
|
39
43
|
- - ">="
|
|
40
44
|
- !ruby/object:Gem::Version
|
|
45
|
+
hash: 1
|
|
41
46
|
segments:
|
|
42
47
|
- 2
|
|
43
48
|
- 1
|
|
@@ -72,6 +77,7 @@ files:
|
|
|
72
77
|
- examples/config_initializers_highrise.rb
|
|
73
78
|
- examples/extending.rb
|
|
74
79
|
- examples/sample.rb
|
|
80
|
+
- highrise.gemspec
|
|
75
81
|
- install.rb
|
|
76
82
|
- lib/cachable.rb
|
|
77
83
|
- lib/highrise.rb
|
|
@@ -122,23 +128,27 @@ rdoc_options:
|
|
|
122
128
|
require_paths:
|
|
123
129
|
- lib
|
|
124
130
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
131
|
+
none: false
|
|
125
132
|
requirements:
|
|
126
133
|
- - ">="
|
|
127
134
|
- !ruby/object:Gem::Version
|
|
135
|
+
hash: 3
|
|
128
136
|
segments:
|
|
129
137
|
- 0
|
|
130
138
|
version: "0"
|
|
131
139
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
140
|
+
none: false
|
|
132
141
|
requirements:
|
|
133
142
|
- - ">="
|
|
134
143
|
- !ruby/object:Gem::Version
|
|
144
|
+
hash: 3
|
|
135
145
|
segments:
|
|
136
146
|
- 0
|
|
137
147
|
version: "0"
|
|
138
148
|
requirements: []
|
|
139
149
|
|
|
140
150
|
rubyforge_project:
|
|
141
|
-
rubygems_version: 1.3.
|
|
151
|
+
rubygems_version: 1.3.7
|
|
142
152
|
signing_key:
|
|
143
153
|
specification_version: 3
|
|
144
154
|
summary: Ruby wrapper around Highrise API
|