highrise 3.1.1 → 3.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data.tar.gz.sig +0 -0
- data/Gemfile.lock +13 -40
- data/Rakefile +19 -1
- data/highrise.gemspec +4 -4
- data/highrise.gemspec.erb +35 -0
- data/lib/highrise/person.rb +10 -6
- data/lib/highrise/version.rb +1 -1
- data/spec/highrise/person_spec.rb +17 -3
- metadata +56 -37
- metadata.gz.sig +3 -3
- checksums.yaml +0 -7
- checksums.yaml.gz.sig +0 -1
    
        data.tar.gz.sig
    CHANGED
    
    | Binary file | 
    
        data/Gemfile.lock
    CHANGED
    
    | @@ -1,48 +1,25 @@ | |
| 1 1 | 
             
            PATH
         | 
| 2 2 | 
             
              remote: .
         | 
| 3 3 | 
             
              specs:
         | 
| 4 | 
            -
                highrise (3.1. | 
| 5 | 
            -
                  activeresource (~>  | 
| 4 | 
            +
                highrise (3.1.2)
         | 
| 5 | 
            +
                  activeresource (~> 3.2.13)
         | 
| 6 6 |  | 
| 7 7 | 
             
            GEM
         | 
| 8 8 | 
             
              remote: https://rubygems.org/
         | 
| 9 9 | 
             
              specs:
         | 
| 10 | 
            -
                 | 
| 11 | 
            -
                  activesupport (=  | 
| 12 | 
            -
                  builder (~> 3. | 
| 13 | 
            -
             | 
| 14 | 
            -
                   | 
| 15 | 
            -
                   | 
| 16 | 
            -
                 | 
| 17 | 
            -
                  activesupport (= 4.0.0)
         | 
| 18 | 
            -
                  builder (~> 3.1.0)
         | 
| 19 | 
            -
                activeresource (4.0.0)
         | 
| 20 | 
            -
                  activemodel (~> 4.0)
         | 
| 21 | 
            -
                  activesupport (~> 4.0)
         | 
| 22 | 
            -
                  rails-observers (~> 0.1.1)
         | 
| 23 | 
            -
                activesupport (4.0.0)
         | 
| 10 | 
            +
                activemodel (3.2.14)
         | 
| 11 | 
            +
                  activesupport (= 3.2.14)
         | 
| 12 | 
            +
                  builder (~> 3.0.0)
         | 
| 13 | 
            +
                activeresource (3.2.14)
         | 
| 14 | 
            +
                  activemodel (= 3.2.14)
         | 
| 15 | 
            +
                  activesupport (= 3.2.14)
         | 
| 16 | 
            +
                activesupport (3.2.14)
         | 
| 24 17 | 
             
                  i18n (~> 0.6, >= 0.6.4)
         | 
| 25 | 
            -
                   | 
| 26 | 
            -
             | 
| 27 | 
            -
                  thread_safe (~> 0.1)
         | 
| 28 | 
            -
                  tzinfo (~> 0.3.37)
         | 
| 29 | 
            -
                atomic (1.1.9)
         | 
| 30 | 
            -
                builder (3.1.4)
         | 
| 18 | 
            +
                  multi_json (~> 1.0)
         | 
| 19 | 
            +
                builder (3.0.4)
         | 
| 31 20 | 
             
                diff-lcs (1.2.1)
         | 
| 32 | 
            -
                 | 
| 33 | 
            -
                 | 
| 34 | 
            -
                minitest (4.7.5)
         | 
| 35 | 
            -
                multi_json (1.7.7)
         | 
| 36 | 
            -
                rack (1.5.2)
         | 
| 37 | 
            -
                rack-test (0.6.2)
         | 
| 38 | 
            -
                  rack (>= 1.0)
         | 
| 39 | 
            -
                rails-observers (0.1.1)
         | 
| 40 | 
            -
                  railties (~> 4.0.0.beta)
         | 
| 41 | 
            -
                railties (4.0.0)
         | 
| 42 | 
            -
                  actionpack (= 4.0.0)
         | 
| 43 | 
            -
                  activesupport (= 4.0.0)
         | 
| 44 | 
            -
                  rake (>= 0.8.7)
         | 
| 45 | 
            -
                  thor (>= 0.18.1, < 2.0)
         | 
| 21 | 
            +
                i18n (0.6.5)
         | 
| 22 | 
            +
                multi_json (1.8.0)
         | 
| 46 23 | 
             
                rake (10.0.3)
         | 
| 47 24 | 
             
                rspec (2.13.0)
         | 
| 48 25 | 
             
                  rspec-core (~> 2.13.0)
         | 
| @@ -52,10 +29,6 @@ GEM | |
| 52 29 | 
             
                rspec-expectations (2.13.0)
         | 
| 53 30 | 
             
                  diff-lcs (>= 1.1.3, < 2.0)
         | 
| 54 31 | 
             
                rspec-mocks (2.13.0)
         | 
| 55 | 
            -
                thor (0.18.1)
         | 
| 56 | 
            -
                thread_safe (0.1.0)
         | 
| 57 | 
            -
                  atomic
         | 
| 58 | 
            -
                tzinfo (0.3.37)
         | 
| 59 32 |  | 
| 60 33 | 
             
            PLATFORMS
         | 
| 61 34 | 
             
              java
         | 
    
        data/Rakefile
    CHANGED
    
    | @@ -1,8 +1,9 @@ | |
| 1 1 | 
             
            # encoding: utf-8
         | 
| 2 2 | 
             
            require 'bundler'
         | 
| 3 | 
            -
            Bundler::GemHelper.install_tasks
         | 
| 3 | 
            +
            Bundler::GemHelper.install_tasks if File.exist? 'highrise.gemspec'
         | 
| 4 4 |  | 
| 5 5 | 
             
            require 'rspec/core/rake_task'
         | 
| 6 | 
            +
            require 'erb'
         | 
| 6 7 |  | 
| 7 8 | 
             
            desc 'Default: run unit tests.'
         | 
| 8 9 | 
             
            task :default => :spec
         | 
| @@ -12,3 +13,20 @@ RSpec::Core::RakeTask.new do |t| | |
| 12 13 | 
             
              t.pattern = 'spec/**/*_spec.rb'
         | 
| 13 14 | 
             
              t.rspec_opts = ["-c", "-f progress"]
         | 
| 14 15 | 
             
            end
         | 
| 16 | 
            +
             | 
| 17 | 
            +
            desc 'Generate gemspec'
         | 
| 18 | 
            +
            task :gemspec do
         | 
| 19 | 
            +
            	gemspec = 'highrise.gemspec'
         | 
| 20 | 
            +
            	
         | 
| 21 | 
            +
            	#FileUtils.rm gemspec if File.exist? gemspec
         | 
| 22 | 
            +
            	template = ERB.new File.new("#{gemspec}.erb").read
         | 
| 23 | 
            +
            	
         | 
| 24 | 
            +
            	begin
         | 
| 25 | 
            +
            		gemspec_file = File.open(gemspec,'w')
         | 
| 26 | 
            +
            		gemspec_file.write template.result(binding)	
         | 
| 27 | 
            +
            	ensure
         | 
| 28 | 
            +
            		gemspec_file.close
         | 
| 29 | 
            +
            	end
         | 
| 30 | 
            +
            	
         | 
| 31 | 
            +
            	puts "done!"
         | 
| 32 | 
            +
            end
         | 
    
        data/highrise.gemspec
    CHANGED
    
    | @@ -8,18 +8,18 @@ Gem::Specification.new do |s| | |
| 8 8 | 
             
              s.platform    = Gem::Platform::RUBY
         | 
| 9 9 |  | 
| 10 10 | 
             
              s.required_rubygems_version = ">= 1.3.6"
         | 
| 11 | 
            -
              s.add_dependency "activeresource", "~>  | 
| 11 | 
            +
              s.add_dependency "activeresource", "~> 3.2.13"
         | 
| 12 12 | 
             
              s.add_development_dependency "rspec"
         | 
| 13 13 | 
             
              s.add_development_dependency "rake"
         | 
| 14 14 |  | 
| 15 | 
            -
              s.files         =  | 
| 16 | 
            -
              s.test_files    =  | 
| 15 | 
            +
              s.files         = [".gitignore", ".travis.yml", "Gemfile", "Gemfile.lock", "MIT-LICENSE", "README.md", "Rakefile", "autotest/discover.rb", "certs/gem-public_cert.pem", "examples/config_initializers_highrise.rb", "examples/extending.rb", "examples/sample.rb", "highrise.gemspec", "highrise.gemspec.erb", "lib/highrise.rb", "lib/highrise/account.rb", "lib/highrise/base.rb", "lib/highrise/comment.rb", "lib/highrise/company.rb", "lib/highrise/deal.rb", "lib/highrise/deal_category.rb", "lib/highrise/email.rb", "lib/highrise/group.rb", "lib/highrise/kase.rb", "lib/highrise/membership.rb", "lib/highrise/note.rb", "lib/highrise/pagination.rb", "lib/highrise/party.rb", "lib/highrise/person.rb", "lib/highrise/recording.rb", "lib/highrise/searchable.rb", "lib/highrise/subject.rb", "lib/highrise/tag.rb", "lib/highrise/taggable.rb", "lib/highrise/task.rb", "lib/highrise/task_category.rb", "lib/highrise/user.rb", "lib/highrise/version.rb", "spec/highrise/account_spec.rb", "spec/highrise/base_spec.rb", "spec/highrise/comment_spec.rb", "spec/highrise/company_spec.rb", "spec/highrise/deal_category_spec.rb", "spec/highrise/deal_spec.rb", "spec/highrise/email_spec.rb", "spec/highrise/group_spec.rb", "spec/highrise/kase_spec.rb", "spec/highrise/membership_spec.rb", "spec/highrise/note_spec.rb", "spec/highrise/pagination_behavior.rb", "spec/highrise/pagination_spec.rb", "spec/highrise/party_spec.rb", "spec/highrise/person_spec.rb", "spec/highrise/recording_spec.rb", "spec/highrise/searchable_behavior.rb", "spec/highrise/searchable_spec.rb", "spec/highrise/subject_spec.rb", "spec/highrise/tag_spec.rb", "spec/highrise/taggable_behavior.rb", "spec/highrise/taggable_spec.rb", "spec/highrise/task_category_spec.rb", "spec/highrise/task_spec.rb", "spec/highrise/user_spec.rb", "spec/spec_helper.rb"]
         | 
| 16 | 
            +
              s.test_files    = ["examples/config_initializers_highrise.rb", "examples/extending.rb", "examples/sample.rb", "spec/highrise/account_spec.rb", "spec/highrise/base_spec.rb", "spec/highrise/comment_spec.rb", "spec/highrise/company_spec.rb", "spec/highrise/deal_category_spec.rb", "spec/highrise/deal_spec.rb", "spec/highrise/email_spec.rb", "spec/highrise/group_spec.rb", "spec/highrise/kase_spec.rb", "spec/highrise/membership_spec.rb", "spec/highrise/note_spec.rb", "spec/highrise/pagination_behavior.rb", "spec/highrise/pagination_spec.rb", "spec/highrise/party_spec.rb", "spec/highrise/person_spec.rb", "spec/highrise/recording_spec.rb", "spec/highrise/searchable_behavior.rb", "spec/highrise/searchable_spec.rb", "spec/highrise/subject_spec.rb", "spec/highrise/tag_spec.rb", "spec/highrise/taggable_behavior.rb", "spec/highrise/taggable_spec.rb", "spec/highrise/task_category_spec.rb", "spec/highrise/task_spec.rb", "spec/highrise/user_spec.rb", "spec/spec_helper.rb"]
         | 
| 17 17 | 
             
              s.require_paths = ["lib"]
         | 
| 18 18 |  | 
| 19 19 | 
             
              s.authors       = ["Marcos Tapaj\303\263s", "Ken Mayer"]
         | 
| 20 20 | 
             
              s.email         = ["marcos@tapajos.me", "kmayer@bitwrangler.com"]
         | 
| 21 21 | 
             
              s.homepage      = "http://github.com/lucasmartins/highrise"
         | 
| 22 | 
            -
              s.summary       =  | 
| 22 | 
            +
              s.summary       = "Ruby wrapper around Highrise API"
         | 
| 23 23 | 
             
              s.description   = <<-EOT
         | 
| 24 24 | 
             
                Based on the original API module from DHH, http://developer.37signals.com/highrise/, this
         | 
| 25 25 | 
             
                gem is a cleaned up, tested version of the same. 
         | 
| @@ -0,0 +1,35 @@ | |
| 1 | 
            +
            # -*- encoding: utf-8 -*-
         | 
| 2 | 
            +
            $:.push File.expand_path("../lib", __FILE__)
         | 
| 3 | 
            +
            require "highrise/version"
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            Gem::Specification.new do |s|
         | 
| 6 | 
            +
              s.name        = "highrise"
         | 
| 7 | 
            +
              s.version     = Highrise::VERSION
         | 
| 8 | 
            +
              s.platform    = Gem::Platform::RUBY
         | 
| 9 | 
            +
             | 
| 10 | 
            +
              s.required_rubygems_version = ">= 1.3.6"
         | 
| 11 | 
            +
              s.add_dependency "activeresource", "~> 3.2.13"
         | 
| 12 | 
            +
              s.add_development_dependency "rspec"
         | 
| 13 | 
            +
              s.add_development_dependency "rake"
         | 
| 14 | 
            +
             | 
| 15 | 
            +
              s.files         = <%= `git ls-files`.split("\n") %>
         | 
| 16 | 
            +
              s.test_files    = <%= `git ls-files -- {test,spec,features,examples}/*`.split("\n") %>
         | 
| 17 | 
            +
              s.require_paths = ["lib"]
         | 
| 18 | 
            +
             | 
| 19 | 
            +
              s.authors       = ["Marcos Tapaj\303\263s", "Ken Mayer"]
         | 
| 20 | 
            +
              s.email         = ["marcos@tapajos.me", "kmayer@bitwrangler.com"]
         | 
| 21 | 
            +
              s.homepage      = "http://github.com/lucasmartins/highrise"
         | 
| 22 | 
            +
              s.summary       = "Ruby wrapper around Highrise API"
         | 
| 23 | 
            +
              s.description   = <<-EOT
         | 
| 24 | 
            +
                Based on the original API module from DHH, http://developer.37signals.com/highrise/, this
         | 
| 25 | 
            +
                gem is a cleaned up, tested version of the same. 
         | 
| 26 | 
            +
             | 
| 27 | 
            +
                Configure by adding the following:
         | 
| 28 | 
            +
             | 
| 29 | 
            +
                require 'highrise'
         | 
| 30 | 
            +
                Highrise::Base.site = 'http://your_site.highrisehq.com/'
         | 
| 31 | 
            +
                Highrise::Base.user = 'your_api_auth_token'
         | 
| 32 | 
            +
              EOT
         | 
| 33 | 
            +
              s.signing_key = "#{File.expand_path('~')}/.gem-private_key.pem" if File.exists?("#{File.expand_path('~')}/.gem-private_key.pem")
         | 
| 34 | 
            +
              s.cert_chain  = ['certs/gem-public_cert.pem']
         | 
| 35 | 
            +
            end
         | 
    
        data/lib/highrise/person.rb
    CHANGED
    
    | @@ -3,25 +3,29 @@ module Highrise | |
| 3 3 | 
             
                include Pagination
         | 
| 4 4 | 
             
                include Taggable
         | 
| 5 5 | 
             
                include Searchable
         | 
| 6 | 
            -
             | 
| 6 | 
            +
             | 
| 7 | 
            +
                def tags
         | 
| 8 | 
            +
                  self.attributes.has_key?("tags") ? self.attributes["tags"] : super
         | 
| 9 | 
            +
                end
         | 
| 10 | 
            +
             | 
| 7 11 | 
             
                def company
         | 
| 8 12 | 
             
                  Company.find(company_id) if company_id
         | 
| 9 13 | 
             
                end
         | 
| 10 | 
            -
             | 
| 14 | 
            +
             | 
| 11 15 | 
             
                def name
         | 
| 12 16 | 
             
                  "#{first_name rescue ''} #{last_name rescue ''}".strip
         | 
| 13 17 | 
             
                end
         | 
| 14 | 
            -
             | 
| 18 | 
            +
             | 
| 15 19 | 
             
                def address
         | 
| 16 20 | 
             
                  contact_data.addresses.first
         | 
| 17 21 | 
             
                end
         | 
| 18 | 
            -
             | 
| 22 | 
            +
             | 
| 19 23 | 
             
                def web_address
         | 
| 20 24 | 
             
                  contact_data.web_addresses.first
         | 
| 21 25 | 
             
                end
         | 
| 22 | 
            -
             | 
| 26 | 
            +
             | 
| 23 27 | 
             
                def label
         | 
| 24 28 | 
             
                  'Party'
         | 
| 25 29 | 
             
                end
         | 
| 26 30 | 
             
              end
         | 
| 27 | 
            -
            end
         | 
| 31 | 
            +
            end
         | 
    
        data/lib/highrise/version.rb
    CHANGED
    
    
| @@ -3,7 +3,7 @@ require 'spec_helper' | |
| 3 3 |  | 
| 4 4 | 
             
            describe Highrise::Person do
         | 
| 5 5 | 
             
              subject { Highrise::Person.new(:id => 1) }
         | 
| 6 | 
            -
             | 
| 6 | 
            +
             | 
| 7 7 | 
             
              it { should be_a_kind_of Highrise::Subject }
         | 
| 8 8 |  | 
| 9 9 | 
             
              it_should_behave_like "a paginated class"
         | 
| @@ -22,12 +22,26 @@ describe Highrise::Person do | |
| 22 22 | 
             
                  subject.company.should == "company"
         | 
| 23 23 | 
             
                end
         | 
| 24 24 | 
             
              end
         | 
| 25 | 
            -
             | 
| 25 | 
            +
             | 
| 26 26 | 
             
              it "#name" do
         | 
| 27 27 | 
             
                subject.should_receive(:first_name).and_return("Marcos")
         | 
| 28 28 | 
             
                subject.should_receive(:last_name).and_return("Tapajós     ")
         | 
| 29 29 | 
             
                subject.name.should == "Marcos Tapajós"
         | 
| 30 30 | 
             
              end
         | 
| 31 | 
            -
             | 
| 31 | 
            +
             | 
| 32 | 
            +
              describe "#tags" do
         | 
| 33 | 
            +
                before(:each) do
         | 
| 34 | 
            +
                  (@tags = []).tap do
         | 
| 35 | 
            +
                    @tags << {'id' => "414578", 'name' => "cliente"}
         | 
| 36 | 
            +
                    @tags << {'id' => "414580", 'name' => "ged"}
         | 
| 37 | 
            +
                    @tags << {'id' => "414579", 'name' => "iepc"}
         | 
| 38 | 
            +
                  end
         | 
| 39 | 
            +
                  subject.attributes["tags"] = @tags
         | 
| 40 | 
            +
                end
         | 
| 41 | 
            +
                it {
         | 
| 42 | 
            +
                  subject.tags.should == @tags
         | 
| 43 | 
            +
                }
         | 
| 44 | 
            +
              end
         | 
| 45 | 
            +
             | 
| 32 46 | 
             
              it { subject.label.should == 'Party' }
         | 
| 33 47 | 
             
            end
         | 
    
        metadata
    CHANGED
    
    | @@ -1,7 +1,8 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: highrise
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 3.1. | 
| 4 | 
            +
              version: 3.1.2
         | 
| 5 | 
            +
              prerelease: 
         | 
| 5 6 | 
             
            platform: ruby
         | 
| 6 7 | 
             
            authors:
         | 
| 7 8 | 
             
            - Marcos Tapajós
         | 
| @@ -9,73 +10,86 @@ authors: | |
| 9 10 | 
             
            autorequire: 
         | 
| 10 11 | 
             
            bindir: bin
         | 
| 11 12 | 
             
            cert_chain:
         | 
| 12 | 
            -
            -  | 
| 13 | 
            -
               | 
| 14 | 
            -
               | 
| 15 | 
            -
               | 
| 16 | 
            -
               | 
| 17 | 
            -
               | 
| 18 | 
            -
               | 
| 19 | 
            -
               | 
| 20 | 
            -
               | 
| 21 | 
            -
               | 
| 22 | 
            -
               | 
| 23 | 
            -
               | 
| 24 | 
            -
               | 
| 25 | 
            -
               | 
| 26 | 
            -
               | 
| 27 | 
            -
               | 
| 28 | 
            -
               | 
| 29 | 
            -
               | 
| 30 | 
            -
               | 
| 31 | 
            -
               | 
| 32 | 
            -
               | 
| 33 | 
            -
               | 
| 34 | 
            -
             | 
| 13 | 
            +
            - !binary |-
         | 
| 14 | 
            +
              LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURiRENDQWxTZ0F3SUJB
         | 
| 15 | 
            +
              Z0lCQVRBTkJna3Foa2lHOXcwQkFRVUZBREErTVJBd0RnWURWUVFEREFkMFlY
         | 
| 16 | 
            +
              QmgKYW05ek1SVXdFd1lLQ1pJbWlaUHlMR1FCR1JZRloyMWhhV3d4RXpBUkJn
         | 
| 17 | 
            +
              b0praWFKay9Jc1pBRVpGZ05qYjIwdwpIaGNOTVRNd016QTFNREV5TWpRM1do
         | 
| 18 | 
            +
              Y05NVFF3TXpBMU1ERXlNalEzV2pBK01SQXdEZ1lEVlFRRERBZDBZWEJoCmFt
         | 
| 19 | 
            +
              OXpNUlV3RXdZS0NaSW1pWlB5TEdRQkdSWUZaMjFoYVd3eEV6QVJCZ29Ka2lh
         | 
| 20 | 
            +
              SmsvSXNaQUVaRmdOamIyMHcKZ2dFaU1BMEdDU3FHU0liM0RRRUJBUVVBQTRJ
         | 
| 21 | 
            +
              QkR3QXdnZ0VLQW9JQkFRRFlhR0toK3FyVjdBaTFqWmRRd2xIdAovQ2FVaWxu
         | 
| 22 | 
            +
              SGFOSGxDNXdRaDljbmlJd2pKSjRNbDc1bTMxWXA5N1k5cGlFUCs5bU5ENE5x
         | 
| 23 | 
            +
              d3RGOHJZQm1ES2JKCkovQWlRZTFJRWV1YVp6SUEyWUNZakVJb0JFU29KdkNE
         | 
| 24 | 
            +
              YXRESGszM25vcEFIQ2ZZcjV2S2x4NURWREhXd2FvSy8KMCtOcUh5WjM3ZVJ4
         | 
| 25 | 
            +
              TE9HUmcyekFONnRGaVdHWnV5NHllMW1sZ1pSMVBWcUxqUlQwSDlrTTNsUDMx
         | 
| 26 | 
            +
              aklQZE9hVwpJdkFHRUFBKzRTUjNTSXlBcC84UlJXbERzdTQ1VFZBaGQxZ2Jx
         | 
| 27 | 
            +
              OUtjcVpMWWNsVld6cHFHUERyYjl0TWlpcUtOCmhlOHFqNUMwNGRpWEdTRWJh
         | 
| 28 | 
            +
              RU5udWhoRHFsN0c2UVJWYUJ0RDVTU3Zzc1NMK2c4REVWeFFiMzV2aWpHbTYv
         | 
| 29 | 
            +
              TlgKQWdNQkFBR2pkVEJ6TUFrR0ExVWRFd1FDTUFBd0N3WURWUjBQQkFRREFn
         | 
| 30 | 
            +
              U3dNQjBHQTFVZERnUVdCQlFIK1h3VgpTcXoxakJmU3JvazRQV2ZoQ1FHZVhq
         | 
| 31 | 
            +
              QWNCZ05WSFJFRUZUQVRnUkYwWVhCaGFtOXpRR2R0WVdsc0xtTnZiVEFjCkJn
         | 
| 32 | 
            +
              TlZIUklFRlRBVGdSRjBZWEJoYW05elFHZHRZV2xzTG1OdmJUQU5CZ2txaGtp
         | 
| 33 | 
            +
              Rzl3MEJBUVVGQUFPQ0FRRUEKcWlGdGVkUVFzbDdKQVUwdFFCSWo1VzNYenlS
         | 
| 34 | 
            +
              SnhidVI0ZXE5V09oWEJpcnRMZ3paY2NGcGhQRlNERWF0bDNTYwpBTEM2YTg2
         | 
| 35 | 
            +
              V09tYzRIcDAyM05iL0phbVEyRDlueDg3MWswQ2oxOXRpSkRSQWJXWUVZcGlt
         | 
| 36 | 
            +
              M3crM05YYkZ6RFVFCjBEU0tWL0JiWXFtOXZqbmorTG5UbkNyMXFoUFBSc1BJ
         | 
| 37 | 
            +
              M3hXQVN2NmtSWFEzRTNiN05qUlNFTCtLWjR1MGVDalcKcUlQTTdDREQraFcr
         | 
| 38 | 
            +
              WWd1bU5RRUVEN1F0c3MyWE1pb3VNeXNyTU5vR1VRYkpKTEJFN0kyWHdCeEtO
         | 
| 39 | 
            +
              U0ExUDJsMApHMnROZWNxUG1ITmhnaWlvamhXQi9EVFpRS3VZSnFiKzdoQ2Jy
         | 
| 40 | 
            +
              TFhhL3k3a0ZZd2pGUitPMEVKdnJpdG11UWlTCkdWTWhvdFloTzNMcG5pajVn
         | 
| 41 | 
            +
              RkkxQVE9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==
         | 
| 42 | 
            +
            date: 2013-09-20 00:00:00.000000000 Z
         | 
| 35 43 | 
             
            dependencies:
         | 
| 36 44 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 37 45 | 
             
              name: activeresource
         | 
| 38 46 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 47 | 
            +
                none: false
         | 
| 39 48 | 
             
                requirements:
         | 
| 40 49 | 
             
                - - ~>
         | 
| 41 50 | 
             
                  - !ruby/object:Gem::Version
         | 
| 42 | 
            -
                    version:  | 
| 51 | 
            +
                    version: 3.2.13
         | 
| 43 52 | 
             
              type: :runtime
         | 
| 44 53 | 
             
              prerelease: false
         | 
| 45 54 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 55 | 
            +
                none: false
         | 
| 46 56 | 
             
                requirements:
         | 
| 47 57 | 
             
                - - ~>
         | 
| 48 58 | 
             
                  - !ruby/object:Gem::Version
         | 
| 49 | 
            -
                    version:  | 
| 59 | 
            +
                    version: 3.2.13
         | 
| 50 60 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 51 61 | 
             
              name: rspec
         | 
| 52 62 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 63 | 
            +
                none: false
         | 
| 53 64 | 
             
                requirements:
         | 
| 54 | 
            -
                - - '>='
         | 
| 65 | 
            +
                - - ! '>='
         | 
| 55 66 | 
             
                  - !ruby/object:Gem::Version
         | 
| 56 67 | 
             
                    version: '0'
         | 
| 57 68 | 
             
              type: :development
         | 
| 58 69 | 
             
              prerelease: false
         | 
| 59 70 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 71 | 
            +
                none: false
         | 
| 60 72 | 
             
                requirements:
         | 
| 61 | 
            -
                - - '>='
         | 
| 73 | 
            +
                - - ! '>='
         | 
| 62 74 | 
             
                  - !ruby/object:Gem::Version
         | 
| 63 75 | 
             
                    version: '0'
         | 
| 64 76 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 65 77 | 
             
              name: rake
         | 
| 66 78 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 79 | 
            +
                none: false
         | 
| 67 80 | 
             
                requirements:
         | 
| 68 | 
            -
                - - '>='
         | 
| 81 | 
            +
                - - ! '>='
         | 
| 69 82 | 
             
                  - !ruby/object:Gem::Version
         | 
| 70 83 | 
             
                    version: '0'
         | 
| 71 84 | 
             
              type: :development
         | 
| 72 85 | 
             
              prerelease: false
         | 
| 73 86 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 87 | 
            +
                none: false
         | 
| 74 88 | 
             
                requirements:
         | 
| 75 | 
            -
                - - '>='
         | 
| 89 | 
            +
                - - ! '>='
         | 
| 76 90 | 
             
                  - !ruby/object:Gem::Version
         | 
| 77 91 | 
             
                    version: '0'
         | 
| 78 | 
            -
            description: "    Based on the original API module from DHH, http://developer.37signals.com/highrise/,
         | 
| 92 | 
            +
            description: ! "    Based on the original API module from DHH, http://developer.37signals.com/highrise/,
         | 
| 79 93 | 
             
              this\n    gem is a cleaned up, tested version of the same. \n\n    Configure by
         | 
| 80 94 | 
             
              adding the following:\n\n    require 'highrise'\n    Highrise::Base.site = 'http://your_site.highrisehq.com/'\n
         | 
| 81 95 | 
             
              \   Highrise::Base.user = 'your_api_auth_token'\n"
         | 
| @@ -99,6 +113,7 @@ files: | |
| 99 113 | 
             
            - examples/extending.rb
         | 
| 100 114 | 
             
            - examples/sample.rb
         | 
| 101 115 | 
             
            - highrise.gemspec
         | 
| 116 | 
            +
            - highrise.gemspec.erb
         | 
| 102 117 | 
             
            - lib/highrise.rb
         | 
| 103 118 | 
             
            - lib/highrise/account.rb
         | 
| 104 119 | 
             
            - lib/highrise/base.rb
         | 
| @@ -151,27 +166,31 @@ files: | |
| 151 166 | 
             
            - spec/spec_helper.rb
         | 
| 152 167 | 
             
            homepage: http://github.com/lucasmartins/highrise
         | 
| 153 168 | 
             
            licenses: []
         | 
| 154 | 
            -
            metadata: {}
         | 
| 155 169 | 
             
            post_install_message: 
         | 
| 156 170 | 
             
            rdoc_options: []
         | 
| 157 171 | 
             
            require_paths:
         | 
| 158 172 | 
             
            - lib
         | 
| 159 173 | 
             
            required_ruby_version: !ruby/object:Gem::Requirement
         | 
| 174 | 
            +
              none: false
         | 
| 160 175 | 
             
              requirements:
         | 
| 161 | 
            -
              - - '>='
         | 
| 176 | 
            +
              - - ! '>='
         | 
| 162 177 | 
             
                - !ruby/object:Gem::Version
         | 
| 163 178 | 
             
                  version: '0'
         | 
| 179 | 
            +
                  segments:
         | 
| 180 | 
            +
                  - 0
         | 
| 181 | 
            +
                  hash: -1724097524023801071
         | 
| 164 182 | 
             
            required_rubygems_version: !ruby/object:Gem::Requirement
         | 
| 183 | 
            +
              none: false
         | 
| 165 184 | 
             
              requirements:
         | 
| 166 | 
            -
              - - '>='
         | 
| 185 | 
            +
              - - ! '>='
         | 
| 167 186 | 
             
                - !ruby/object:Gem::Version
         | 
| 168 187 | 
             
                  version: 1.3.6
         | 
| 169 188 | 
             
            requirements: []
         | 
| 170 189 | 
             
            rubyforge_project: 
         | 
| 171 | 
            -
            rubygems_version:  | 
| 190 | 
            +
            rubygems_version: 1.8.23
         | 
| 172 191 | 
             
            signing_key: 
         | 
| 173 | 
            -
            specification_version:  | 
| 174 | 
            -
            summary:  | 
| 192 | 
            +
            specification_version: 3
         | 
| 193 | 
            +
            summary: Ruby wrapper around Highrise API
         | 
| 175 194 | 
             
            test_files:
         | 
| 176 195 | 
             
            - examples/config_initializers_highrise.rb
         | 
| 177 196 | 
             
            - examples/extending.rb
         | 
    
        metadata.gz.sig
    CHANGED
    
    | @@ -1,2 +1,3 @@ | |
| 1 | 
            -
             | 
| 2 | 
            -
             | 
| 1 | 
            +
            CA��+�����=c&��<K��"���m�ы�Y�«��.��g�)��4C��i�%��"à��t������fFX��ts����S�������_�1�6�
         | 
| 2 | 
            +
            %��\���h�d�M4�ynd��Is:�`���0@+Bz��1
         | 
| 3 | 
            +
            1��"}�����D���h�d�lG���y�=Ed��
         | 
| 3 | 
            -
            ��"-�4h�gY���\% ���~e�y��9\�r��fF��c��]�4���2��:�	ᓘ���w��霹]�!
         | 
    
        checksums.yaml
    DELETED
    
    | @@ -1,7 +0,0 @@ | |
| 1 | 
            -
            ---
         | 
| 2 | 
            -
            SHA1:
         | 
| 3 | 
            -
              metadata.gz: df99d977f5783af5f130eda302ce9d90579d3cd7
         | 
| 4 | 
            -
              data.tar.gz: a336a747cfeeae3d4b53f978be2c93b59da3b09a
         | 
| 5 | 
            -
            SHA512:
         | 
| 6 | 
            -
              metadata.gz: 095bfa698e5c2e3a935f381dfcc494253549d180b674c8df7c9d301b4ec3df0b6f2ac831ac0de590d8f6049993b5039efcb9ba002789221af1ff45cf9d966883
         | 
| 7 | 
            -
              data.tar.gz: 4870f88bd8b9a1cd487560b50c34aec740298380fd26e1f53e5d4b4a0bfa71be59e257e94264954f795e15d94d6a45d3bd35d53cfcafa01ba24e1c5862be544f
         | 
    
        checksums.yaml.gz.sig
    DELETED
    
    | @@ -1 +0,0 @@ | |
| 1 | 
            -
            ��a�XW��X5!�����,�L�L�'d2��M8�2c��c4pr�@�r9��y���G��zc�5,砯�W}�SAlT��-�B{��;��X]�%�=��ڄ��F�d��U��Df"���� 4���l���-��_F�H��ֈ\��v9e	����(�q+��!LԞ��ncE��h��xT��DLp�:�5��CM���&��.T��D����r������FidžQ��C#��9D��`(a�Q��4�m�-�;
         |