include_behaviors 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/Manifest CHANGED
@@ -1,4 +1,3 @@
1
- init.rb
2
1
  Manifest.txt
3
2
  README.rdoc
4
3
  Rakefile
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = %q{include_behaviors}
3
- s.version = "0.0.2"
3
+ s.version = "0.0.3"
4
4
 
5
5
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
6
6
  s.authors = ["Nathan Verni"]
@@ -8,7 +8,7 @@ Gem::Specification.new do |s|
8
8
  s.description = %q{A quick helper for auto-loading /public/javascripts/behaviors/{controller_name}/{action_name}.js}
9
9
  s.email = %q{npverni@gmail.com}
10
10
  s.extra_rdoc_files = ["CHANGELOG", "lib/include_behaviors.rb", "README.rdoc"]
11
- s.files = ["CHANGELOG", "init.rb", "lib/include_behaviors.rb", "Manifest", "Rakefile", "README.rdoc", "include_behaviors.gemspec"]
11
+ s.files = ["CHANGELOG", "lib/include_behaviors.rb", "Manifest", "Rakefile", "README.rdoc", "include_behaviors.gemspec"]
12
12
  s.has_rdoc = true
13
13
  s.homepage = %q{http://github.com/npverni/include_behaviors}
14
14
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Will_sort", "--main", "README.rdoc"]
@@ -6,4 +6,8 @@ module Focastle
6
6
  end
7
7
  end
8
8
  end
9
- end
9
+ end
10
+
11
+
12
+ require 'include_behaviors'
13
+ ActionView::Base.send :include, Focastle::IncludeBehaviors::InstanceMethods
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: include_behaviors
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan Verni
@@ -25,7 +25,6 @@ extra_rdoc_files:
25
25
  - README.rdoc
26
26
  files:
27
27
  - CHANGELOG
28
- - init.rb
29
28
  - lib/include_behaviors.rb
30
29
  - Manifest
31
30
  - Rakefile
data/init.rb DELETED
@@ -1,2 +0,0 @@
1
- require 'include_behaviors'
2
- ActionView::Base.send :include, Focastle::IncludeBehaviors::InstanceMethods