Sha256: 6639a805eeebb2fb6e20b491e5b57d253d63e6c979cbd4d73d245b657dfe2ed5

Contents?: true

Size: 806 Bytes

Versions: 2

Compression:

Stored size: 806 Bytes

Contents

module Bently
  class SimpleForm < RailsRecipe

    title 'simple_form'
    category 'gem'
    description 'downloads and installs simple_form gem'
    homepage 'https://github.com/plataformatec/simple_form/blob/master/README.md'

    def initialize
      gem 'simple_form'
      bundle
      generate 'simple_form:install'
      todo 'If you want to use the country select, you will need the country_select gem:'
      say 'gem \'country_select\'', ''
      todo 'SimpleForm can be easily integrated to the Twitter Bootstrap. To do that you have to use the bootstrap option in the install generator, like this:'
      say 'rails generate simple_form:install --bootstrap', ''
      say 'You have to be sure that you added a copy of the Twitter Bootstrap assets on your application.', ''
    end

  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
bently-1.0.2 lib/bently/recipe/simple_form.rb
bently-1.0.1 lib/bently/recipe/simple_form.rb