Sha256: 9af8943fc78a7924ff9c83da6eb82a4a376098216b0ffd5bc243440b4428c488

Contents?: true

Size: 464 Bytes

Versions: 2

Compression:

Stored size: 464 Bytes

Contents

# Complete
module AppDrone
class SimpleForm < Drone
  desc "Installs SimpleForm, with optional Country Select and automatic Twitter Bootstrap integration"
  category :pages

  depends_on :bundle
  pairs_with :bootstrap

  param :add_country_select, :boolean, info: 'Add country_select for listing countries'

  def align
    bundle.add 'simple_form'
    bundle.add 'country_select' if param(:add_country_select)
  end

  def execute
    do! :install
  end
end
end

Version data entries

2 entries across 1 versions & 1 rubygems

Version Path
app_drone-0.4.0 lib/app_drone/drones/simple_form/simple_form.rb
app_drone-0.4.0 lib/app_drone/drones/simple_form/simple_form.rb~