forked from tapajos/highrise
-
Notifications
You must be signed in to change notification settings - Fork 4
/
highrise.gemspec
33 lines (27 loc) · 1.26 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
# -*- 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"]
s.homepage = "https://github.com/peterosullivan/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'
EOT
end