highrise 3.1.0 → 3.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9118a05311bb16850bba67c39dbc21c007156ef3
4
- data.tar.gz: bc0f42eb7fa25ca09d5be80b7a62a64de29a4f0c
3
+ metadata.gz: df99d977f5783af5f130eda302ce9d90579d3cd7
4
+ data.tar.gz: a336a747cfeeae3d4b53f978be2c93b59da3b09a
5
5
  SHA512:
6
- metadata.gz: 93e7ac223d41271601ec36030f8d97d02c11d4dca92f65e60a8778681e8f4b927520a467a60af2822400896f3731fb6912c99077be5891c356fbf7b3e0b80845
7
- data.tar.gz: c4d64b325d3f60757e2a1c18a08c0afca9e576a12335c90da102f72e271eac0642afb78291401f9d61a4bba42c6aeb012a84f3c980676972e53778efc0d62fb6
6
+ metadata.gz: 095bfa698e5c2e3a935f381dfcc494253549d180b674c8df7c9d301b4ec3df0b6f2ac831ac0de590d8f6049993b5039efcb9ba002789221af1ff45cf9d966883
7
+ data.tar.gz: 4870f88bd8b9a1cd487560b50c34aec740298380fd26e1f53e5d4b4a0bfa71be59e257e94264954f795e15d94d6a45d3bd35d53cfcafa01ba24e1c5862be544f
checksums.yaml.gz.sig CHANGED
@@ -1,4 +1 @@
1
- ���q{�����0v:��z���)$���˼[ϐ%4���CY�x!wo2�~�F�1XZ��'�,K5Ov�`N��Kl�����Fb�PX0 DO=�ͭ�%B�?��/���Vz/MC8Z�4�� 7�u��zlSƣ~����s}��b��p7�#��u��
2
- � ">I/��Ӆ�
3
- d[��r�P5k�O�ë�:�\�@�S|��i��M�|`�]KM;G P\�x
4
- ���r
1
+ ��a�XW��X5!�����,�L�L�'d2��M8�2c��c4pr�@�r9��y���G��zc5,砯񖪓�W}�SAlT��-�B{��;��X]�%�=��ڄ��Fd��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�-�;
data.tar.gz.sig CHANGED
Binary file
data/Gemfile.lock CHANGED
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- highrise (3.1.0)
5
- activeresource (~> 4.0.0)
4
+ highrise (3.1.1)
5
+ activeresource (~> 4.0.0.rc2)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
@@ -27,7 +27,6 @@ GEM
27
27
  thread_safe (~> 0.1)
28
28
  tzinfo (~> 0.3.37)
29
29
  atomic (1.1.9)
30
- atomic (1.1.9-java)
31
30
  builder (3.1.4)
32
31
  diff-lcs (1.2.1)
33
32
  erubis (2.7.0)
data/README.md CHANGED
@@ -4,39 +4,43 @@
4
4
 
5
5
  This gem provides a set of classes to access information on [Highrise][h] via the published [API][api]:
6
6
 
7
- Account, Comment, Company, Deal, DealCategory, Email, Group, Case, Membership, Note, Party, Person, Recording, Subject, Tag, Task, TaskCategory and User.
7
+ Account, Comment, Company, Deal, DealCategory, Email, Group, Case, Membership,
8
+ Note, Party, Person, Recording, Subject, Tag, Task, TaskCategory and User.
8
9
 
9
10
  All these classes are inherited from ActiveResouce::Base. Refer to the [ActiveResouce][ar] documentation for more information.
10
11
 
11
12
  ## Installing
12
-
13
+ ```bash
13
14
  gem install highrise
14
-
15
+ ```
15
16
  ### Dependencies (see <code>highrise.gemspec</code> or run <code>bundle check</code>)
16
17
 
17
18
  ### Documentation
18
19
 
19
- I'm on [rdoc.info][rdoc]
20
+ I'm on [rdoc.info][rdoc] (or am I?)
21
+
22
+ [Cookbook][cookbook]
20
23
 
21
24
  ### Configure your key
22
-
25
+ ```ruby
23
26
  require 'highrise'
24
27
 
25
28
  Highrise::Base.site = 'https://your_site.highrisehq.com'
26
29
  Highrise::Base.user = 'api-auth-token'
27
30
  Highrise::Base.format = :xml
31
+ ```
28
32
 
29
33
  If you are using this in a Rails application, putting this code in a config/initializers/highrise.rb
30
34
  file is recommended. See config_initializers_highrise.rb in the examples/ directory.
31
35
 
32
36
  ## Usage
33
-
37
+ ```ruby
34
38
  @tags = Highrise::Tag.find(:all)
35
39
 
36
40
  @people = Highrise::Person.find_all_across_pages(:params => {:tag_id => 12345})
37
41
 
38
42
  @person.tag!("VIP")
39
-
43
+ ```
40
44
  ## License
41
45
 
42
46
  This code is free to be used under the terms of the [MIT license][mit].
@@ -62,7 +66,9 @@ version file.
62
66
  [h]: http://www.highrisehq.com/
63
67
  [i]: https://github.com/tapajos/highrise/issues
64
68
  [kmayer]: https://github.com/kmayer
65
- [mit]:http://www.opensource.org/licenses/mit-license.php
69
+ [mit]: http://www.opensource.org/licenses/mit-license.php
70
+ [cookbook]: https://github.com/tapajos/highrise/wiki/Cookbook
66
71
  [rdoc]: http://rdoc.info/projects/tapajos/highrise
67
72
  [tapajos]: http://www.improveit.com.br/en/company/tapajos
68
- [list]: https://github.com/tapajos/highrise/graphs/contributors
73
+ [list]: https://github.com/tapajos/highrise/graphs/contributors
74
+ []
data/highrise.gemspec CHANGED
@@ -8,7 +8,7 @@ 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", "~> 4.0.0"
11
+ s.add_dependency "activeresource", "~> 4.0.0.rc2"
12
12
  s.add_development_dependency "rspec"
13
13
  s.add_development_dependency "rake"
14
14
 
@@ -1,3 +1,3 @@
1
1
  module Highrise
2
- VERSION = "3.1.0"
2
+ VERSION = "3.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: highrise
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.0
4
+ version: 3.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marcos Tapajós
@@ -31,7 +31,7 @@ cert_chain:
31
31
  G2tNecqPmHNhgiiojhWB/DTZQKuYJqb+7hCbrLXa/y7kFYwjFR+O0EJvritmuQiS
32
32
  GVMhotYhO3Lpnij5gFI1AQ==
33
33
  -----END CERTIFICATE-----
34
- date: 2013-06-26 00:00:00.000000000 Z
34
+ date: 2013-07-08 00:00:00.000000000 Z
35
35
  dependencies:
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: activeresource
@@ -39,14 +39,14 @@ dependencies:
39
39
  requirements:
40
40
  - - ~>
41
41
  - !ruby/object:Gem::Version
42
- version: 4.0.0
42
+ version: 4.0.0.rc2
43
43
  type: :runtime
44
44
  prerelease: false
45
45
  version_requirements: !ruby/object:Gem::Requirement
46
46
  requirements:
47
47
  - - ~>
48
48
  - !ruby/object:Gem::Version
49
- version: 4.0.0
49
+ version: 4.0.0.rc2
50
50
  - !ruby/object:Gem::Dependency
51
51
  name: rspec
52
52
  requirement: !ruby/object:Gem::Requirement
metadata.gz.sig CHANGED
Binary file