scintillation 1.0.3 → 1.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
- 1.0.3
1
+ 1.0.5
data/lib/scintillation.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  module Scintillation
2
2
 
3
3
  def self.included(base)
4
- base.include(Controller)
4
+ base.send(:include, Controller)
5
5
  end
6
6
 
7
7
  module Controller
@@ -42,7 +42,7 @@ module Scintillation
42
42
 
43
43
  module View
44
44
  def self.included(base)
45
- base.include(InstanceMethods)
45
+ base.send(:include, InstanceMethods)
46
46
  end
47
47
 
48
48
  module InstanceMethods
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{scintillation}
8
- s.version = "1.0.3"
8
+ s.version = "1.0.5"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Austin Schneider"]
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 0
8
- - 3
9
- version: 1.0.3
8
+ - 5
9
+ version: 1.0.5
10
10
  platform: ruby
11
11
  authors:
12
12
  - Austin Schneider