generic_form_for 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.document +5 -0
- data/.rspec +2 -0
- data/.rvmrc +1 -0
- data/Gemfile +2 -0
- data/Gemfile.lock +123 -0
- data/MIT-LICENSE +20 -0
- data/README.textile +217 -0
- data/Rakefile +52 -0
- data/VERSION +1 -0
- data/generic_form_for.gemspec +232 -0
- data/generic_form_for.tmproj +166 -0
- data/lib/generators/generic_form_for/form_builder/form_builder_generator.rb +16 -0
- data/lib/generators/generic_form_for/form_builder/templates/form_builder.erb +37 -0
- data/lib/generators/generic_form_for/form_builder/templates/helper.erb +15 -0
- data/lib/generators/generic_form_for/install/install_generator.rb +20 -0
- data/lib/generators/generic_form_for/install/templates/_form.html.erb +11 -0
- data/lib/generators/generic_form_for/install/templates/_form.html.haml +8 -0
- data/lib/generators/generic_form_for/install/templates/form_for.en.yml +11 -0
- data/lib/generators/generic_form_for/install/templates/initializer.rb +5 -0
- data/lib/generic_form_for.rb +22 -0
- data/lib/generic_form_for/actions.rb +10 -0
- data/lib/generic_form_for/actions/base.rb +63 -0
- data/lib/generic_form_for/actions/base/icon.rb +24 -0
- data/lib/generic_form_for/actions/button_action.rb +14 -0
- data/lib/generic_form_for/actions/input_action.rb +11 -0
- data/lib/generic_form_for/engine.rb +11 -0
- data/lib/generic_form_for/form_builder.rb +111 -0
- data/lib/generic_form_for/helpers.rb +10 -0
- data/lib/generic_form_for/helpers/action_helper.rb +52 -0
- data/lib/generic_form_for/helpers/actions_helper.rb +35 -0
- data/lib/generic_form_for/helpers/fieldset_helper.rb +48 -0
- data/lib/generic_form_for/helpers/form_helper.rb +64 -0
- data/lib/generic_form_for/helpers/input_helper.rb +77 -0
- data/lib/generic_form_for/i18n.rb +44 -0
- data/lib/generic_form_for/inputs.rb +22 -0
- data/lib/generic_form_for/inputs/base.rb +98 -0
- data/lib/generic_form_for/inputs/base/error_message.rb +30 -0
- data/lib/generic_form_for/inputs/base/hint.rb +28 -0
- data/lib/generic_form_for/inputs/base/label.rb +42 -0
- data/lib/generic_form_for/inputs/base/number.rb +18 -0
- data/lib/generic_form_for/inputs/base/placeholder.rb +20 -0
- data/lib/generic_form_for/inputs/base/string.rb +17 -0
- data/lib/generic_form_for/inputs/base/validations.rb +42 -0
- data/lib/generic_form_for/inputs/boolean_input.rb +35 -0
- data/lib/generic_form_for/inputs/email_input.rb +19 -0
- data/lib/generic_form_for/inputs/file_input.rb +13 -0
- data/lib/generic_form_for/inputs/hidden_input.rb +23 -0
- data/lib/generic_form_for/inputs/number_input.rb +20 -0
- data/lib/generic_form_for/inputs/password_input.rb +13 -0
- data/lib/generic_form_for/inputs/phone_input.rb +19 -0
- data/lib/generic_form_for/inputs/range_input.rb +19 -0
- data/lib/generic_form_for/inputs/search_input.rb +19 -0
- data/lib/generic_form_for/inputs/select_input.rb +32 -0
- data/lib/generic_form_for/inputs/string_input.rb +13 -0
- data/lib/generic_form_for/inputs/text_input.rb +20 -0
- data/lib/generic_form_for/inputs/url_input.rb +19 -0
- data/sample_app/.gitignore +15 -0
- data/sample_app/Gemfile +15 -0
- data/sample_app/Gemfile.lock +130 -0
- data/sample_app/README.rdoc +261 -0
- data/sample_app/Rakefile +7 -0
- data/sample_app/app/assets/images/rails.png +0 -0
- data/sample_app/app/assets/javascripts/application.js +14 -0
- data/sample_app/app/assets/javascripts/posts.js.coffee +3 -0
- data/sample_app/app/assets/javascripts/samples.js.coffee +3 -0
- data/sample_app/app/assets/stylesheets/application.css +14 -0
- data/sample_app/app/assets/stylesheets/posts.css.scss +3 -0
- data/sample_app/app/assets/stylesheets/samples.css.scss +3 -0
- data/sample_app/app/assets/stylesheets/scaffolds.css.scss +56 -0
- data/sample_app/app/controllers/application_controller.rb +3 -0
- data/sample_app/app/controllers/samples_controller.rb +83 -0
- data/sample_app/app/form_builders/sample_form_builder.rb +17 -0
- data/sample_app/app/helpers/application_helper.rb +2 -0
- data/sample_app/app/helpers/sample_form_builder_helper.rb +15 -0
- data/sample_app/app/helpers/samples_helper.rb +2 -0
- data/sample_app/app/mailers/.gitkeep +0 -0
- data/sample_app/app/models/.gitkeep +0 -0
- data/sample_app/app/models/sample.rb +29 -0
- data/sample_app/app/views/layouts/application.html.erb +16 -0
- data/sample_app/app/views/samples/_form.html.erb +49 -0
- data/sample_app/app/views/samples/edit.html.erb +6 -0
- data/sample_app/app/views/samples/index.html.erb +21 -0
- data/sample_app/app/views/samples/new.html.erb +5 -0
- data/sample_app/app/views/samples/show.html.erb +5 -0
- data/sample_app/config.ru +4 -0
- data/sample_app/config/application.rb +65 -0
- data/sample_app/config/boot.rb +6 -0
- data/sample_app/config/database.yml +25 -0
- data/sample_app/config/environment.rb +5 -0
- data/sample_app/config/environments/development.rb +37 -0
- data/sample_app/config/environments/production.rb +67 -0
- data/sample_app/config/environments/test.rb +37 -0
- data/sample_app/config/initializers/backtrace_silencers.rb +7 -0
- data/sample_app/config/initializers/generic_form_for.rb +5 -0
- data/sample_app/config/initializers/inflections.rb +15 -0
- data/sample_app/config/initializers/mime_types.rb +5 -0
- data/sample_app/config/initializers/secret_token.rb +7 -0
- data/sample_app/config/initializers/session_store.rb +8 -0
- data/sample_app/config/initializers/wrap_parameters.rb +14 -0
- data/sample_app/config/locales/en.yml +22 -0
- data/sample_app/config/locales/form_for.en.yml +13 -0
- data/sample_app/config/routes.rb +61 -0
- data/sample_app/db/migrate/20120203082117_create_samples.rb +22 -0
- data/sample_app/db/schema.rb +36 -0
- data/sample_app/db/seeds.rb +7 -0
- data/sample_app/lib/assets/.gitkeep +0 -0
- data/sample_app/lib/tasks/.gitkeep +0 -0
- data/sample_app/lib/templates/erb/scaffold/_form.html.erb +11 -0
- data/sample_app/log/.gitkeep +0 -0
- data/sample_app/public/404.html +26 -0
- data/sample_app/public/422.html +26 -0
- data/sample_app/public/500.html +25 -0
- data/sample_app/public/favicon.ico +0 -0
- data/sample_app/public/robots.txt +5 -0
- data/sample_app/script/rails +6 -0
- data/sample_app/vendor/assets/javascripts/.gitkeep +0 -0
- data/sample_app/vendor/assets/stylesheets/.gitkeep +0 -0
- data/sample_app/vendor/plugins/.gitkeep +0 -0
- data/spec/actions/base/icon_spec.rb +38 -0
- data/spec/actions/button_action_spec.rb +43 -0
- data/spec/actions/input_action_spec.rb +66 -0
- data/spec/helpers/action_helper_spec.rb +32 -0
- data/spec/helpers/actions_helper_spec.rb +60 -0
- data/spec/helpers/fieldset_helper_spec.rb +83 -0
- data/spec/helpers/form_helper_spec.rb +101 -0
- data/spec/helpers/input_helper_spec.rb +66 -0
- data/spec/i18n_spec.rb +46 -0
- data/spec/inputs/base/error_message_spec.rb +86 -0
- data/spec/inputs/base/hint_spec.rb +77 -0
- data/spec/inputs/base/label_spec.rb +99 -0
- data/spec/inputs/base/number_spec.rb +32 -0
- data/spec/inputs/base/placeholder_spec.rb +32 -0
- data/spec/inputs/base/string_spec.rb +25 -0
- data/spec/inputs/base/validations_spec.rb +53 -0
- data/spec/inputs/base_spec.rb +69 -0
- data/spec/inputs/boolean_input_spec.rb +95 -0
- data/spec/inputs/email_input_spec.rb +30 -0
- data/spec/inputs/file_input_spec.rb +30 -0
- data/spec/inputs/hidden_input_spec.rb +30 -0
- data/spec/inputs/number_input_spec.rb +37 -0
- data/spec/inputs/password_input_spec.rb +30 -0
- data/spec/inputs/phone_input_spec.rb +30 -0
- data/spec/inputs/range_input_spec.rb +37 -0
- data/spec/inputs/search_input_spec.rb +30 -0
- data/spec/inputs/select_input_spec.rb +51 -0
- data/spec/inputs/string_input_spec.rb +115 -0
- data/spec/inputs/text_input_spec.rb +30 -0
- data/spec/inputs/url_input_spec.rb +30 -0
- data/spec/spec_helper.rb +122 -0
- metadata +374 -0
data/sample_app/Rakefile
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
#!/usr/bin/env rake
|
2
|
+
# Add your own tasks in files placed in lib/tasks ending in .rake,
|
3
|
+
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
|
4
|
+
|
5
|
+
require File.expand_path('../config/application', __FILE__)
|
6
|
+
|
7
|
+
SampleApp::Application.load_tasks
|
Binary file
|
@@ -0,0 +1,14 @@
|
|
1
|
+
// This is a manifest file that'll be compiled into application.js, which will include all the files
|
2
|
+
// listed below.
|
3
|
+
//
|
4
|
+
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
|
5
|
+
// or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
|
6
|
+
//
|
7
|
+
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
|
8
|
+
// the compiled file.
|
9
|
+
//
|
10
|
+
// WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
|
11
|
+
// GO AFTER THE REQUIRES BELOW.
|
12
|
+
//
|
13
|
+
//= require twitter/bootstrap
|
14
|
+
//= require_tree .
|
@@ -0,0 +1,14 @@
|
|
1
|
+
/*
|
2
|
+
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
3
|
+
* listed below.
|
4
|
+
*
|
5
|
+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
6
|
+
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
|
7
|
+
*
|
8
|
+
* You're free to add application-wide styles to this file and they'll appear at the top of the
|
9
|
+
* compiled file, but it's generally better to create a new file per style scope.
|
10
|
+
*
|
11
|
+
*= require twitter/bootstrap
|
12
|
+
*= require_self
|
13
|
+
*= require_tree .
|
14
|
+
*/
|
@@ -0,0 +1,56 @@
|
|
1
|
+
body {
|
2
|
+
background-color: #fff;
|
3
|
+
color: #333;
|
4
|
+
font-family: verdana, arial, helvetica, sans-serif;
|
5
|
+
font-size: 13px;
|
6
|
+
line-height: 18px; }
|
7
|
+
|
8
|
+
p, ol, ul, td {
|
9
|
+
font-family: verdana, arial, helvetica, sans-serif;
|
10
|
+
font-size: 13px;
|
11
|
+
line-height: 18px; }
|
12
|
+
|
13
|
+
pre {
|
14
|
+
background-color: #eee;
|
15
|
+
padding: 10px;
|
16
|
+
font-size: 11px; }
|
17
|
+
|
18
|
+
a {
|
19
|
+
color: #000;
|
20
|
+
&:visited {
|
21
|
+
color: #666; }
|
22
|
+
&:hover {
|
23
|
+
color: #fff;
|
24
|
+
background-color: #000; } }
|
25
|
+
|
26
|
+
div {
|
27
|
+
&.field, &.actions {
|
28
|
+
margin-bottom: 10px; } }
|
29
|
+
|
30
|
+
#notice {
|
31
|
+
color: green; }
|
32
|
+
|
33
|
+
.field_with_errors {
|
34
|
+
padding: 2px;
|
35
|
+
background-color: red;
|
36
|
+
display: table; }
|
37
|
+
|
38
|
+
#error_explanation {
|
39
|
+
width: 450px;
|
40
|
+
border: 2px solid red;
|
41
|
+
padding: 7px;
|
42
|
+
padding-bottom: 0;
|
43
|
+
margin-bottom: 20px;
|
44
|
+
background-color: #f0f0f0;
|
45
|
+
h2 {
|
46
|
+
text-align: left;
|
47
|
+
font-weight: bold;
|
48
|
+
padding: 5px 5px 5px 15px;
|
49
|
+
font-size: 12px;
|
50
|
+
margin: -7px;
|
51
|
+
margin-bottom: 0px;
|
52
|
+
background-color: #c00;
|
53
|
+
color: #fff; }
|
54
|
+
ul li {
|
55
|
+
font-size: 12px;
|
56
|
+
list-style: square; } }
|
@@ -0,0 +1,83 @@
|
|
1
|
+
class SamplesController < ApplicationController
|
2
|
+
# GET /samples
|
3
|
+
# GET /samples.json
|
4
|
+
def index
|
5
|
+
@samples = Sample.all
|
6
|
+
|
7
|
+
respond_to do |format|
|
8
|
+
format.html # index.html.erb
|
9
|
+
format.json { render json: @samples }
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
# GET /samples/1
|
14
|
+
# GET /samples/1.json
|
15
|
+
def show
|
16
|
+
@sample = Sample.find(params[:id])
|
17
|
+
|
18
|
+
respond_to do |format|
|
19
|
+
format.html # show.html.erb
|
20
|
+
format.json { render json: @sample }
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
# GET /samples/new
|
25
|
+
# GET /samples/new.json
|
26
|
+
def new
|
27
|
+
@sample = Sample.new
|
28
|
+
|
29
|
+
respond_to do |format|
|
30
|
+
format.html # new.html.erb
|
31
|
+
format.json { render json: @sample }
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
# GET /samples/1/edit
|
36
|
+
def edit
|
37
|
+
@sample = Sample.find(params[:id])
|
38
|
+
end
|
39
|
+
|
40
|
+
# POST /samples
|
41
|
+
# POST /samples.json
|
42
|
+
def create
|
43
|
+
@sample = Sample.new(params[:sample])
|
44
|
+
|
45
|
+
respond_to do |format|
|
46
|
+
if @sample.save
|
47
|
+
format.html { redirect_to @sample, notice: 'Sample was successfully created.' }
|
48
|
+
format.json { render json: @sample, status: :created, location: @sample }
|
49
|
+
else
|
50
|
+
format.html { render action: "new" }
|
51
|
+
format.json { render json: @sample.errors, status: :unprocessable_entity }
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
# PUT /samples/1
|
57
|
+
# PUT /samples/1.json
|
58
|
+
def update
|
59
|
+
@sample = Sample.find(params[:id])
|
60
|
+
|
61
|
+
respond_to do |format|
|
62
|
+
if @sample.update_attributes(params[:sample])
|
63
|
+
format.html { redirect_to @sample, notice: 'Sample was successfully updated.' }
|
64
|
+
format.json { head :no_content }
|
65
|
+
else
|
66
|
+
format.html { render action: "edit" }
|
67
|
+
format.json { render json: @sample.errors, status: :unprocessable_entity }
|
68
|
+
end
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
# DELETE /samples/1
|
73
|
+
# DELETE /samples/1.json
|
74
|
+
def destroy
|
75
|
+
@sample = Sample.find(params[:id])
|
76
|
+
@sample.destroy
|
77
|
+
|
78
|
+
respond_to do |format|
|
79
|
+
format.html { redirect_to samples_url }
|
80
|
+
format.json { head :no_content }
|
81
|
+
end
|
82
|
+
end
|
83
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
module SampleFormBuilder
|
2
|
+
class SampleFormBuilder < GenericFormFor::FormBuilder
|
3
|
+
|
4
|
+
#customize form tag
|
5
|
+
form_wrapper do
|
6
|
+
form_html :class => "project1-form"
|
7
|
+
end
|
8
|
+
|
9
|
+
#pack your input with legend and error message
|
10
|
+
input_wrapper do
|
11
|
+
label_html
|
12
|
+
input_html
|
13
|
+
error_html :class => "input-error-message"
|
14
|
+
end
|
15
|
+
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
module SampleFormBuilderHelper
|
2
|
+
|
3
|
+
def sample_form_for(record, *args, &proc)
|
4
|
+
options = args.last.is_a?(Hash) ? args.pop : {}
|
5
|
+
options[:builder] = SampleFormBuilder::SampleFormBuilder
|
6
|
+
generic_form_for(record, *(args << options), &proc)
|
7
|
+
end
|
8
|
+
|
9
|
+
def sample_fields_for(record, *args, &proc)
|
10
|
+
options = args.last.is_a?(Hash) ? args.pop : {}
|
11
|
+
options[:builder] = SampleFormBuilder::SampleFormBuilder
|
12
|
+
generic_fields_for(name, *(args << options), &proc)
|
13
|
+
end
|
14
|
+
|
15
|
+
end
|
File without changes
|
File without changes
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# == Schema Information
|
2
|
+
#
|
3
|
+
# Table name: samples
|
4
|
+
#
|
5
|
+
# id :integer not null, primary key
|
6
|
+
# active :boolean default(TRUE)
|
7
|
+
# email :string(255) not null
|
8
|
+
# photo :string(255)
|
9
|
+
# secret :string(25)
|
10
|
+
# age :integer
|
11
|
+
# password :string(255)
|
12
|
+
# mobile :string(255)
|
13
|
+
# sex :string(20)
|
14
|
+
# range :integer
|
15
|
+
# search :string(255)
|
16
|
+
# category :string(255)
|
17
|
+
# name :string(255) not null
|
18
|
+
# cv :text
|
19
|
+
# home_page :text
|
20
|
+
# money :decimal(2, 12)
|
21
|
+
# created_at :datetime not null
|
22
|
+
# updated_at :datetime not null
|
23
|
+
#
|
24
|
+
|
25
|
+
class Sample < ActiveRecord::Base
|
26
|
+
validates :name, :presence => true
|
27
|
+
validates :money, :numericality => {:greater_than_or_equal_to => 5, :less_than => 100}
|
28
|
+
|
29
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>SampleApp</title>
|
5
|
+
<%= stylesheet_link_tag "application", :media => "all" %>
|
6
|
+
<%= javascript_include_tag "application" %>
|
7
|
+
<%= csrf_meta_tags %>
|
8
|
+
</head>
|
9
|
+
<body>
|
10
|
+
<div class="container-fluid">
|
11
|
+
<%= yield %>
|
12
|
+
</div>
|
13
|
+
|
14
|
+
|
15
|
+
</body>
|
16
|
+
</html>
|
@@ -0,0 +1,49 @@
|
|
1
|
+
<%= sample_form_for @sample do |f| %>
|
2
|
+
<%= f.builder %>
|
3
|
+
<%= f.fieldset :title do %>
|
4
|
+
<%=f.input :active %>
|
5
|
+
<%=f.input :email, :hint => :email %>
|
6
|
+
<%=f.input :photo, :as => :file %>
|
7
|
+
<%=f.input :secret, :as => :hidden %>
|
8
|
+
<%=f.input :age %>
|
9
|
+
<%=f.input :password, :placeholder => :password %>
|
10
|
+
<%=f.input :mobile %>
|
11
|
+
<%=f.input :sex %>
|
12
|
+
<%=f.input :range, :as => :range %>
|
13
|
+
<%=f.input :search %>
|
14
|
+
<%=f.input :category %>
|
15
|
+
<%=f.input :name %>
|
16
|
+
<%=f.input :cv %>
|
17
|
+
<%=f.input :home_page %>
|
18
|
+
<%=f.input :money %>
|
19
|
+
<% end %>
|
20
|
+
|
21
|
+
<%= f.actions do %>
|
22
|
+
<%= f.action :submit, :as => :button, :icon => "icon-ok-sign" %>
|
23
|
+
<% end %>
|
24
|
+
<% end %>
|
25
|
+
|
26
|
+
<%= generic_form_for @sample do |f| %>
|
27
|
+
<%= f.builder %>
|
28
|
+
<%= f.fieldset :title do %>
|
29
|
+
<%=f.input :active %>
|
30
|
+
<%=f.input :email, :hint => :email %>
|
31
|
+
<%=f.input :photo, :as => :file %>
|
32
|
+
<%=f.input :secret, :as => :hidden %>
|
33
|
+
<%=f.input :age %>
|
34
|
+
<%=f.input :password, :placeholder => :password %>
|
35
|
+
<%=f.input :mobile %>
|
36
|
+
<%=f.input :sex %>
|
37
|
+
<%=f.input :range, :as => :range %>
|
38
|
+
<%=f.input :search %>
|
39
|
+
<%=f.input :category %>
|
40
|
+
<%=f.input :name %>
|
41
|
+
<%=f.input :cv %>
|
42
|
+
<%=f.input :home_page %>
|
43
|
+
<%=f.input :money %>
|
44
|
+
<% end %>
|
45
|
+
|
46
|
+
<%= f.actions do %>
|
47
|
+
<%= f.action :submit, :as => :button %>
|
48
|
+
<% end %>
|
49
|
+
<% end %>
|
@@ -0,0 +1,21 @@
|
|
1
|
+
<h1>Listing samples</h1>
|
2
|
+
|
3
|
+
<table>
|
4
|
+
<tr>
|
5
|
+
<th></th>
|
6
|
+
<th></th>
|
7
|
+
<th></th>
|
8
|
+
</tr>
|
9
|
+
|
10
|
+
<% @samples.each do |sample| %>
|
11
|
+
<tr>
|
12
|
+
<td><%= link_to 'Show', sample %></td>
|
13
|
+
<td><%= link_to 'Edit', edit_sample_path(sample) %></td>
|
14
|
+
<td><%= link_to 'Destroy', sample, confirm: 'Are you sure?', method: :delete %></td>
|
15
|
+
</tr>
|
16
|
+
<% end %>
|
17
|
+
</table>
|
18
|
+
|
19
|
+
<br />
|
20
|
+
|
21
|
+
<%= link_to 'New Sample', new_sample_path %>
|
@@ -0,0 +1,65 @@
|
|
1
|
+
require File.expand_path('../boot', __FILE__)
|
2
|
+
|
3
|
+
# Pick the frameworks you want:
|
4
|
+
require "active_record/railtie"
|
5
|
+
require "action_controller/railtie"
|
6
|
+
require "action_mailer/railtie"
|
7
|
+
require "active_resource/railtie"
|
8
|
+
require "sprockets/railtie"
|
9
|
+
# require "rails/test_unit/railtie"
|
10
|
+
|
11
|
+
if defined?(Bundler)
|
12
|
+
# If you precompile assets before deploying to production, use this line
|
13
|
+
Bundler.require(*Rails.groups(:assets => %w(development test)))
|
14
|
+
# If you want your assets lazily compiled in production, use this line
|
15
|
+
# Bundler.require(:default, :assets, Rails.env)
|
16
|
+
end
|
17
|
+
|
18
|
+
module SampleApp
|
19
|
+
class Application < Rails::Application
|
20
|
+
# Settings in config/environments/* take precedence over those specified here.
|
21
|
+
# Application configuration should go into files in config/initializers
|
22
|
+
# -- all .rb files in that directory are automatically loaded.
|
23
|
+
|
24
|
+
# Custom directories with classes and modules you want to be autoloadable.
|
25
|
+
# config.autoload_paths += %W(#{config.root}/extras)
|
26
|
+
|
27
|
+
# Only load the plugins named here, in the order given (default is alphabetical).
|
28
|
+
# :all can be used as a placeholder for all plugins not explicitly named.
|
29
|
+
# config.plugins = [ :exception_notification, :ssl_requirement, :all ]
|
30
|
+
|
31
|
+
# Activate observers that should always be running.
|
32
|
+
# config.active_record.observers = :cacher, :garbage_collector, :forum_observer
|
33
|
+
|
34
|
+
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
35
|
+
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
36
|
+
# config.time_zone = 'Central Time (US & Canada)'
|
37
|
+
|
38
|
+
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
39
|
+
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
40
|
+
# config.i18n.default_locale = :de
|
41
|
+
|
42
|
+
# Configure the default encoding used in templates for Ruby 1.9.
|
43
|
+
config.encoding = "utf-8"
|
44
|
+
|
45
|
+
# Configure sensitive parameters which will be filtered from the log file.
|
46
|
+
config.filter_parameters += [:password]
|
47
|
+
|
48
|
+
# Use SQL instead of Active Record's schema dumper when creating the database.
|
49
|
+
# This is necessary if your schema can't be completely dumped by the schema dumper,
|
50
|
+
# like if you have constraints or database-specific column types
|
51
|
+
# config.active_record.schema_format = :sql
|
52
|
+
|
53
|
+
# Enforce whitelist mode for mass assignment.
|
54
|
+
# This will create an empty whitelist of attributes available for mass-assignment for all models
|
55
|
+
# in your app. As such, your models will need to explicitly whitelist or blacklist accessible
|
56
|
+
# parameters by using an attr_accessible or attr_protected declaration.
|
57
|
+
# config.active_record.whitelist_attributes = true
|
58
|
+
|
59
|
+
# Enable the asset pipeline
|
60
|
+
config.assets.enabled = true
|
61
|
+
|
62
|
+
# Version of your assets, change this if you want to expire all your assets
|
63
|
+
config.assets.version = '1.0'
|
64
|
+
end
|
65
|
+
end
|