ricogen 0.3 → 0.4
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/templates/Gemfile +2 -2
- data/templates/application.rb +1 -1
- metadata +3 -54
- data/test_app/Gemfile +0 -68
- data/test_app/Rakefile +0 -7
- data/test_app/app/controllers/application_controller.rb +0 -3
- data/test_app/app/helpers/application_helper.rb +0 -2
- data/test_app/app/stylesheets/_setup.sass +0 -12
- data/test_app/app/stylesheets/application.sass +0 -15
- data/test_app/app/stylesheets/lib/_extend.sass +0 -87
- data/test_app/app/stylesheets/lib/_mixins.sass +0 -78
- data/test_app/app/stylesheets/lib/_reset.sass +0 -150
- data/test_app/app/stylesheets/lib/_variables.sass +0 -26
- data/test_app/app/stylesheets/styles/_common.sass +0 -1
- data/test_app/app/stylesheets/styles/_extend.sass +0 -1
- data/test_app/app/stylesheets/styles/_mixins.sass +0 -1
- data/test_app/app/stylesheets/styles/_template.sass +0 -1
- data/test_app/app/stylesheets/styles/_variables.sass +0 -1
- data/test_app/app/views/layouts/application.html.haml +0 -28
- data/test_app/config.ru +0 -4
- data/test_app/config/app.yml +0 -5
- data/test_app/config/application.rb +0 -52
- data/test_app/config/auth_providers.yml +0 -55
- data/test_app/config/boot.rb +0 -6
- data/test_app/config/compass.config +0 -15
- data/test_app/config/database.yml +0 -22
- data/test_app/config/environment.rb +0 -18
- data/test_app/config/environments/development.rb +0 -26
- data/test_app/config/environments/production.rb +0 -49
- data/test_app/config/environments/test.rb +0 -35
- data/test_app/config/initializers/_config.rb +0 -49
- data/test_app/config/initializers/backtrace_silencers.rb +0 -7
- data/test_app/config/initializers/compass.rb +0 -5
- data/test_app/config/initializers/inflections.rb +0 -10
- data/test_app/config/initializers/mime_types.rb +0 -5
- data/test_app/config/initializers/mongo.rb +0 -10
- data/test_app/config/locales/en.yml +0 -5
- data/test_app/config/magent.yml +0 -13
- data/test_app/config/mongoid.yml +0 -23
- data/test_app/config/routes.rb +0 -58
- data/test_app/db/seeds.rb +0 -7
- data/test_app/doc/README_FOR_APP +0 -2
- data/test_app/log/development.log +0 -0
- data/test_app/log/production.log +0 -0
- data/test_app/log/server.log +0 -0
- data/test_app/log/test.log +0 -0
- data/test_app/public/404.html +0 -26
- data/test_app/public/422.html +0 -26
- data/test_app/public/500.html +0 -26
- data/test_app/public/javascripts/application.js +0 -7
- data/test_app/public/javascripts/rails.js +0 -1
- data/test_app/script/rails +0 -6
- data/test_app/test/performance/browsing_test.rb +0 -9
- data/test_app/test/test_helper.rb +0 -13
@@ -1,26 +0,0 @@
|
|
1
|
-
// variables.sass | LIBRARY VARIABLES
|
2
|
-
|
3
|
-
// FONT STACKS
|
4
|
-
// Sans Serif
|
5
|
-
$geneva: geneva, tahoma, "dejavu sans condensed", sans-serif
|
6
|
-
$helvetica: "helvetica neue", helvetica, arial, freesans, "liberation sans", "numbus sans l", sans-serif
|
7
|
-
$lucida: "lucida grande", "lucida sans unicode", "lucida sans", lucida, sans-serif
|
8
|
-
$verdana: verdana, "bitstream vera sans", "dejavu sans", "liberation sans", geneva, sans-serif
|
9
|
-
// Serif
|
10
|
-
$georgia: georgia, "bitstream charter", "century schoolbook l", "liberation serif", times, serif
|
11
|
-
$palatino: "palatino linotype", palatino, palladio, "urw palladio l", "book antiqua", "liberation serif", times, serif
|
12
|
-
$times: times, "times new roman", "nimbus roman no9 l", freeserif, "liberation serif", serif
|
13
|
-
// Monospace
|
14
|
-
$courier: "courier new", courier, freemono, "nimbus mono l", "liberation mono", monospace
|
15
|
-
$monaco: monaco, "lucida console", "dejavu sans mono", "bitstream vera sans mono", "liberation mono", monospace
|
16
|
-
|
17
|
-
// FONT SIZES
|
18
|
-
$x-small: 9px
|
19
|
-
$small: 11px
|
20
|
-
$medium: 13px
|
21
|
-
$x-medium: 17px
|
22
|
-
$large: 21px
|
23
|
-
$x-large: 34px
|
24
|
-
$xx-large: 55px
|
25
|
-
$huge: 72px
|
26
|
-
$x-huge: 89px
|
@@ -1 +0,0 @@
|
|
1
|
-
// common.sass -- project-specific .classes
|
@@ -1 +0,0 @@
|
|
1
|
-
// extend.sass -- project-specific @extend .classes
|
@@ -1 +0,0 @@
|
|
1
|
-
// mixins.sass -- project-specific +mixins
|
@@ -1 +0,0 @@
|
|
1
|
-
// template.sass -- project-specific layout #ids
|
@@ -1 +0,0 @@
|
|
1
|
-
// variables.sass -- project-specific $variables
|
@@ -1,28 +0,0 @@
|
|
1
|
-
!!!
|
2
|
-
%html{:lang => 'en'}
|
3
|
-
%head
|
4
|
-
%title #{@title}
|
5
|
-
%meta{:charset => 'utf-8'}
|
6
|
-
%meta{'http-equiv' => 'X-UA-Compatible', :content => 'IE=edge,chrome=1'}
|
7
|
-
%meta{:name => 'viewport', :content => 'width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0'}
|
8
|
-
= csrf_meta_tag
|
9
|
-
<!--[if ! lte IE 7]><!-->
|
10
|
-
%link{:rel => 'stylesheet', :href => '/stylesheets/application.css'}
|
11
|
-
<!--<![endif]-->
|
12
|
-
/[if lte IE 7]
|
13
|
-
%link{:rel => 'stylesheet', :href => 'http://universal-ie6-css.googlecode.com/files/ie6.0.3.css'}
|
14
|
-
/[if IE]
|
15
|
-
%script{:src => 'http://html5shiv.googlecode.com/svn/trunk/html5.js'}
|
16
|
-
|
17
|
-
%body{:class => page_class}
|
18
|
-
= yield
|
19
|
-
|
20
|
-
<!--[if ! lte IE 7]><!-->
|
21
|
-
%script{:src => 'http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js'}
|
22
|
-
%script{:src => '/javascripts/application.js'}
|
23
|
-
<!--<![endif]-->
|
24
|
-
/[if lte IE 8]
|
25
|
-
//%script{:src => 'http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js'}
|
26
|
-
|
27
|
-
/ Google Analytics | Don't forget to include your tracking number!!!!
|
28
|
-
%script var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-XXXXX-X']); _gaq.push(['_trackPageview']); (function() {var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ga);})();
|
data/test_app/config.ru
DELETED
data/test_app/config/app.yml
DELETED
@@ -1,52 +0,0 @@
|
|
1
|
-
require File.expand_path('../boot', __FILE__)
|
2
|
-
|
3
|
-
require "action_controller/railtie"
|
4
|
-
require "action_mailer/railtie"
|
5
|
-
require "active_resource/railtie"
|
6
|
-
|
7
|
-
# If you have a Gemfile, require the gems listed there, including any gems
|
8
|
-
# you've limited to :test, :development, or :production.
|
9
|
-
Bundler.require(:default, Rails.env) if defined?(Bundler)
|
10
|
-
|
11
|
-
module TestApp
|
12
|
-
class Application < Rails::Application
|
13
|
-
# Settings in config/environments/* take precedence over those specified here.
|
14
|
-
# Application configuration should go into files in config/initializers
|
15
|
-
# -- all .rb files in that directory are automatically loaded.
|
16
|
-
|
17
|
-
# Custom directories with classes and modules you want to be autoloadable.
|
18
|
-
# config.autoload_paths += %W(#{config.root}/extras)
|
19
|
-
|
20
|
-
# Only load the plugins named here, in the order given (default is alphabetical).
|
21
|
-
# :all can be used as a placeholder for all plugins not explicitly named.
|
22
|
-
# config.plugins = [ :exception_notification, :ssl_requirement, :all ]
|
23
|
-
|
24
|
-
# Activate observers that should always be running.
|
25
|
-
# config.active_record.observers = :cacher, :garbage_collector, :forum_observer
|
26
|
-
|
27
|
-
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
28
|
-
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
29
|
-
# config.time_zone = 'Central Time (US & Canada)'
|
30
|
-
|
31
|
-
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
32
|
-
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
33
|
-
# config.i18n.default_locale = :de
|
34
|
-
|
35
|
-
# JavaScript files you want as :defaults (application.js is always included).
|
36
|
-
# config.action_view.javascript_expansions[:defaults] = %w(jquery rails)
|
37
|
-
|
38
|
-
# Configure the default encoding used in templates for Ruby 1.9.
|
39
|
-
config.encoding = "utf-8"
|
40
|
-
|
41
|
-
# Configure sensitive parameters which will be filtered from the log file.
|
42
|
-
config.filter_parameters += [:password]
|
43
|
-
config.generators do |g|
|
44
|
-
g.orm = :mongo_mapper
|
45
|
-
g.template_engine = :haml
|
46
|
-
g.test_framework = :rspec
|
47
|
-
end
|
48
|
-
|
49
|
-
config.middleware.use "MongoidExt::FileServer"
|
50
|
-
|
51
|
-
end
|
52
|
-
end
|
@@ -1,55 +0,0 @@
|
|
1
|
-
base: &common
|
2
|
-
Google:
|
3
|
-
openid: https://www.google.com/accounts/o8/id
|
4
|
-
Yahoo:
|
5
|
-
openid: http://yahoo.com
|
6
|
-
AOL:
|
7
|
-
openid: 'http://openid.aol.com/{user_name}'
|
8
|
-
MySpace:
|
9
|
-
openid: 'http://www.myspace.com/{user_name}'
|
10
|
-
MyOpenID:
|
11
|
-
openid: 'http://{user_name}.myopenid.com/'
|
12
|
-
Wordpress:
|
13
|
-
openid: 'http://{user_name}.wordpress.com/'
|
14
|
-
Blogger:
|
15
|
-
openid: 'http://{user_name}.blogspot.com/'
|
16
|
-
Flickr:
|
17
|
-
openid: 'http://flickr.com/photos/{user_name}/'
|
18
|
-
Launchpad:
|
19
|
-
openid: 'https://launchpad.net/~{user_name}'
|
20
|
-
Vidoop:
|
21
|
-
openid: 'http://{user_name}.myvidoop.com/'
|
22
|
-
ClaimID:
|
23
|
-
openid: 'http://claimid.com/{user_name}'
|
24
|
-
Technorati:
|
25
|
-
openid: 'http://technorati.com/people/technorati/{user_name}/'
|
26
|
-
Verisign:
|
27
|
-
openid: 'http://{user_name}.pip.verisignlabs.com/'
|
28
|
-
LiveJournal:
|
29
|
-
openid: 'http://{user_name}.livejournal.com'
|
30
|
-
OpenId:
|
31
|
-
openid: '{user_name}'
|
32
|
-
Twitter:
|
33
|
-
id: 'ID'
|
34
|
-
token: 'TOKEN'
|
35
|
-
Identica:
|
36
|
-
id: 'ID'
|
37
|
-
token: 'TOKEN'
|
38
|
-
Facebook:
|
39
|
-
id: 'ID'
|
40
|
-
token: 'TOKEN'
|
41
|
-
Github:
|
42
|
-
id: 'ID'
|
43
|
-
token: 'TOKEN'
|
44
|
-
LinkedIn:
|
45
|
-
id: "ID"
|
46
|
-
token: "TOKEN"
|
47
|
-
|
48
|
-
development:
|
49
|
-
<<: *common
|
50
|
-
|
51
|
-
production:
|
52
|
-
<<: *common
|
53
|
-
|
54
|
-
test:
|
55
|
-
<<: *common
|
data/test_app/config/boot.rb
DELETED
@@ -1,15 +0,0 @@
|
|
1
|
-
# Require any additional compass plugins here.
|
2
|
-
|
3
|
-
project_type = :rails
|
4
|
-
project_path = RAILS_ROOT if defined?(RAILS_ROOT)
|
5
|
-
# Set this to the root of your project when deployed:
|
6
|
-
http_path = "/"
|
7
|
-
css_dir = "public/stylesheets/compiled"
|
8
|
-
sass_dir = "app/stylesheets"
|
9
|
-
images_dir = "public/images"
|
10
|
-
javascripts_dir = "public/javascripts"
|
11
|
-
# To enable relative paths to assets via compass helper functions. Uncomment:
|
12
|
-
# relative_assets = true
|
13
|
-
http_images_path = "/images"
|
14
|
-
http_stylesheets_path = "/stylesheets"
|
15
|
-
http_javascripts_path = "/javascripts"
|
@@ -1,22 +0,0 @@
|
|
1
|
-
# SQLite version 3.x
|
2
|
-
# gem install sqlite3
|
3
|
-
development:
|
4
|
-
adapter: sqlite3
|
5
|
-
database: db/development.sqlite3
|
6
|
-
pool: 5
|
7
|
-
timeout: 5000
|
8
|
-
|
9
|
-
# Warning: The database defined as "test" will be erased and
|
10
|
-
# re-generated from your development database when you run "rake".
|
11
|
-
# Do not set this db to the same as development or production.
|
12
|
-
test:
|
13
|
-
adapter: sqlite3
|
14
|
-
database: db/test.sqlite3
|
15
|
-
pool: 5
|
16
|
-
timeout: 5000
|
17
|
-
|
18
|
-
production:
|
19
|
-
adapter: sqlite3
|
20
|
-
database: db/production.sqlite3
|
21
|
-
pool: 5
|
22
|
-
timeout: 5000
|
@@ -1,18 +0,0 @@
|
|
1
|
-
# Load the rails application
|
2
|
-
require File.expand_path('../application', __FILE__)
|
3
|
-
|
4
|
-
# Initialize the rails application
|
5
|
-
TestApp::Application.initialize!
|
6
|
-
# put rails errors inline on the tags themselves
|
7
|
-
ActionView::Base.field_error_proc = (
|
8
|
-
Proc.new do |html_tag, instance|
|
9
|
-
class_name = "error"
|
10
|
-
d = HTML::Document.new(html_tag)
|
11
|
-
tag = d.root.children.first
|
12
|
-
if tag.attributes.has_key?('class')
|
13
|
-
tag.attributes["class"] += " #{class_name}"
|
14
|
-
else
|
15
|
-
tag.attributes["class"] = class_name
|
16
|
-
end
|
17
|
-
tag.to_s.html_safe
|
18
|
-
end)
|
@@ -1,26 +0,0 @@
|
|
1
|
-
TestApp::Application.configure do
|
2
|
-
# Settings specified here will take precedence over those in config/application.rb
|
3
|
-
|
4
|
-
# In the development environment your application's code is reloaded on
|
5
|
-
# every request. This slows down response time but is perfect for development
|
6
|
-
# since you don't have to restart the webserver when you make code changes.
|
7
|
-
config.cache_classes = false
|
8
|
-
|
9
|
-
# Log error messages when you accidentally call methods on nil.
|
10
|
-
config.whiny_nils = true
|
11
|
-
|
12
|
-
# Show full error reports and disable caching
|
13
|
-
config.consider_all_requests_local = true
|
14
|
-
config.action_view.debug_rjs = true
|
15
|
-
config.action_controller.perform_caching = false
|
16
|
-
|
17
|
-
# Don't care if the mailer can't send
|
18
|
-
config.action_mailer.raise_delivery_errors = false
|
19
|
-
|
20
|
-
# Print deprecation notices to the Rails logger
|
21
|
-
config.active_support.deprecation = :log
|
22
|
-
|
23
|
-
# Only use best-standards-support built into browsers
|
24
|
-
config.action_dispatch.best_standards_support = :builtin
|
25
|
-
end
|
26
|
-
|
@@ -1,49 +0,0 @@
|
|
1
|
-
TestApp::Application.configure do
|
2
|
-
# Settings specified here will take precedence over those in config/application.rb
|
3
|
-
|
4
|
-
# The production environment is meant for finished, "live" apps.
|
5
|
-
# Code is not reloaded between requests
|
6
|
-
config.cache_classes = true
|
7
|
-
|
8
|
-
# Full error reports are disabled and caching is turned on
|
9
|
-
config.consider_all_requests_local = false
|
10
|
-
config.action_controller.perform_caching = true
|
11
|
-
|
12
|
-
# Specifies the header that your server uses for sending files
|
13
|
-
config.action_dispatch.x_sendfile_header = "X-Sendfile"
|
14
|
-
|
15
|
-
# For nginx:
|
16
|
-
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect'
|
17
|
-
|
18
|
-
# If you have no front-end server that supports something like X-Sendfile,
|
19
|
-
# just comment this out and Rails will serve the files
|
20
|
-
|
21
|
-
# See everything in the log (default is :info)
|
22
|
-
# config.log_level = :debug
|
23
|
-
|
24
|
-
# Use a different logger for distributed setups
|
25
|
-
# config.logger = SyslogLogger.new
|
26
|
-
|
27
|
-
# Use a different cache store in production
|
28
|
-
# config.cache_store = :mem_cache_store
|
29
|
-
|
30
|
-
# Disable Rails's static asset server
|
31
|
-
# In production, Apache or nginx will already do this
|
32
|
-
config.serve_static_assets = false
|
33
|
-
|
34
|
-
# Enable serving of images, stylesheets, and javascripts from an asset server
|
35
|
-
# config.action_controller.asset_host = "http://assets.example.com"
|
36
|
-
|
37
|
-
# Disable delivery errors, bad email addresses will be ignored
|
38
|
-
# config.action_mailer.raise_delivery_errors = false
|
39
|
-
|
40
|
-
# Enable threaded mode
|
41
|
-
# config.threadsafe!
|
42
|
-
|
43
|
-
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
44
|
-
# the I18n.default_locale when a translation can not be found)
|
45
|
-
config.i18n.fallbacks = true
|
46
|
-
|
47
|
-
# Send deprecation notices to registered listeners
|
48
|
-
config.active_support.deprecation = :notify
|
49
|
-
end
|
@@ -1,35 +0,0 @@
|
|
1
|
-
TestApp::Application.configure do
|
2
|
-
# Settings specified here will take precedence over those in config/application.rb
|
3
|
-
|
4
|
-
# The test environment is used exclusively to run your application's
|
5
|
-
# test suite. You never need to work with it otherwise. Remember that
|
6
|
-
# your test database is "scratch space" for the test suite and is wiped
|
7
|
-
# and recreated between test runs. Don't rely on the data there!
|
8
|
-
config.cache_classes = true
|
9
|
-
|
10
|
-
# Log error messages when you accidentally call methods on nil.
|
11
|
-
config.whiny_nils = true
|
12
|
-
|
13
|
-
# Show full error reports and disable caching
|
14
|
-
config.consider_all_requests_local = true
|
15
|
-
config.action_controller.perform_caching = false
|
16
|
-
|
17
|
-
# Raise exceptions instead of rendering exception templates
|
18
|
-
config.action_dispatch.show_exceptions = false
|
19
|
-
|
20
|
-
# Disable request forgery protection in test environment
|
21
|
-
config.action_controller.allow_forgery_protection = false
|
22
|
-
|
23
|
-
# Tell Action Mailer not to deliver emails to the real world.
|
24
|
-
# The :test delivery method accumulates sent emails in the
|
25
|
-
# ActionMailer::Base.deliveries array.
|
26
|
-
config.action_mailer.delivery_method = :test
|
27
|
-
|
28
|
-
# Use SQL instead of Active Record's schema dumper when creating the test database.
|
29
|
-
# This is necessary if your schema can't be completely dumped by the schema dumper,
|
30
|
-
# like if you have constraints or database-specific column types
|
31
|
-
# config.active_record.schema_format = :sql
|
32
|
-
|
33
|
-
# Print deprecation notices to the stderr
|
34
|
-
config.active_support.deprecation = :stderr
|
35
|
-
end
|
@@ -1,49 +0,0 @@
|
|
1
|
-
require 'ostruct'
|
2
|
-
|
3
|
-
config_file = Rails.root+"config/app.yml"
|
4
|
-
options = YAML.load_file(config_file)
|
5
|
-
if !options[Rails.env]
|
6
|
-
raise "'#{Rails.env}' was not found in #{config_file}"
|
7
|
-
end
|
8
|
-
AppConfig = OpenStruct.new(options[Rails.env])
|
9
|
-
|
10
|
-
|
11
|
-
SANITIZE_CONFIG = {
|
12
|
-
:protocols => {
|
13
|
-
"a"=>{"href"=>["ftp", "http", "https", "mailto", :relative]},
|
14
|
-
"img"=>{"src"=>["http", "https", :relative]},
|
15
|
-
"blockquote"=>{"cite"=>["http", "https", :relative]},
|
16
|
-
"q"=>{"cite"=>["http", "https", :relative]}
|
17
|
-
},
|
18
|
-
:elements => ["a", "b", "blockquote", "br", "caption", "cite", "code", "col",
|
19
|
-
"colgroup", "dd", "dl", "dt", "em", "h1", "h2", "h3", "h4", "h5",
|
20
|
-
"h6", "i", "img", "li", "ol", "p", "pre", "q", "small", "strike",
|
21
|
-
"strong", "sub", "sup", "table", "tbody", "td", "tfoot", "th",
|
22
|
-
"thead", "tr", "u", "ul", "font", "s", "hr", "div", "span"],
|
23
|
-
:attributes => {
|
24
|
-
"div" => ["style"],
|
25
|
-
"pre" => ["style"],
|
26
|
-
"code" => ["style"],
|
27
|
-
"colgroup"=>["span", "width"],
|
28
|
-
"col"=>["span", "width"],
|
29
|
-
"ul"=>["type"],
|
30
|
-
"a"=>["href", "title"],
|
31
|
-
"img"=>["align", "alt", "height", "src", "title", "width"],
|
32
|
-
"blockquote"=>["cite"],
|
33
|
-
"td"=>["abbr", "axis", "colspan", "rowspan", "width"],
|
34
|
-
"table"=>["summary", "width"],
|
35
|
-
"q"=>["cite"],
|
36
|
-
"ol"=>["start", "type"],
|
37
|
-
"th"=>["abbr", "axis", "colspan", "rowspan", "scope", "width"]
|
38
|
-
}
|
39
|
-
}
|
40
|
-
|
41
|
-
|
42
|
-
Rails.application.config.session_store :cookie_store, :key => AppConfig.session_key, :domain => :all
|
43
|
-
Rails.application.config.secret_token = AppConfig.session_secret
|
44
|
-
|
45
|
-
ActionMailer::Base.default_url_options[:host] = AppConfig.domain
|
46
|
-
|
47
|
-
if File.exist?(Rails.root + "VERSION")
|
48
|
-
AppConfig.version = File.read(Rails.root + "VERSION")
|
49
|
-
end
|
@@ -1,7 +0,0 @@
|
|
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!
|
@@ -1,10 +0,0 @@
|
|
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
|