diff --git a/lib/vendor-all-the-javascripts.rb b/lib/vendor-all-the-javascripts.rb index bfb05a1..3726bd6 100644 --- a/lib/vendor-all-the-javascripts.rb +++ b/lib/vendor-all-the-javascripts.rb @@ -1,11 +1,8 @@ require "vendor-all-the-javascripts/version" -module Vendor - module All - module The - module Javascripts - # Your code goes here... - end +module VendorAllTheJavaScripts + if defined?(Rails) + class Railtie < Rails::Engine end end end diff --git a/lib/vendor-all-the-javascripts/version.rb b/lib/vendor-all-the-javascripts/version.rb index b19bffc..b25c397 100644 --- a/lib/vendor-all-the-javascripts/version.rb +++ b/lib/vendor-all-the-javascripts/version.rb @@ -1,9 +1,3 @@ -module Vendor - module All - module The - module Javascripts - VERSION = "0.0.1" - end - end - end +module VendorAllTheJavaScripts + VERSION = "0.0.1" end diff --git a/vendor-all-the-javascripts.gemspec b/vendor-all-the-javascripts.gemspec index 6a701b2..af77a29 100644 --- a/vendor-all-the-javascripts.gemspec +++ b/vendor-all-the-javascripts.gemspec @@ -4,12 +4,12 @@ require "vendor-all-the-javascripts/version" Gem::Specification.new do |s| s.name = "vendor-all-the-javascripts" - s.version = Vendor::All::The::Javascripts::VERSION + s.version = VendorAllTheJavaScripts::VERSION s.authors = ["John Bintz"] s.email = ["john@coswellproductions.com"] s.homepage = "" - s.summary = %q{TODO: Write a gem summary} - s.description = %q{TODO: Write a gem description} + s.summary = %q{Vendored JavaScript thigns I use} + s.description = %q{Vendored JavaScript thigns I use} s.rubyforge_project = "vendor-all-the-javascripts"