Sha256: 3ac3d34c6978a36b3fd1fd2ffc69502e894f976611f6c293d33a2a6ccea94e2d
Contents?: true
Size: 1.1 KB
Versions: 1
Compression:
Stored size: 1.1 KB
Contents
# -*- 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.0" s.add_development_dependency "rspec" 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"] s.email = ["marcos@tapajos.me", "kmayer@bitwrangler.com"] s.homepage = "http://github.com/tapajos/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. Configure by adding the following: require 'highrise' Highrise::Base.site = 'http://your_site.highrisehq.com/' Highrise::Base.user = 'your_api_auth_token' EOT end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
highrise-3.0.0 | highrise.gemspec |