public
Description: A custom builder (and some helper methods) for creating consistent and accessible forms in rails
Homepage: http://rubypond.com
Clone URL: git://github.com/rubypond/semantic_form_builder.git
semantic_form_builder / install.rb
100644 11 lines (9 sloc) 0.305 kb
1
2
3
4
5
6
7
8
9
10
11
# Copy the assets into RAILS_ROOT/public/
RAILS_ROOT = File.join(File.dirname(__FILE__), '../../../')
 
FileUtils.cp_r(
  Dir[File.join(File.dirname(__FILE__), 'public')],
  File.join(RAILS_ROOT),
  :verbose => true
)
 
# Show the README text file
puts IO.read(File.join(File.dirname(__FILE__), 'README'))