Sha256: b6183ddfbe9eff5c0ea529bb858b8557b203333d908370f501068e0995c9ae9d
Contents?: true
Size: 1.15 KB
Versions: 2
Compression:
Stored size: 1.15 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.2.13" s.add_development_dependency "rspec" s.add_development_dependency "rake" 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/lucasmartins/highrise" s.summary = "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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
highrise-3.1.6 | highrise.gemspec.erb |
highrise-3.1.5 | highrise.gemspec.erb |