rails_bootstrap_helper 1.5.2

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.
Files changed (50) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +19 -0
  3. data/CHANGELOG.md +20 -0
  4. data/Gemfile +4 -0
  5. data/README.md +13 -0
  6. data/Rakefile +38 -0
  7. data/lib/rails_bootstrap_helper.rb +11 -0
  8. data/lib/rails_bootstrap_helper/engine.rb +10 -0
  9. data/lib/rails_bootstrap_helper/helper.rb +103 -0
  10. data/lib/rails_bootstrap_helper/railtie.rb +6 -0
  11. data/lib/rails_bootstrap_helper/version.rb +3 -0
  12. data/rails_bootstrap_helper.gemspec +27 -0
  13. data/test/dummy/README.rdoc +261 -0
  14. data/test/dummy/Rakefile +7 -0
  15. data/test/dummy/app/assets/javascripts/application.js +15 -0
  16. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  17. data/test/dummy/app/controllers/application_controller.rb +3 -0
  18. data/test/dummy/app/helpers/application_helper.rb +2 -0
  19. data/test/dummy/app/mailers/.gitkeep +0 -0
  20. data/test/dummy/app/models/.gitkeep +0 -0
  21. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  22. data/test/dummy/config.ru +4 -0
  23. data/test/dummy/config/application.rb +51 -0
  24. data/test/dummy/config/boot.rb +10 -0
  25. data/test/dummy/config/database.yml +25 -0
  26. data/test/dummy/config/environment.rb +5 -0
  27. data/test/dummy/config/environments/development.rb +36 -0
  28. data/test/dummy/config/environments/production.rb +69 -0
  29. data/test/dummy/config/environments/test.rb +36 -0
  30. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  31. data/test/dummy/config/initializers/inflections.rb +15 -0
  32. data/test/dummy/config/initializers/mime_types.rb +5 -0
  33. data/test/dummy/config/initializers/secret_token.rb +7 -0
  34. data/test/dummy/config/initializers/session_store.rb +8 -0
  35. data/test/dummy/config/initializers/simple_form.rb +210 -0
  36. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  37. data/test/dummy/config/locales/en.yml +5 -0
  38. data/test/dummy/config/routes.rb +58 -0
  39. data/test/dummy/db/schema.rb +29 -0
  40. data/test/dummy/db/test.sqlite3 +0 -0
  41. data/test/dummy/lib/assets/.gitkeep +0 -0
  42. data/test/dummy/log/.gitkeep +0 -0
  43. data/test/dummy/public/404.html +26 -0
  44. data/test/dummy/public/422.html +26 -0
  45. data/test/dummy/public/500.html +25 -0
  46. data/test/dummy/public/favicon.ico +0 -0
  47. data/test/dummy/script/rails +6 -0
  48. data/test/dummy/test/helpers/rails_bootstrap_helper_test.rb +60 -0
  49. data/test/test_helper.rb +10 -0
  50. metadata +212 -0
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+ #
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json]
9
+ end
10
+
11
+ # Disable root element in JSON by default.
12
+ ActiveSupport.on_load(:active_record) do
13
+ self.include_root_in_json = false
14
+ end
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,58 @@
1
+ Dummy::Application.routes.draw do
2
+ # The priority is based upon order of creation:
3
+ # first created -> highest priority.
4
+
5
+ # Sample of regular route:
6
+ # match 'products/:id' => 'catalog#view'
7
+ # Keep in mind you can assign values other than :controller and :action
8
+
9
+ # Sample of named route:
10
+ # match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
11
+ # This route can be invoked with purchase_url(:id => product.id)
12
+
13
+ # Sample resource route (maps HTTP verbs to controller actions automatically):
14
+ # resources :products
15
+
16
+ # Sample resource route with options:
17
+ # resources :products do
18
+ # member do
19
+ # get 'short'
20
+ # post 'toggle'
21
+ # end
22
+ #
23
+ # collection do
24
+ # get 'sold'
25
+ # end
26
+ # end
27
+
28
+ # Sample resource route with sub-resources:
29
+ # resources :products do
30
+ # resources :comments, :sales
31
+ # resource :seller
32
+ # end
33
+
34
+ # Sample resource route with more complex sub-resources
35
+ # resources :products do
36
+ # resources :comments
37
+ # resources :sales do
38
+ # get 'recent', :on => :collection
39
+ # end
40
+ # end
41
+
42
+ # Sample resource route within a namespace:
43
+ # namespace :admin do
44
+ # # Directs /admin/products/* to Admin::ProductsController
45
+ # # (app/controllers/admin/products_controller.rb)
46
+ # resources :products
47
+ # end
48
+
49
+ # You can have the root of your site routed with "root"
50
+ # just remember to delete public/index.html.
51
+ # root :to => 'welcome#index'
52
+
53
+ # See how all your routes lay out with "rake routes"
54
+
55
+ # This is a legacy wild controller route that's not recommended for RESTful applications.
56
+ # Note: This route will make all actions in every controller accessible via GET requests.
57
+ # match ':controller(/:action(/:id))(.:format)'
58
+ end
@@ -0,0 +1,29 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended to check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(:version => 20120222161913) do
15
+
16
+ create_table "bars", :force => true do |t|
17
+ t.string "first_name"
18
+ t.string "last_name"
19
+ t.datetime "created_at", :null => false
20
+ t.datetime "updated_at", :null => false
21
+ end
22
+
23
+ create_table "foos", :force => true do |t|
24
+ t.string "name"
25
+ t.datetime "created_at", :null => false
26
+ t.datetime "updated_at", :null => false
27
+ end
28
+
29
+ end
File without changes
File without changes
File without changes
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/404.html -->
21
+ <div class="dialog">
22
+ <h1>The page you were looking for doesn't exist.</h1>
23
+ <p>You may have mistyped the address or the page may have moved.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,25 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ </div>
24
+ </body>
25
+ </html>
File without changes
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1,60 @@
1
+ require 'test_helper'
2
+
3
+ class RailsBootstrapHelperTest < ActionView::TestCase
4
+ include SimpleForm::ActionViewExtensions::FormHelper
5
+ tests RailsBootstrapHelper::Helper
6
+
7
+ def test_status_tag
8
+ assert_equal '<span class="badge badge-secondary">Default</span>', status_tag("Default")
9
+ assert_equal '<span class="badge badge-success">Success</span>', status_tag("Success", level: 'success')
10
+ assert_equal '<span class="badge badge-warning">Warning</span>', status_tag("Warning", level: 'warning')
11
+ assert_equal '<span class="badge badge-important">Important</span>', status_tag("Important", level: 'important')
12
+ assert_equal '<span class="badge badge-info">Info</span>', status_tag("Info", level: 'info')
13
+ assert_equal '<span class="badge badge-inverse">Inverse</span>', status_tag("Inverse", level: 'inverse')
14
+ assert_equal '<span class="badge badge-inverse custom">Custom Class</span>', status_tag("Custom Class", level: 'inverse', class: "custom")
15
+ assert_equal '<span id="custom" class="badge badge-inverse">Custom ID</span>', status_tag("Custom ID", level: 'inverse', id: "custom")
16
+ end
17
+
18
+ def test_badge_tag
19
+ assert_equal '<span class="badge badge-secondary">Default</span>', badge_tag("Default")
20
+ assert_equal '<span class="badge badge-success">Success</span>', badge_tag("Success", level: 'success')
21
+ assert_equal '<span class="badge badge-warning">Warning</span>', badge_tag("Warning", level: 'warning')
22
+ assert_equal '<span class="badge badge-danger">Danger</span>', badge_tag("Danger", level: 'danger')
23
+ assert_equal '<span class="badge badge-info">Info</span>', badge_tag("Info", level: 'info')
24
+ assert_equal '<span class="badge badge-primary">Primary</span>', badge_tag("Primary", level: 'primary')
25
+ assert_equal '<span class="badge badge-primary custom">Custom Class</span>', badge_tag("Custom Class", level: 'primary', class: "custom")
26
+ assert_equal '<span id="custom" class="badge badge-primary">Custom ID</span>', badge_tag("Custom ID", level: 'primary', id: "custom")
27
+ end
28
+
29
+ def test_pill_badge_tag
30
+ assert_equal '<span class="badge badge-pill badge-secondary">Default</span>', pill_badge_tag("Default")
31
+ assert_equal '<span class="badge badge-pill badge-success">Success</span>', pill_badge_tag("Success", level: 'success')
32
+ end
33
+
34
+ def test_button_link_to
35
+ assert_equal '<a class="btn btn-secondary" href="http://google.com">Default</a>', button_link_to("Default", "http://google.com")
36
+ assert_equal '<a class="btn btn-link" href="http://google.com">Link</a>', button_link_to("Link", "http://google.com", level: 'link')
37
+ assert_equal '<a class="btn btn-secondary btn-small" href="http://google.com">Small Button</a>', button_link_to("Small Button", "http://google.com", size: 'small')
38
+ assert_equal '<a class="btn btn-success" href="http://google.com">Default Success</a>', button_link_to("Default Success", "http://google.com", level: 'success')
39
+ assert_equal '<a class="btn btn-success btn-small" href="http://google.com">Default Small Success</a>', button_link_to("Default Small Success", "http://google.com", size: 'small', level: 'success')
40
+ assert_equal '<a class="btn btn-success btn-small custom" href="http://google.com">Custom Class Default Small Success</a>', button_link_to("Custom Class Default Small Success", "http://google.com", class: "custom", size: 'small', level: 'success')
41
+ assert_equal '<a id="custom" class="btn btn-success btn-small" href="http://google.com">Custom ID Default Small Success</a>', button_link_to("Custom ID Default Small Success", "http://google.com", id: "custom", size: 'small', level: 'success')
42
+ end
43
+
44
+ def test_button_link_to_outline
45
+ assert_equal '<a class="btn btn-outline-secondary" href="http://google.com">Default</a>', button_link_to("Default", "http://google.com", level: 'outline-secondary')
46
+ end
47
+
48
+ def test_icon_button_link_to
49
+ assert_equal '<a class="btn btn-secondary" href="http://google.com"><span class="icon icon-plus"></span> Default</a>', icon_button_link_to("Default", "http://google.com", icon: 'plus')
50
+ assert_equal '<a class="btn btn-secondary btn-small" href="http://google.com"><span class="icon icon-plus"></span> Small Button</a>', icon_button_link_to("Small Button", "http://google.com", size: 'small', icon: 'plus')
51
+ assert_equal '<a class="btn btn-success" href="http://google.com"><span class="icon icon-plus"></span> Default Success</a>', icon_button_link_to("Default Success", "http://google.com", level: 'success', icon: 'plus')
52
+ assert_equal '<a class="btn btn-success btn-small" href="http://google.com"><span class="icon icon-plus"></span> Default Small Success</a>', icon_button_link_to("Default Small Success", "http://google.com", size: 'small', level: 'success', icon: 'plus')
53
+ assert_equal '<a class="btn btn-success btn-small custom" href="http://google.com"><span class="icon icon-plus"></span> Custom Class Default Small Success</a>', icon_button_link_to("Custom Class Default Small Success", "http://google.com", class: "custom", size: 'small', level: 'success', icon: 'plus')
54
+ assert_equal '<a id="custom" class="btn btn-success btn-small" href="http://google.com"><span class="icon icon-plus"></span> Custom ID Default Small Success</a>', icon_button_link_to("Custom ID Default Small Success", "http://google.com", id: "custom", size: 'small', level: 'success', icon: 'plus')
55
+ end
56
+
57
+ def test_icon_tag
58
+ assert_equal icon_tag('star'), '<span class="icon icon-star"></span>'
59
+ end
60
+ end
@@ -0,0 +1,10 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
5
+ require "rails/test_help"
6
+
7
+ Rails.backtrace_cleaner.remove_silencers!
8
+
9
+ # Load support files
10
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
metadata ADDED
@@ -0,0 +1,212 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rails_bootstrap_helper
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.5.2
5
+ platform: ruby
6
+ authors:
7
+ - Hoang Nghiem
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-11-21 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: railties
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '4.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '4.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: simple_form
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '3.0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '3.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: thor
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '0.14'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '0.14'
55
+ - !ruby/object:Gem::Dependency
56
+ name: bundler
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: 1.0.0
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: 1.0.0
69
+ - !ruby/object:Gem::Dependency
70
+ name: rails
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: 4.0.0
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: 4.0.0
83
+ - !ruby/object:Gem::Dependency
84
+ name: sqlite3
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ description: Bootstrap Helpers for Ruby on Rails
98
+ email:
99
+ - hoangnghiem1711@gmail.com
100
+ executables: []
101
+ extensions: []
102
+ extra_rdoc_files: []
103
+ files:
104
+ - ".gitignore"
105
+ - CHANGELOG.md
106
+ - Gemfile
107
+ - README.md
108
+ - Rakefile
109
+ - lib/rails_bootstrap_helper.rb
110
+ - lib/rails_bootstrap_helper/engine.rb
111
+ - lib/rails_bootstrap_helper/helper.rb
112
+ - lib/rails_bootstrap_helper/railtie.rb
113
+ - lib/rails_bootstrap_helper/version.rb
114
+ - rails_bootstrap_helper.gemspec
115
+ - test/dummy/README.rdoc
116
+ - test/dummy/Rakefile
117
+ - test/dummy/app/assets/javascripts/application.js
118
+ - test/dummy/app/assets/stylesheets/application.css
119
+ - test/dummy/app/controllers/application_controller.rb
120
+ - test/dummy/app/helpers/application_helper.rb
121
+ - test/dummy/app/mailers/.gitkeep
122
+ - test/dummy/app/models/.gitkeep
123
+ - test/dummy/app/views/layouts/application.html.erb
124
+ - test/dummy/config.ru
125
+ - test/dummy/config/application.rb
126
+ - test/dummy/config/boot.rb
127
+ - test/dummy/config/database.yml
128
+ - test/dummy/config/environment.rb
129
+ - test/dummy/config/environments/development.rb
130
+ - test/dummy/config/environments/production.rb
131
+ - test/dummy/config/environments/test.rb
132
+ - test/dummy/config/initializers/backtrace_silencers.rb
133
+ - test/dummy/config/initializers/inflections.rb
134
+ - test/dummy/config/initializers/mime_types.rb
135
+ - test/dummy/config/initializers/secret_token.rb
136
+ - test/dummy/config/initializers/session_store.rb
137
+ - test/dummy/config/initializers/simple_form.rb
138
+ - test/dummy/config/initializers/wrap_parameters.rb
139
+ - test/dummy/config/locales/en.yml
140
+ - test/dummy/config/routes.rb
141
+ - test/dummy/db/schema.rb
142
+ - test/dummy/db/test.sqlite3
143
+ - test/dummy/lib/assets/.gitkeep
144
+ - test/dummy/log/.gitkeep
145
+ - test/dummy/public/404.html
146
+ - test/dummy/public/422.html
147
+ - test/dummy/public/500.html
148
+ - test/dummy/public/favicon.ico
149
+ - test/dummy/script/rails
150
+ - test/dummy/test/helpers/rails_bootstrap_helper_test.rb
151
+ - test/test_helper.rb
152
+ homepage: https://github.com/hoangnghiem/rails_bootstrap_helper
153
+ licenses: []
154
+ metadata: {}
155
+ post_install_message:
156
+ rdoc_options: []
157
+ require_paths:
158
+ - lib
159
+ required_ruby_version: !ruby/object:Gem::Requirement
160
+ requirements:
161
+ - - ">="
162
+ - !ruby/object:Gem::Version
163
+ version: '0'
164
+ required_rubygems_version: !ruby/object:Gem::Requirement
165
+ requirements:
166
+ - - ">="
167
+ - !ruby/object:Gem::Version
168
+ version: '0'
169
+ requirements: []
170
+ rubyforge_project:
171
+ rubygems_version: 2.6.11
172
+ signing_key:
173
+ specification_version: 4
174
+ summary: Bootstrap Helpers for Ruby on Rails
175
+ test_files:
176
+ - test/dummy/README.rdoc
177
+ - test/dummy/Rakefile
178
+ - test/dummy/app/assets/javascripts/application.js
179
+ - test/dummy/app/assets/stylesheets/application.css
180
+ - test/dummy/app/controllers/application_controller.rb
181
+ - test/dummy/app/helpers/application_helper.rb
182
+ - test/dummy/app/mailers/.gitkeep
183
+ - test/dummy/app/models/.gitkeep
184
+ - test/dummy/app/views/layouts/application.html.erb
185
+ - test/dummy/config.ru
186
+ - test/dummy/config/application.rb
187
+ - test/dummy/config/boot.rb
188
+ - test/dummy/config/database.yml
189
+ - test/dummy/config/environment.rb
190
+ - test/dummy/config/environments/development.rb
191
+ - test/dummy/config/environments/production.rb
192
+ - test/dummy/config/environments/test.rb
193
+ - test/dummy/config/initializers/backtrace_silencers.rb
194
+ - test/dummy/config/initializers/inflections.rb
195
+ - test/dummy/config/initializers/mime_types.rb
196
+ - test/dummy/config/initializers/secret_token.rb
197
+ - test/dummy/config/initializers/session_store.rb
198
+ - test/dummy/config/initializers/simple_form.rb
199
+ - test/dummy/config/initializers/wrap_parameters.rb
200
+ - test/dummy/config/locales/en.yml
201
+ - test/dummy/config/routes.rb
202
+ - test/dummy/db/schema.rb
203
+ - test/dummy/db/test.sqlite3
204
+ - test/dummy/lib/assets/.gitkeep
205
+ - test/dummy/log/.gitkeep
206
+ - test/dummy/public/404.html
207
+ - test/dummy/public/422.html
208
+ - test/dummy/public/500.html
209
+ - test/dummy/public/favicon.ico
210
+ - test/dummy/script/rails
211
+ - test/dummy/test/helpers/rails_bootstrap_helper_test.rb
212
+ - test/test_helper.rb