completelynovel-amazon-product-advertising-api 0.0.3 → 0.0.4

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.
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{amazon-product-advertising-api}
5
- s.version = "0.0.3"
5
+ s.version = "0.0.4"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Jon Gilbraith"]
@@ -1,55 +1,59 @@
1
- class Class
2
- def cattr_reader(sym)
3
- class_eval(<<-EOS, __FILE__, __LINE__)
4
- unless defined? @@#{sym} # unless defined? @@hair_colors
5
- @@#{sym} = nil # @@hair_colors = nil
6
- end # end
7
- #
8
- def self.#{sym} # def self.hair_colors
9
- @@#{sym} # @@hair_colors
10
- end # end
11
- #
12
- def #{sym} # def hair_colors
13
- @@#{sym} # @@hair_colors
14
- end # end
15
- EOS
16
- end
1
+ module AmazonProductAdvertisingApi
2
+
3
+ class Class
4
+ def cattr_reader(sym)
5
+ class_eval(<<-EOS, __FILE__, __LINE__)
6
+ unless defined? @@#{sym} # unless defined? @@hair_colors
7
+ @@#{sym} = nil # @@hair_colors = nil
8
+ end # end
9
+ #
10
+ def self.#{sym} # def self.hair_colors
11
+ @@#{sym} # @@hair_colors
12
+ end # end
13
+ #
14
+ def #{sym} # def hair_colors
15
+ @@#{sym} # @@hair_colors
16
+ end # end
17
+ EOS
18
+ end
17
19
 
18
- def cattr_writer(sym)
19
- class_eval(<<-EOS, __FILE__, __LINE__)
20
- unless defined? @@#{sym} # unless defined? @@hair_colors
21
- @@#{sym} = nil # @@hair_colors = nil
22
- end # end
23
- #
24
- def self.#{sym}=(obj) # def self.hair_colors=(obj)
25
- @@#{sym} = obj # @@hair_colors = obj
26
- end # end
27
- EOS
28
- end
20
+ def cattr_writer(sym)
21
+ class_eval(<<-EOS, __FILE__, __LINE__)
22
+ unless defined? @@#{sym} # unless defined? @@hair_colors
23
+ @@#{sym} = nil # @@hair_colors = nil
24
+ end # end
25
+ #
26
+ def self.#{sym}=(obj) # def self.hair_colors=(obj)
27
+ @@#{sym} = obj # @@hair_colors = obj
28
+ end # end
29
+ EOS
30
+ end
31
+
32
+ def cattr_accessor(sym)
33
+ cattr_reader(sym)
34
+ cattr_writer(sym)
35
+ end
29
36
 
30
- def cattr_accessor(sym)
31
- cattr_reader(sym)
32
- cattr_writer(sym)
33
37
  end
34
-
35
- end
36
38
 
37
- class String
39
+ class String
38
40
 
39
- def camelize(first_letter_in_uppercase = true)
40
- if first_letter_in_uppercase
41
- self.to_s.gsub(/\/(.?)/) { "::" + $1.upcase }.gsub(/(^|_)(.)/) { $2.upcase }
42
- else
43
- self.first + camelize(self)[1..-1]
41
+ def camelize(first_letter_in_uppercase = true)
42
+ if first_letter_in_uppercase
43
+ self.to_s.gsub(/\/(.?)/) { "::" + $1.upcase }.gsub(/(^|_)(.)/) { $2.upcase }
44
+ else
45
+ self.first + camelize(self)[1..-1]
46
+ end
44
47
  end
45
- end
46
-
47
- def underscore
48
- self.to_s.gsub(/::/, '/').
49
- gsub(/([A-Z]+)([A-Z][a-z])/,'\1_\2').
50
- gsub(/([a-z\d])([A-Z])/,'\1_\2').
51
- tr("-", "_").
52
- downcase
53
- end
54
48
 
49
+ def underscore
50
+ self.to_s.gsub(/::/, '/').
51
+ gsub(/([A-Z]+)([A-Z][a-z])/,'\1_\2').
52
+ gsub(/([a-z\d])([A-Z])/,'\1_\2').
53
+ tr("-", "_").
54
+ downcase
55
+ end
56
+
57
+ end
58
+
55
59
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: completelynovel-amazon-product-advertising-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jon Gilbraith