grimen / validatious-on-rails

Rails plugin that maps model validations to class names on form elements to integrate with Validatious. IMPORTANT: Project is not maintained anymore.
MIT License
346 stars 13 forks source link

generator doesn't put files in the right location #11

Closed FloWi closed 14 years ago

FloWi commented 14 years ago

Hi!

I've got a problem with the validatious generator. The files' paths are not separated by a '/' but by a ' ' (space). This means, the files are all in the root-dir of the rails-app looking like that (see my terminal output below)

Feel free to contact me, if you have questions about that issue.

README app db lib public test vendor Rakefile config doc log script tmp ~/programming/rails_sites/railscasts/vet: ./script/generate validatious create config initializers validatious-on-rails.rb create public javascripts XMLHttpRequest.js create public javascripts v2.standalone.full.min.js create public javascripts v2.config.js create public javascripts v2.rails.js

README public Rakefile public javascripts XMLHttpRequest.js app public javascripts v2.config.js config public javascripts v2.rails.js config initializers validatious-on-rails.rb public javascripts v2.standalone.full.min.js db script doc test lib tmp log vendor

grimen commented 14 years ago

Fixed typo in the generator. closed by 8930c990b622b1f96e76b5708399795ccb716edd

FloWi commented 14 years ago

Thanks for the quick fix!