ruby-redtail 0.3.2 → 0.3.3
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/tag_group.rb +2 -2
- 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
|
+
ZTlhNTEzMzFjYWNhNmViMWY5YTc0M2U5YTA2ODA5ZjdiMDY4OTZmYQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
YjFlZTEyZjQxOGFlMGM5ZWJhYTEwNzk5ZjVlNzJkMzNlOWU0NDNjMw==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NDc4M2U3YjJmODU4OWViYzI3ZjMzNjlmMGVlNmVhZjZmYzBjZGEyMmUwNWVi
|
10
|
+
OGYzNmRkMjIxM2M4NjQxYjU4OGM4YWIxMTJlMWQ2Mjg5ZDNkNDk4NmIxNWFm
|
11
|
+
MDY3YzZmN2Q3YThiNjUxZWQ0OWYxM2E0NDU3NTg1Mzc3Y2ZhNjM=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MzQ1NGY3NWU0ZDEwMjQ0YjcxOGY3MWRjYTNiZWIzNDE1NjM3OThhZmNjNWU2
|
14
|
+
NjliZDc4MDQwZTE5YTk2YjA4NTllODkzOTU2NjRmNTQxYTFjYTY4ZGI0ODUx
|
15
|
+
MmZlOTkzN2MxZjExNWJiOTMyNWZhZjVmMDZhMzY1ODk4OTFjNTc=
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.3
|
@@ -7,8 +7,8 @@ module RubyRedtail
|
|
7
7
|
raise ArgumentError unless tag_group['RecID']
|
8
8
|
@id = tag_group['RecID']
|
9
9
|
|
10
|
-
raise ArgumentError if
|
11
|
-
|
10
|
+
raise ArgumentError if tag_group.class != Hash
|
11
|
+
tag_group.each do |key, value|
|
12
12
|
key = key.underscore
|
13
13
|
self.class.send :attr_accessor, key
|
14
14
|
instance_variable_set "@#{key}", value
|
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.3 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.3"
|
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"]
|