# File lib/select2-rails/source_file.rb, line 34 def cleanup self.destination_root = "app/assets" remove_file "stylesheets/select2.css" end
# File lib/select2-rails/source_file.rb, line 25 def convert self.destination_root = "app/assets" inside destination_root do run("cp stylesheets/select2.css stylesheets/select2.css.erb") gsub_file 'stylesheets/select2.css.erb', /url\(([^\)]*)\)/, 'url(<%= asset_path(\1) %>)' end end
# File lib/select2-rails/source_file.rb, line 9 def fetch filtered_tags = fetch_tags tag = select("Which tag do you want to fetch?", filtered_tags) self.destination_root = "app/assets" remote = "https://github.com/ivaynberg/select2" get "#{remote}/raw/#{tag}/select2.png", "images/select2.png" get "#{remote}/raw/#{tag}/select2x2.png", "images/select2x2.png" get "#{remote}/raw/#{tag}/select2-spinner.gif", "images/select2-spinner.gif" get "#{remote}/raw/#{tag}/select2.css", "stylesheets/select2.css" get "#{remote}/raw/#{tag}/select2.js", "javascripts/select2.js" languages.each do |lang| get "#{remote}/raw/#{tag}/select2_locale_#{lang}.js", "javascripts/select2_locale_#{lang}.js" end end
Generated with the Darkfish Rdoc Generator 2.