Skip to content

Commit

Permalink
Another attempt at - vs _
Browse files Browse the repository at this point in the history
  • Loading branch information
Owen Lawson committed Jul 24, 2012
1 parent 994737e commit 93480cc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/rails_emoji.rb
@@ -1,4 +1,4 @@
require "rails-emoji/engine"
require "rails_emoji/engine"

module RailsEmoji

Expand Down
2 changes: 1 addition & 1 deletion script/rails
Expand Up @@ -2,7 +2,7 @@
# This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.

ENGINE_ROOT = File.expand_path('../..', __FILE__)
ENGINE_PATH = File.expand_path('../../lib/rails-emoji/engine', __FILE__)
ENGINE_PATH = File.expand_path('../../lib/rails_emoji/engine', __FILE__)

require 'rails/all'
require 'rails/engine/commands'
2 changes: 1 addition & 1 deletion test/dummy/config/application.rb
Expand Up @@ -3,7 +3,7 @@
require 'rails/all'

Bundler.require
require "rails-emoji"
require "rails_emoji"

module Dummy
class Application < Rails::Application
Expand Down
2 changes: 1 addition & 1 deletion test/dummy/config/routes.rb
@@ -1,4 +1,4 @@
Rails.application.routes.draw do

mount RailsEmoji::Engine => "/rails-emoji"
mount RailsEmoji::Engine => "/rails_emoji"
end

0 comments on commit 93480cc

Please sign in to comment.