Sha256: a3c307b30ffa5064b4c963dd85b62e81d11101f708770bf6b9de642bb4aa3c38
Contents?: true
Size: 446 Bytes
Versions: 8
Compression:
Stored size: 446 Bytes
Contents
# Complete module AppDrone class SimpleForm < Drone desc "Installs SimpleForm, with optional Country Select and automatic Twitter Bootstrap integration" 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
8 entries across 4 versions & 1 rubygems