Sha256: 5bea0728ca36e6e91ef91a091d20a84c6d16699f4fdf408b63ca4b88cad00b8f

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.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"]
  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

2 entries across 2 versions & 1 rubygems

Version Path
highrise-3.0.3 highrise.gemspec
highrise-3.0.1 highrise.gemspec