handcrafted-a2ws 0.1.7 → 0.1.8

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION.yml CHANGED
@@ -1,3 +1,3 @@
1
1
  :major: 0
2
2
  :minor: 1
3
- :patch: 7
3
+ :patch: 8
data/a2ws.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{a2ws}
5
- s.version = "0.1.7"
5
+ s.version = "0.1.8"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Andy Shen", "Josh Owens"]
@@ -1,7 +1,7 @@
1
1
  module Methodize
2
2
 
3
3
  def method_missing(meth,*args)
4
- if @@data_hash.keys.include?(meth.to_s)
4
+ if @data_hash.keys.include?(meth.to_s)
5
5
  @data_hash[meth.to_s]
6
6
  else
7
7
  super
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: handcrafted-a2ws
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andy Shen