ruby-redtail 0.3.7 → 0.3.8
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 +8 -8
- data/VERSION +1 -1
- data/lib/ruby-redtail/contact.rb +1 -1
- data/lib/ruby-redtail/tag_group.rb +1 -1
- data/ruby-redtail.gemspec +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NTA4MjEzYTlhMzg5MGMwZjNiM2UyODA3OTVlNjBlNGRiZjQzNGNlZQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
OGRiMjNhYTYyY2MzNjUwZmVkNmRmZWM1MjIxYmZhOWQxNzdkM2E3ZQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NjAzZmNjNzVhZmNmYmNhMjAwOWY1MTZmOWE1YTY3Mjg4MTc0MWZlMWYzMDBh
|
10
|
+
ZmJlNjlhZDczNjJmOGQ4NDFkMWEyZGUyNzMxYWRlNjUzODdmMTQ0ZDMyMDhj
|
11
|
+
OTJjMjRlMzBmN2M0NWNhYmRlOTE1NDM2ODNmZDE0NjI3OTBhN2U=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
Y2ExNjNjODU3YWI5NDdjMzc3NDFkZDk0MDJiNzM4ZGUwYWRlZTNmZjRjOGFm
|
14
|
+
ZmVmMzRjNWZmZjUyMzhiNWZlYTZjOGQzMjJjYzM2NTExMTIyODM4YzZhZmFj
|
15
|
+
NWYzYWRiNjVjMjViNzMzNTBjYmQ3ZTc0ODFlMjUxMjFmOGI4NzM=
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.8
|
data/lib/ruby-redtail/contact.rb
CHANGED
@@ -149,7 +149,7 @@ module RubyRedtail
|
|
149
149
|
|
150
150
|
def build_tag_groups_array tag_group_hashes
|
151
151
|
if tag_group_hashes
|
152
|
-
tag_group_hashes.collect { |tag_group_hash|
|
152
|
+
tag_group_hashes.collect { |tag_group_hash| build_tag_group tag_group_hash }
|
153
153
|
else
|
154
154
|
raise RubyRedtail::AuthenticationError
|
155
155
|
end
|
@@ -31,7 +31,7 @@ module RubyRedtail
|
|
31
31
|
|
32
32
|
def build_contacts_array contact_hashes
|
33
33
|
if contact_hashes
|
34
|
-
contact_hashes.collect { |contact_hash|
|
34
|
+
contact_hashes.collect { |contact_hash| build_contact contact_hash }
|
35
35
|
else
|
36
36
|
raise RubyRedtail::AuthenticationError
|
37
37
|
end
|
data/ruby-redtail.gemspec
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
-
# stub: ruby-redtail 0.3.
|
5
|
+
# stub: ruby-redtail 0.3.8 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "ruby-redtail"
|
9
|
-
s.version = "0.3.
|
9
|
+
s.version = "0.3.8"
|
10
10
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
12
12
|
s.authors = ["Nathan Colgate"]
|