forked from numbata/highrise
-
Notifications
You must be signed in to change notification settings - Fork 2
/
highrise.gemspec
40 lines (33 loc) · 1.57 KB
/
highrise.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "highrise/version"
Gem::Specification.new do |s|
s.name = "highrise"
s.version = Highrise::VERSION
s.platform = Gem::Platform::RUBY
s.required_rubygems_version = ">= 1.3.6"
s.add_dependency "activeresource", "~>3.0"
s.add_development_dependency "rspec", "~>2.0.1"
s.add_development_dependency "rake", "=0.8.7"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features,examples}/*`.split("\n")
s.require_paths = ["lib"]
s.authors = ["Marcos Tapaj\303\263s", "Ken Mayer", "Peter O'Sullivan", "Einar Boson"]
s.email = ["marcos@tapajos.me", "kmayer@bitwrangler.com", "peter@peterosullivan.net", "einar.boson@gmail.com"]
s.homepage = "https://github.com/einarmagnus/highrise"
s.summary = %q{Ruby wrapper around Highrise API}
s.description = <<-EOT
Based on the original API module from DHH, http://developer.37signals.com/highrise/, this
gem is a cleaned up, tested version of the same. A fork of Tapaj gem. See the homepage for added features.
Configure by adding the following:
require 'highrise'
Highrise::Base.site = 'http://your_site.highrisehq.com/'
Highrise::Base.user = 'your_api_auth_token'
# Optional. Every time you set the value of a custom field not present in this hash,
# an extra API call to highrise will be made to get the field ID.
Highrise::Base.custom_field_ids = {
"My Custom Field1" => 28734,
"My other custom field" => 12398
}
EOT
end