1
0
Fork 0
mirror of https://github.com/heartcombo/devise.git synced 2022-11-09 12:18:31 -05:00

Fix generators bug.

This commit is contained in:
José Valim 2010-07-27 16:14:09 +02:00
parent 9d5a5beb59
commit d6c6e7cfe1
3 changed files with 3 additions and 3 deletions

View file

@ -3,7 +3,7 @@ require 'active_support/secure_random'
module Devise
module Generators
class InstallGenerator < Rails::Generators::Base
source_root File.expand_path("../templates", __FILE__)
source_root File.expand_path("../../templates", __FILE__)
desc "Creates a Devise initializer and copy locale files to your application."
class_option :orm
@ -13,11 +13,11 @@ module Devise
end
def copy_locale
copy_file "../../../../config/locales/en.yml", "config/locales/devise.en.yml"
copy_file "../../../config/locales/en.yml", "config/locales/devise.en.yml"
end
def show_readme
readme "README"
readme "README" if behavior == :invoke
end
end
end