rogerio-augusto-highrise 2.0.2 → 2.0.3
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/Rakefile +1 -1
- data/VERSION.yml +1 -1
- data/highrise.gemspec +5 -5
- data/rogerio-augusto-highrise.gemspec +130 -0
- metadata +7 -6
data/Rakefile
CHANGED
@@ -6,7 +6,7 @@ require 'spec/rake/spectask'
|
|
6
6
|
begin
|
7
7
|
require 'jeweler'
|
8
8
|
Jeweler::Tasks.new do |gemspec|
|
9
|
-
gemspec.name = "highrise"
|
9
|
+
gemspec.name = "rogerio-augusto-highrise"
|
10
10
|
gemspec.summary = "Ruby wrapper around Highrise API"
|
11
11
|
gemspec.email = ["marcos@tapajos.me", "kmayer@bitwrangler.com"]
|
12
12
|
gemspec.homepage = "http://github.com/tapajos/highrise"
|
data/VERSION.yml
CHANGED
data/highrise.gemspec
CHANGED
@@ -4,12 +4,12 @@
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
|
-
s.name = %q{
|
8
|
-
s.version = "2.0.
|
7
|
+
s.name = %q{highrise}
|
8
|
+
s.version = "2.0.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Marcos Tapaj\303\263s", "Ken Mayer"]
|
12
|
-
s.date = %q{2010-
|
12
|
+
s.date = %q{2010-10-06}
|
13
13
|
s.description = %q{
|
14
14
|
Based on the original API module from DHH, http://developer.37signals.com/highrise/, this
|
15
15
|
gem is a cleaned up, tested version of the same. Contributors have added support for tags
|
@@ -63,8 +63,8 @@ Highrise::Base.user = 'your_api_auth_token'
|
|
63
63
|
"spec/highrise/base_spec.rb",
|
64
64
|
"spec/highrise/comment_spec.rb",
|
65
65
|
"spec/highrise/company_spec.rb",
|
66
|
-
"spec/highrise/deal_spec.rb",
|
67
66
|
"spec/highrise/deal_category_spec.rb",
|
67
|
+
"spec/highrise/deal_spec.rb",
|
68
68
|
"spec/highrise/email_spec.rb",
|
69
69
|
"spec/highrise/group_spec.rb",
|
70
70
|
"spec/highrise/kase_spec.rb",
|
@@ -91,8 +91,8 @@ Highrise::Base.user = 'your_api_auth_token'
|
|
91
91
|
"spec/highrise/base_spec.rb",
|
92
92
|
"spec/highrise/comment_spec.rb",
|
93
93
|
"spec/highrise/company_spec.rb",
|
94
|
-
"spec/highrise/deal_spec.rb",
|
95
94
|
"spec/highrise/deal_category_spec.rb",
|
95
|
+
"spec/highrise/deal_spec.rb",
|
96
96
|
"spec/highrise/email_spec.rb",
|
97
97
|
"spec/highrise/group_spec.rb",
|
98
98
|
"spec/highrise/kase_spec.rb",
|
@@ -0,0 +1,130 @@
|
|
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{rogerio-augusto-highrise}
|
8
|
+
s.version = "2.0.3"
|
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-10-06}
|
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/deal_category.rb",
|
49
|
+
"lib/highrise/email.rb",
|
50
|
+
"lib/highrise/group.rb",
|
51
|
+
"lib/highrise/kase.rb",
|
52
|
+
"lib/highrise/membership.rb",
|
53
|
+
"lib/highrise/note.rb",
|
54
|
+
"lib/highrise/pagination.rb",
|
55
|
+
"lib/highrise/person.rb",
|
56
|
+
"lib/highrise/subject.rb",
|
57
|
+
"lib/highrise/tag.rb",
|
58
|
+
"lib/highrise/taggable.rb",
|
59
|
+
"lib/highrise/task.rb",
|
60
|
+
"lib/highrise/user.rb",
|
61
|
+
"rogerio-augusto-highrise.gemspec",
|
62
|
+
"spec/cachable_spec.rb",
|
63
|
+
"spec/highrise/account_spec.rb",
|
64
|
+
"spec/highrise/base_spec.rb",
|
65
|
+
"spec/highrise/comment_spec.rb",
|
66
|
+
"spec/highrise/company_spec.rb",
|
67
|
+
"spec/highrise/deal_category_spec.rb",
|
68
|
+
"spec/highrise/deal_spec.rb",
|
69
|
+
"spec/highrise/email_spec.rb",
|
70
|
+
"spec/highrise/group_spec.rb",
|
71
|
+
"spec/highrise/kase_spec.rb",
|
72
|
+
"spec/highrise/membership_spec.rb",
|
73
|
+
"spec/highrise/note_spec.rb",
|
74
|
+
"spec/highrise/pagination_spec.rb",
|
75
|
+
"spec/highrise/person_spec.rb",
|
76
|
+
"spec/highrise/subject_spec.rb",
|
77
|
+
"spec/highrise/tag_spec.rb",
|
78
|
+
"spec/highrise/task_spec.rb",
|
79
|
+
"spec/highrise/user_spec.rb",
|
80
|
+
"spec/spec.opts",
|
81
|
+
"spec/spec_helper.rb",
|
82
|
+
"uninstall.rb"
|
83
|
+
]
|
84
|
+
s.homepage = %q{http://github.com/tapajos/highrise}
|
85
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
86
|
+
s.require_paths = ["lib"]
|
87
|
+
s.rubygems_version = %q{1.3.7}
|
88
|
+
s.summary = %q{Ruby wrapper around Highrise API}
|
89
|
+
s.test_files = [
|
90
|
+
"spec/cachable_spec.rb",
|
91
|
+
"spec/highrise/account_spec.rb",
|
92
|
+
"spec/highrise/base_spec.rb",
|
93
|
+
"spec/highrise/comment_spec.rb",
|
94
|
+
"spec/highrise/company_spec.rb",
|
95
|
+
"spec/highrise/deal_category_spec.rb",
|
96
|
+
"spec/highrise/deal_spec.rb",
|
97
|
+
"spec/highrise/email_spec.rb",
|
98
|
+
"spec/highrise/group_spec.rb",
|
99
|
+
"spec/highrise/kase_spec.rb",
|
100
|
+
"spec/highrise/membership_spec.rb",
|
101
|
+
"spec/highrise/note_spec.rb",
|
102
|
+
"spec/highrise/pagination_spec.rb",
|
103
|
+
"spec/highrise/person_spec.rb",
|
104
|
+
"spec/highrise/subject_spec.rb",
|
105
|
+
"spec/highrise/tag_spec.rb",
|
106
|
+
"spec/highrise/task_spec.rb",
|
107
|
+
"spec/highrise/user_spec.rb",
|
108
|
+
"spec/spec_helper.rb",
|
109
|
+
"examples/config_initializers_highrise.rb",
|
110
|
+
"examples/extending.rb",
|
111
|
+
"examples/sample.rb"
|
112
|
+
]
|
113
|
+
|
114
|
+
if s.respond_to? :specification_version then
|
115
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
116
|
+
s.specification_version = 3
|
117
|
+
|
118
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
119
|
+
s.add_runtime_dependency(%q<activeresource>, [">= 2.1"])
|
120
|
+
s.add_runtime_dependency(%q<activesupport>, [">= 2.1"])
|
121
|
+
else
|
122
|
+
s.add_dependency(%q<activeresource>, [">= 2.1"])
|
123
|
+
s.add_dependency(%q<activesupport>, [">= 2.1"])
|
124
|
+
end
|
125
|
+
else
|
126
|
+
s.add_dependency(%q<activeresource>, [">= 2.1"])
|
127
|
+
s.add_dependency(%q<activesupport>, [">= 2.1"])
|
128
|
+
end
|
129
|
+
end
|
130
|
+
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rogerio-augusto-highrise
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 9
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 2
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 2.0.
|
9
|
+
- 3
|
10
|
+
version: 2.0.3
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- "Marcos Tapaj\xC3\xB3s"
|
@@ -16,7 +16,7 @@ autorequire:
|
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
18
|
|
19
|
-
date: 2010-
|
19
|
+
date: 2010-10-06 00:00:00 -03:00
|
20
20
|
default_executable:
|
21
21
|
dependencies:
|
22
22
|
- !ruby/object:Gem::Dependency
|
@@ -99,13 +99,14 @@ files:
|
|
99
99
|
- lib/highrise/taggable.rb
|
100
100
|
- lib/highrise/task.rb
|
101
101
|
- lib/highrise/user.rb
|
102
|
+
- rogerio-augusto-highrise.gemspec
|
102
103
|
- spec/cachable_spec.rb
|
103
104
|
- spec/highrise/account_spec.rb
|
104
105
|
- spec/highrise/base_spec.rb
|
105
106
|
- spec/highrise/comment_spec.rb
|
106
107
|
- spec/highrise/company_spec.rb
|
107
|
-
- spec/highrise/deal_spec.rb
|
108
108
|
- spec/highrise/deal_category_spec.rb
|
109
|
+
- spec/highrise/deal_spec.rb
|
109
110
|
- spec/highrise/email_spec.rb
|
110
111
|
- spec/highrise/group_spec.rb
|
111
112
|
- spec/highrise/kase_spec.rb
|
@@ -160,8 +161,8 @@ test_files:
|
|
160
161
|
- spec/highrise/base_spec.rb
|
161
162
|
- spec/highrise/comment_spec.rb
|
162
163
|
- spec/highrise/company_spec.rb
|
163
|
-
- spec/highrise/deal_spec.rb
|
164
164
|
- spec/highrise/deal_category_spec.rb
|
165
|
+
- spec/highrise/deal_spec.rb
|
165
166
|
- spec/highrise/email_spec.rb
|
166
167
|
- spec/highrise/group_spec.rb
|
167
168
|
- spec/highrise/kase_spec.rb
|