settr 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (80) hide show
  1. data/.gitignore +4 -0
  2. data/Gemfile +3 -0
  3. data/README.md +29 -0
  4. data/Rakefile +1 -0
  5. data/app/assets/stylesheets/settr.css.scss +25 -0
  6. data/app/controllers/settr/application_controller.rb +3 -0
  7. data/app/controllers/settr/settings_controller.rb +77 -0
  8. data/app/helpers/application_helper.rb +2 -0
  9. data/app/helpers/settr/settings_helper.rb +14 -0
  10. data/app/models/.gitkeep +0 -0
  11. data/app/models/settr_setting.rb +24 -0
  12. data/app/views/layouts/application.html.erb +14 -0
  13. data/app/views/settr/settings/_form.html.erb +26 -0
  14. data/app/views/settr/settings/_setting.html.erb +39 -0
  15. data/app/views/settr/settings/_settings_form.html.erb +4 -0
  16. data/app/views/settr/settings/edit.html.erb +3 -0
  17. data/app/views/settr/settings/index.html.erb +27 -0
  18. data/app/views/settr/settings/new.html.erb +3 -0
  19. data/app/views/settr/settings/settings.html.erb +1 -0
  20. data/config/locales/de.yml +36 -0
  21. data/config/locales/en.yml +36 -0
  22. data/config/routes.rb +12 -0
  23. data/db/migrate/20110506184758_create_settr_settings.rb +16 -0
  24. data/lib/generators/settr/install_generator.rb +18 -0
  25. data/lib/generators/settr/templates/settr.rb +8 -0
  26. data/lib/settr.rb +84 -0
  27. data/lib/settr/engine.rb +4 -0
  28. data/lib/settr/version.rb +3 -0
  29. data/script/rails +6 -0
  30. data/settr.gemspec +23 -0
  31. data/test/dummy/.gitignore +15 -0
  32. data/test/dummy/Gemfile +8 -0
  33. data/test/dummy/Rakefile +7 -0
  34. data/test/dummy/app/assets/images/rails.png +0 -0
  35. data/test/dummy/app/assets/javascripts/application.js +9 -0
  36. data/test/dummy/app/assets/stylesheets/application.css +8 -0
  37. data/test/dummy/app/controllers/application_controller.rb +3 -0
  38. data/test/dummy/app/helpers/application_helper.rb +2 -0
  39. data/test/dummy/app/mailers/.gitkeep +0 -0
  40. data/test/dummy/app/models/.gitkeep +0 -0
  41. data/test/dummy/app/views/layouts/application.html.erb +20 -0
  42. data/test/dummy/app/views/settr/settings/settings.html.erb +5 -0
  43. data/test/dummy/config.ru +4 -0
  44. data/test/dummy/config/application.rb +50 -0
  45. data/test/dummy/config/boot.rb +8 -0
  46. data/test/dummy/config/database.yml +25 -0
  47. data/test/dummy/config/environment.rb +5 -0
  48. data/test/dummy/config/environments/development.rb +30 -0
  49. data/test/dummy/config/environments/production.rb +60 -0
  50. data/test/dummy/config/environments/test.rb +39 -0
  51. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  52. data/test/dummy/config/initializers/inflections.rb +10 -0
  53. data/test/dummy/config/initializers/mime_types.rb +5 -0
  54. data/test/dummy/config/initializers/secret_token.rb +7 -0
  55. data/test/dummy/config/initializers/session_store.rb +8 -0
  56. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  57. data/test/dummy/config/locales/de.yml +21 -0
  58. data/test/dummy/config/locales/en.yml +21 -0
  59. data/test/dummy/config/routes.rb +3 -0
  60. data/test/dummy/db/schema.rb +26 -0
  61. data/test/dummy/db/seeds.rb +35 -0
  62. data/test/dummy/doc/README_FOR_APP +2 -0
  63. data/test/dummy/lib/assets/.gitkeep +0 -0
  64. data/test/dummy/lib/tasks/.gitkeep +0 -0
  65. data/test/dummy/log/.gitkeep +0 -0
  66. data/test/dummy/public/404.html +26 -0
  67. data/test/dummy/public/422.html +26 -0
  68. data/test/dummy/public/500.html +26 -0
  69. data/test/dummy/public/favicon.ico +0 -0
  70. data/test/dummy/public/robots.txt +5 -0
  71. data/test/dummy/script/rails +6 -0
  72. data/test/dummy/vendor/assets/stylesheets/.gitkeep +0 -0
  73. data/test/dummy/vendor/plugins/.gitkeep +0 -0
  74. data/test/fixtures/.gitkeep +0 -0
  75. data/test/functional/.gitkeep +0 -0
  76. data/test/integration/.gitkeep +0 -0
  77. data/test/performance/browsing_test.rb +12 -0
  78. data/test/test_helper.rb +13 -0
  79. data/test/unit/.gitkeep +0 -0
  80. metadata +219 -0
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,10 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ Dummy::Application.config.secret_token = '19609ce52f80ae54a569a6a38a481554e88fdec052ce6a536e7632597d4f21cd4c7033f762c2b35c5ffa62d27796473931c8387e256eb0b2fd6e098dcdf07d50'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ # Dummy::Application.config.session_store :active_record_store
@@ -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,21 @@
1
+ de:
2
+ settr:
3
+ collection1:
4
+ _title: 'Gliederung 1'
5
+ bool: 'An/Aus'
6
+ group1:
7
+ _title: 'Gruppe 1'
8
+ price: 'Preis'
9
+ number: 'Anzahl'
10
+ group2:
11
+ _title: 'Gruppe 2'
12
+ string: 'Zeichenkette'
13
+ collection2:
14
+ _title: 'Gliederung 2'
15
+ group3:
16
+ _title: 'Gruppe 3'
17
+ select:
18
+ _title: 'Auswahl'
19
+ first_option: 'erste Auswahl'
20
+ second_option: 'zweite Auswahl'
21
+ third_option: 'dritte Auswahl'
@@ -0,0 +1,21 @@
1
+ en:
2
+ settr:
3
+ collection1:
4
+ _title: 'Collection 1'
5
+ bool: 'On/Off'
6
+ group1:
7
+ _title: 'Group 1'
8
+ price: 'Price'
9
+ number: 'Number'
10
+ group2:
11
+ _title: 'Group 2'
12
+ string: 'String'
13
+ collection2:
14
+ _title: 'Collection 2'
15
+ group3:
16
+ _title: 'Group 3'
17
+ select:
18
+ _title: 'Options'
19
+ first_option: 'First Option'
20
+ second_option: 'Second Option'
21
+ third_option: 'Third Option'
@@ -0,0 +1,3 @@
1
+ Dummy::Application.routes.draw do
2
+ root :to => 'settr/settings#settings'
3
+ end
@@ -0,0 +1,26 @@
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 => 20120117203249) do
15
+
16
+ create_table "settr_settings", :force => true do |t|
17
+ t.string "key"
18
+ t.string "value"
19
+ t.string "typ"
20
+ t.string "options", :default => ""
21
+ t.boolean "alterable", :default => true
22
+ t.datetime "created_at"
23
+ t.datetime "updated_at"
24
+ end
25
+
26
+ end
@@ -0,0 +1,35 @@
1
+ SettrSetting.create!({
2
+ :key => 'collection1.group1.price',
3
+ :value => '1.0',
4
+ :typ => 'float',
5
+ :alterable => 'true'
6
+ })
7
+
8
+ SettrSetting.create!({
9
+ :key => 'collection1.bool',
10
+ :value => 'true',
11
+ :typ => 'boolean',
12
+ :alterable => 'true'
13
+ })
14
+
15
+ SettrSetting.create!({
16
+ :key => 'collection1.group1.number',
17
+ :value => '1',
18
+ :typ => 'integer',
19
+ :alterable => 'true'
20
+ })
21
+
22
+ SettrSetting.create!({
23
+ :key => 'collection1.group2.string',
24
+ :value => 'lorem ipsum',
25
+ :typ => 'string',
26
+ :alterable => 'true'
27
+ })
28
+
29
+ SettrSetting.create!({
30
+ :key => 'collection2.group3.select',
31
+ :value => 'first_option',
32
+ :typ => 'select',
33
+ :options => 'first_option, second_option, third_option',
34
+ :alterable => 'true'
35
+ })
@@ -0,0 +1,2 @@
1
+ Use this README file to introduce your application and point to useful places in the API for learning more.
2
+ Run "rake doc:app" to generate API documentation for your models, controllers, helpers, and libraries.
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,26 @@
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
+ <p>We've been notified about this issue and we'll take a look at it shortly.</p>
24
+ </div>
25
+ </body>
26
+ </html>
File without changes
@@ -0,0 +1,5 @@
1
+ # See http://www.robotstxt.org/wc/norobots.html for documentation on how to use the robots.txt file
2
+ #
3
+ # To ban all spiders from the entire site uncomment the next two lines:
4
+ # User-Agent: *
5
+ # Disallow: /
@@ -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'
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1,12 @@
1
+ require 'test_helper'
2
+ require 'rails/performance_test_help'
3
+
4
+ class BrowsingTest < ActionDispatch::PerformanceTest
5
+ # Refer to the documentation for all available options
6
+ # self.profile_options = { :runs => 5, :metrics => [:wall_time, :memory]
7
+ # :output => 'tmp/performance', :formats => [:flat] }
8
+
9
+ def test_homepage
10
+ get '/'
11
+ end
12
+ end
@@ -0,0 +1,13 @@
1
+ ENV["RAILS_ENV"] = "test"
2
+ require File.expand_path('../../config/environment', __FILE__)
3
+ require 'rails/test_help'
4
+
5
+ class ActiveSupport::TestCase
6
+ # Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
7
+ #
8
+ # Note: You'll currently still have to declare fixtures explicitly in integration tests
9
+ # -- they do not yet inherit this setting
10
+ fixtures :all
11
+
12
+ # Add more helper methods to be used by all tests here...
13
+ end
File without changes
metadata ADDED
@@ -0,0 +1,219 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: settr
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Torsten Sprenger, Peter Horn
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-01-17 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rails
16
+ requirement: &70253602696460 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: '3.1'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: *70253602696460
25
+ - !ruby/object:Gem::Dependency
26
+ name: jquery-rails
27
+ requirement: &70253602695480 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ! '>='
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: *70253602695480
36
+ - !ruby/object:Gem::Dependency
37
+ name: sass-rails
38
+ requirement: &70253602693540 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ! '>='
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
44
+ type: :runtime
45
+ prerelease: false
46
+ version_requirements: *70253602693540
47
+ - !ruby/object:Gem::Dependency
48
+ name: simple_form
49
+ requirement: &70253602704940 !ruby/object:Gem::Requirement
50
+ none: false
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: '1.5'
55
+ type: :runtime
56
+ prerelease: false
57
+ version_requirements: *70253602704940
58
+ description: Settr is a hierarchical key-value based storage for configuration settings
59
+ in Rails apps
60
+ email:
61
+ - ts@metaminded.com, ph@metaminded.com
62
+ executables: []
63
+ extensions: []
64
+ extra_rdoc_files: []
65
+ files:
66
+ - .gitignore
67
+ - Gemfile
68
+ - README.md
69
+ - Rakefile
70
+ - app/assets/stylesheets/settr.css.scss
71
+ - app/controllers/settr/application_controller.rb
72
+ - app/controllers/settr/settings_controller.rb
73
+ - app/helpers/application_helper.rb
74
+ - app/helpers/settr/settings_helper.rb
75
+ - app/models/.gitkeep
76
+ - app/models/settr_setting.rb
77
+ - app/views/layouts/application.html.erb
78
+ - app/views/settr/settings/_form.html.erb
79
+ - app/views/settr/settings/_setting.html.erb
80
+ - app/views/settr/settings/_settings_form.html.erb
81
+ - app/views/settr/settings/edit.html.erb
82
+ - app/views/settr/settings/index.html.erb
83
+ - app/views/settr/settings/new.html.erb
84
+ - app/views/settr/settings/settings.html.erb
85
+ - config/locales/de.yml
86
+ - config/locales/en.yml
87
+ - config/routes.rb
88
+ - db/migrate/20110506184758_create_settr_settings.rb
89
+ - lib/generators/settr/install_generator.rb
90
+ - lib/generators/settr/templates/settr.rb
91
+ - lib/settr.rb
92
+ - lib/settr/engine.rb
93
+ - lib/settr/version.rb
94
+ - script/rails
95
+ - settr.gemspec
96
+ - test/dummy/.gitignore
97
+ - test/dummy/Gemfile
98
+ - test/dummy/Rakefile
99
+ - test/dummy/app/assets/images/rails.png
100
+ - test/dummy/app/assets/javascripts/application.js
101
+ - test/dummy/app/assets/stylesheets/application.css
102
+ - test/dummy/app/controllers/application_controller.rb
103
+ - test/dummy/app/helpers/application_helper.rb
104
+ - test/dummy/app/mailers/.gitkeep
105
+ - test/dummy/app/models/.gitkeep
106
+ - test/dummy/app/views/layouts/application.html.erb
107
+ - test/dummy/app/views/settr/settings/settings.html.erb
108
+ - test/dummy/config.ru
109
+ - test/dummy/config/application.rb
110
+ - test/dummy/config/boot.rb
111
+ - test/dummy/config/database.yml
112
+ - test/dummy/config/environment.rb
113
+ - test/dummy/config/environments/development.rb
114
+ - test/dummy/config/environments/production.rb
115
+ - test/dummy/config/environments/test.rb
116
+ - test/dummy/config/initializers/backtrace_silencers.rb
117
+ - test/dummy/config/initializers/inflections.rb
118
+ - test/dummy/config/initializers/mime_types.rb
119
+ - test/dummy/config/initializers/secret_token.rb
120
+ - test/dummy/config/initializers/session_store.rb
121
+ - test/dummy/config/initializers/wrap_parameters.rb
122
+ - test/dummy/config/locales/de.yml
123
+ - test/dummy/config/locales/en.yml
124
+ - test/dummy/config/routes.rb
125
+ - test/dummy/db/schema.rb
126
+ - test/dummy/db/seeds.rb
127
+ - test/dummy/doc/README_FOR_APP
128
+ - test/dummy/lib/assets/.gitkeep
129
+ - test/dummy/lib/tasks/.gitkeep
130
+ - test/dummy/log/.gitkeep
131
+ - test/dummy/public/404.html
132
+ - test/dummy/public/422.html
133
+ - test/dummy/public/500.html
134
+ - test/dummy/public/favicon.ico
135
+ - test/dummy/public/robots.txt
136
+ - test/dummy/script/rails
137
+ - test/dummy/vendor/assets/stylesheets/.gitkeep
138
+ - test/dummy/vendor/plugins/.gitkeep
139
+ - test/fixtures/.gitkeep
140
+ - test/functional/.gitkeep
141
+ - test/integration/.gitkeep
142
+ - test/performance/browsing_test.rb
143
+ - test/test_helper.rb
144
+ - test/unit/.gitkeep
145
+ homepage: https://github.com/provideal/settr
146
+ licenses: []
147
+ post_install_message:
148
+ rdoc_options: []
149
+ require_paths:
150
+ - lib
151
+ required_ruby_version: !ruby/object:Gem::Requirement
152
+ none: false
153
+ requirements:
154
+ - - ! '>='
155
+ - !ruby/object:Gem::Version
156
+ version: '0'
157
+ required_rubygems_version: !ruby/object:Gem::Requirement
158
+ none: false
159
+ requirements:
160
+ - - ! '>='
161
+ - !ruby/object:Gem::Version
162
+ version: '0'
163
+ requirements: []
164
+ rubyforge_project: settr
165
+ rubygems_version: 1.8.15
166
+ signing_key:
167
+ specification_version: 3
168
+ summary: hierarchical key-value based storage for configuration settings in Rails
169
+ apps
170
+ test_files:
171
+ - test/dummy/.gitignore
172
+ - test/dummy/Gemfile
173
+ - test/dummy/Rakefile
174
+ - test/dummy/app/assets/images/rails.png
175
+ - test/dummy/app/assets/javascripts/application.js
176
+ - test/dummy/app/assets/stylesheets/application.css
177
+ - test/dummy/app/controllers/application_controller.rb
178
+ - test/dummy/app/helpers/application_helper.rb
179
+ - test/dummy/app/mailers/.gitkeep
180
+ - test/dummy/app/models/.gitkeep
181
+ - test/dummy/app/views/layouts/application.html.erb
182
+ - test/dummy/app/views/settr/settings/settings.html.erb
183
+ - test/dummy/config.ru
184
+ - test/dummy/config/application.rb
185
+ - test/dummy/config/boot.rb
186
+ - test/dummy/config/database.yml
187
+ - test/dummy/config/environment.rb
188
+ - test/dummy/config/environments/development.rb
189
+ - test/dummy/config/environments/production.rb
190
+ - test/dummy/config/environments/test.rb
191
+ - test/dummy/config/initializers/backtrace_silencers.rb
192
+ - test/dummy/config/initializers/inflections.rb
193
+ - test/dummy/config/initializers/mime_types.rb
194
+ - test/dummy/config/initializers/secret_token.rb
195
+ - test/dummy/config/initializers/session_store.rb
196
+ - test/dummy/config/initializers/wrap_parameters.rb
197
+ - test/dummy/config/locales/de.yml
198
+ - test/dummy/config/locales/en.yml
199
+ - test/dummy/config/routes.rb
200
+ - test/dummy/db/schema.rb
201
+ - test/dummy/db/seeds.rb
202
+ - test/dummy/doc/README_FOR_APP
203
+ - test/dummy/lib/assets/.gitkeep
204
+ - test/dummy/lib/tasks/.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/public/robots.txt
211
+ - test/dummy/script/rails
212
+ - test/dummy/vendor/assets/stylesheets/.gitkeep
213
+ - test/dummy/vendor/plugins/.gitkeep
214
+ - test/fixtures/.gitkeep
215
+ - test/functional/.gitkeep
216
+ - test/integration/.gitkeep
217
+ - test/performance/browsing_test.rb
218
+ - test/test_helper.rb
219
+ - test/unit/.gitkeep