Sha256: 844f72c418f26cdd66ecd4d7354c61aa05ff79ad7f50f83f2dae94bece9b2041

Contents?: true

Size: 495 Bytes

Versions: 3

Compression:

Stored size: 495 Bytes

Contents

require 'action_view'
require 'form_cutter/action_view_extensions/form_helper'
require 'form_cutter/action_view_extensions/builder'

module FormCutter
  # Default form and report template paths
  mattr_accessor :forms_path
  @@forms_path = 'forms'

  mattr_accessor :reports_path
  @@reports_path = 'reports'
  
  # Default way to setup FormCutter. Run rails generate form_cutter:install
  # to create a fresh initializer with all configuration values.
  def self.setup
    yield self
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
form_cutter-1.0.2 lib/form_cutter.rb
form_cutter-1.0.1 lib/form_cutter.rb
form_cutter-1.0.0 lib/form_cutter.rb