highrise 3.1.5 → 3.1.6
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.
- checksums.yaml +4 -4
- data/Gemfile.lock +8 -10
- data/README.md +2 -2
- data/lib/highrise/taggable.rb +2 -2
- data/lib/highrise/version.rb +1 -1
- data/spec/highrise/taggable_behavior.rb +3 -3
- metadata +2 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c08fed70b2defee5d4cd4e6d2d6487b7d2bcefd3
|
4
|
+
data.tar.gz: 752cad37c686284545b11cfe15c2eeeb591048e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dbe2dd4fd7ab0a9984f4c757737a15446c71f175bd0435458567f59ea64fd5718c60bd54159a7fbe599f07f167f4f45d8df6d4be43f7008f35b224f5588d2420
|
7
|
+
data.tar.gz: ac73d6ec2703ad7629535d990ad29af33ee283c6a65eca4a8cdeee5014169ae4d5d5bb7c0e99b7dce2142e528cfa068b19e2ffc3a1ec0e05c514582ef608cea0
|
data/Gemfile.lock
CHANGED
@@ -1,31 +1,30 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
highrise (3.1.
|
4
|
+
highrise (3.1.6)
|
5
5
|
activeresource (>= 3.2.13)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
activemodel (4.0.
|
11
|
-
activesupport (= 4.0.
|
10
|
+
activemodel (4.0.4)
|
11
|
+
activesupport (= 4.0.4)
|
12
12
|
builder (~> 3.1.0)
|
13
13
|
activeresource (4.0.0)
|
14
14
|
activemodel (~> 4.0)
|
15
15
|
activesupport (~> 4.0)
|
16
16
|
rails-observers (~> 0.1.1)
|
17
|
-
activesupport (4.0.
|
18
|
-
i18n (~> 0.6, >= 0.6.
|
17
|
+
activesupport (4.0.4)
|
18
|
+
i18n (~> 0.6, >= 0.6.9)
|
19
19
|
minitest (~> 4.2)
|
20
20
|
multi_json (~> 1.3)
|
21
21
|
thread_safe (~> 0.1)
|
22
22
|
tzinfo (~> 0.3.37)
|
23
|
-
atomic (1.1.14)
|
24
23
|
builder (3.1.4)
|
25
24
|
diff-lcs (1.2.1)
|
26
25
|
i18n (0.6.9)
|
27
26
|
minitest (4.7.5)
|
28
|
-
multi_json (1.
|
27
|
+
multi_json (1.9.2)
|
29
28
|
rails-observers (0.1.2)
|
30
29
|
activemodel (~> 4.0)
|
31
30
|
rake (10.0.3)
|
@@ -37,9 +36,8 @@ GEM
|
|
37
36
|
rspec-expectations (2.13.0)
|
38
37
|
diff-lcs (>= 1.1.3, < 2.0)
|
39
38
|
rspec-mocks (2.13.0)
|
40
|
-
thread_safe (0.
|
41
|
-
|
42
|
-
tzinfo (0.3.38)
|
39
|
+
thread_safe (0.3.2)
|
40
|
+
tzinfo (0.3.39)
|
43
41
|
|
44
42
|
PLATFORMS
|
45
43
|
java
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Highrise (master) [](http://travis-ci.org/tapajos/highrise)
|
1
|
+
# Highrise (master) [](http://travis-ci.org/tapajos/highrise) [](https://codeclimate.com/github/tapajos/highrise)
|
2
2
|
|
3
3
|
## What is it?
|
4
4
|
|
@@ -71,4 +71,4 @@ version file.
|
|
71
71
|
[rdoc]: http://rdoc.info/projects/tapajos/highrise
|
72
72
|
[tapajos]: http://www.improveit.com.br/en/company/tapajos
|
73
73
|
[list]: https://github.com/tapajos/highrise/graphs/contributors
|
74
|
-
[]
|
74
|
+
[]
|
data/lib/highrise/taggable.rb
CHANGED
@@ -9,8 +9,8 @@ module Highrise
|
|
9
9
|
end
|
10
10
|
|
11
11
|
def untag!(tag_name)
|
12
|
-
to_delete = self.tags.find{|tag| tag['name'] == tag_name} unless tag_name.blank?
|
13
|
-
self.untag_id!(to_delete['id']) unless to_delete.nil?
|
12
|
+
to_delete = self.tags.find{|tag| tag.attributes['name'] == tag_name} unless tag_name.blank?
|
13
|
+
self.untag_id!(to_delete.attributes['id']) unless to_delete.nil?
|
14
14
|
end
|
15
15
|
protected
|
16
16
|
def untag_id!(tag_id)
|
data/lib/highrise/version.rb
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
shared_examples_for "a taggable class" do
|
2
2
|
before(:each) do
|
3
3
|
(@tags = []).tap do
|
4
|
-
@tags <<
|
5
|
-
@tags <<
|
6
|
-
@tags <<
|
4
|
+
@tags << Highrise::Tag.new(:name => "cliente", :id => 414578)
|
5
|
+
@tags << Highrise::Tag.new(:name => "ged", :id => 414580)
|
6
|
+
@tags << Highrise::Tag.new(:name => "iepc", :id => 414579)
|
7
7
|
end
|
8
8
|
end
|
9
9
|
|
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.
|
4
|
+
version: 3.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marcos Tapajós
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2014-04-07 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activeresource
|
@@ -181,4 +181,3 @@ test_files:
|
|
181
181
|
- spec/highrise/task_spec.rb
|
182
182
|
- spec/highrise/user_spec.rb
|
183
183
|
- spec/spec_helper.rb
|
184
|
-
has_rdoc:
|