acts_as_acts_as 0.0.4 → 0.0.5

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.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.4
1
+ 0.0.5
@@ -1,6 +1,6 @@
1
1
  module ActsAsActsAs
2
2
  module ActsAsShortcuts
3
- def require_methods(*method_list, options = {})
3
+ def require_methods(*method_list)
4
4
  method_list.each do |required_method|
5
5
  unless instance_methods.include?(required_method.to_s)
6
6
  raise "Model #{self.to_s} must define #{required_method}"
@@ -8,7 +8,7 @@ module ActsAsActsAs
8
8
  end
9
9
  end
10
10
 
11
- def require_class_methods(*method_list, options = {})
11
+ def require_class_methods(*method_list)
12
12
  method_list.each do |required_method|
13
13
  unless methods.include?(required_method.to_s)
14
14
  raise "Model #{self.to_s} must define class method #{required_method}"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: acts_as_acts_as
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - phinze