public
Description: This is yet another little date picker integration for rails. To make date selection easier.
Homepage: http://scoop.cheerfactory.co.uk/2008/07/18/wee-date-picker-rails-plugin/
Clone URL: git://github.com/pyrat/wee_date_picker.git
wee_date_picker / install.rb
100644 13 lines (8 sloc) 0.268 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'fileutils'
 
puts "Installing into your rails app.."
plugin_name = 'wee_date_picker'
 
src = "#{RAILS_ROOT}/vendor/plugins/#{plugin_name}/files/."
dest = "#{RAILS_ROOT}/public"
options = {:verbose => true}
 
FileUtils.cp_r(src, dest, options)
 
puts "All done!"