diff --git a/MIT-LICENSE b/MIT-LICENSE index 9376605b..13620489 100644 --- a/MIT-LICENSE +++ b/MIT-LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2009 [name of plugin creator] +Copyright (c) 2009 PlataformaTec http://blog.plataformatec.com.br/ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/TODO.rdoc b/TODO.rdoc index 5e27c94e..7f276451 100644 --- a/TODO.rdoc +++ b/TODO.rdoc @@ -1,6 +1,8 @@ == General * Sample CSS +* Add default size support +* Allow block to be given to overwrite content == Validations diff --git a/generators/simple_form_install/simple_form_install_generator.rb b/generators/simple_form_install/simple_form_install_generator.rb index 442a89b8..c703e94b 100644 --- a/generators/simple_form_install/simple_form_install_generator.rb +++ b/generators/simple_form_install/simple_form_install_generator.rb @@ -2,10 +2,11 @@ class SimpleFormInstallGenerator < Rails::Generator::Base def manifest record do |m| + m.directory 'config/initializers' m.template 'simple_form.rb', 'config/initializers/simple_form.rb' m.directory 'config/locales' - m.template locale_file, 'config/locales/simple_form.yml' + m.template locale_file, 'config/locales/simple_form.en.yml' end end