Sha256: ce04df25d37f18b651fe92ba0a38bf9ab29a454aa5d1879152b25e2f6e588b9f
Contents?: true
Size: 479 Bytes
Versions: 18
Compression:
Stored size: 479 Bytes
Contents
# Complete module AppDrone class SimpleForm < Drone desc "Installs SimpleForm, with optional Country Select and automatic Twitter Bootstrap integration" category :views depends_on :bundle pairs_with :bootstrap param :add_country_select, :boolean, info: 'Add country_select for listing countries', default: true 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
18 entries across 18 versions & 1 rubygems