diff options
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | dbshell-rails.gemspec | 2 | ||||
| -rw-r--r-- | lib/dbshell/rails.rb | 2 | ||||
| -rw-r--r-- | lib/dbshell/rails/version.rb | 2 | 
4 files changed, 4 insertions, 4 deletions
| @@ -1,4 +1,4 @@ -# Dbshell::Rails +# DBShell::Rails  TODO: Write a gem description diff --git a/dbshell-rails.gemspec b/dbshell-rails.gemspec index e1a8659..1fcaf51 100644 --- a/dbshell-rails.gemspec +++ b/dbshell-rails.gemspec @@ -5,7 +5,7 @@ require 'dbshell/rails/version'  Gem::Specification.new do |spec|    spec.name          = "dbshell-rails" -  spec.version       = Dbshell::Rails::VERSION +  spec.version       = DBShell::Rails::VERSION    spec.authors       = ["Teddy Wing"]    spec.summary       = %q{TODO: Write a short summary. Required.}    spec.description   = %q{TODO: Write a longer description. Optional.} diff --git a/lib/dbshell/rails.rb b/lib/dbshell/rails.rb index 0e3ea61..803b4ae 100644 --- a/lib/dbshell/rails.rb +++ b/lib/dbshell/rails.rb @@ -1,6 +1,6 @@  require "dbshell/rails/version" -module Dbshell +module DBShell    module Rails      # Your code goes here...    end diff --git a/lib/dbshell/rails/version.rb b/lib/dbshell/rails/version.rb index 02f72e6..4728e94 100644 --- a/lib/dbshell/rails/version.rb +++ b/lib/dbshell/rails/version.rb @@ -1,4 +1,4 @@ -module Dbshell +module DBShell    module Rails      VERSION = "0.0.1"    end | 
