half-pipe 0.3.0.alpha.2 → 0.3.0.alpha.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/examples/todomvc-rails/.bowerrc +3 -0
- data/examples/todomvc-rails/.gitignore +20 -0
- data/examples/todomvc-rails/.jshintrc +34 -0
- data/examples/todomvc-rails/Gemfile +40 -0
- data/examples/todomvc-rails/Gruntfile.js +42 -0
- data/examples/todomvc-rails/README.rdoc +5 -0
- data/examples/todomvc-rails/Rakefile +6 -0
- data/examples/todomvc-rails/app/controllers/application_controller.rb +5 -0
- data/examples/todomvc-rails/app/controllers/concerns/.keep +0 -0
- data/examples/todomvc-rails/app/controllers/todos_controller.rb +69 -0
- data/examples/todomvc-rails/app/helpers/application_helper.rb +2 -0
- data/examples/todomvc-rails/app/helpers/todos_helper.rb +5 -0
- data/examples/todomvc-rails/app/mailers/.keep +0 -0
- data/examples/todomvc-rails/app/models/.keep +0 -0
- data/examples/todomvc-rails/app/models/concerns/.keep +0 -0
- data/examples/todomvc-rails/app/models/todo.rb +8 -0
- data/examples/todomvc-rails/app/scripts/main.js +53 -0
- data/examples/todomvc-rails/app/scripts/todo-title-input.js +57 -0
- data/examples/todomvc-rails/app/styles/base.scss +415 -0
- data/examples/todomvc-rails/app/styles/main.scss +2 -0
- data/examples/todomvc-rails/app/styles/todos.scss +29 -0
- data/examples/todomvc-rails/app/views/layouts/application.html.erb +14 -0
- data/examples/todomvc-rails/app/views/layouts/todos.js.erb +7 -0
- data/examples/todomvc-rails/app/views/todos/_destroy.js.erb +1 -0
- data/examples/todomvc-rails/app/views/todos/_footer.html.erb +21 -0
- data/examples/todomvc-rails/app/views/todos/_todo.html.erb +14 -0
- data/examples/todomvc-rails/app/views/todos/_toggle.js.erb +4 -0
- data/examples/todomvc-rails/app/views/todos/create.js.erb +3 -0
- data/examples/todomvc-rails/app/views/todos/destroy.js.erb +1 -0
- data/examples/todomvc-rails/app/views/todos/destroy_completed.js.erb +1 -0
- data/examples/todomvc-rails/app/views/todos/index.html.erb +33 -0
- data/examples/todomvc-rails/app/views/todos/toggle.js.erb +1 -0
- data/examples/todomvc-rails/app/views/todos/toggle_all.js.erb +1 -0
- data/examples/todomvc-rails/app/views/todos/update.js.erb +1 -0
- data/examples/todomvc-rails/bin/bundle +3 -0
- data/examples/todomvc-rails/bin/rails +4 -0
- data/examples/todomvc-rails/bin/rake +4 -0
- data/examples/todomvc-rails/bower.json +10 -0
- data/examples/todomvc-rails/config.ru +4 -0
- data/examples/todomvc-rails/config/application.rb +28 -0
- data/examples/todomvc-rails/config/boot.rb +4 -0
- data/examples/todomvc-rails/config/build.js +14 -0
- data/examples/todomvc-rails/config/database.yml +19 -0
- data/examples/todomvc-rails/config/environment.rb +5 -0
- data/examples/todomvc-rails/config/environments/development.rb +29 -0
- data/examples/todomvc-rails/config/environments/production.rb +80 -0
- data/examples/todomvc-rails/config/environments/test.rb +36 -0
- data/examples/todomvc-rails/config/half-pipe.json +3 -0
- data/examples/todomvc-rails/config/initializers/backtrace_silencers.rb +7 -0
- data/examples/todomvc-rails/config/initializers/filter_parameter_logging.rb +4 -0
- data/examples/todomvc-rails/config/initializers/inflections.rb +16 -0
- data/examples/todomvc-rails/config/initializers/mime_types.rb +5 -0
- data/examples/todomvc-rails/config/initializers/secret_token.rb +12 -0
- data/examples/todomvc-rails/config/initializers/session_store.rb +3 -0
- data/examples/todomvc-rails/config/initializers/wrap_parameters.rb +14 -0
- data/examples/todomvc-rails/config/locales/en.yml +23 -0
- data/examples/todomvc-rails/config/routes.rb +16 -0
- data/examples/todomvc-rails/db/migrate/20130518030840_create_todos.rb +9 -0
- data/examples/todomvc-rails/db/schema.rb +23 -0
- data/examples/todomvc-rails/db/seeds.rb +7 -0
- data/examples/todomvc-rails/lib/assets/.keep +0 -0
- data/examples/todomvc-rails/lib/tasks/.keep +0 -0
- data/examples/todomvc-rails/log/.keep +0 -0
- data/examples/todomvc-rails/package.json +22 -0
- data/examples/todomvc-rails/public/404.html +58 -0
- data/examples/todomvc-rails/public/422.html +58 -0
- data/examples/todomvc-rails/public/500.html +57 -0
- data/examples/todomvc-rails/public/favicon.ico +0 -0
- data/examples/todomvc-rails/public/robots.txt +5 -0
- data/examples/todomvc-rails/tasks/options/connect.js +63 -0
- data/examples/todomvc-rails/tasks/options/copy.js +28 -0
- data/examples/todomvc-rails/tasks/options/cssmin.js +3 -0
- data/examples/todomvc-rails/tasks/options/jshint.js +8 -0
- data/examples/todomvc-rails/tasks/options/rails.js +5 -0
- data/examples/todomvc-rails/tasks/options/requirejs.js +19 -0
- data/examples/todomvc-rails/tasks/options/sass.js +21 -0
- data/examples/todomvc-rails/tasks/options/watch.js +13 -0
- data/examples/todomvc-rails/test/controllers/.keep +0 -0
- data/examples/todomvc-rails/test/fixtures/.keep +0 -0
- data/examples/todomvc-rails/test/fixtures/todos.yml +11 -0
- data/examples/todomvc-rails/test/helpers/.keep +0 -0
- data/examples/todomvc-rails/test/integration/.keep +0 -0
- data/examples/todomvc-rails/test/mailers/.keep +0 -0
- data/examples/todomvc-rails/test/models/.keep +0 -0
- data/examples/todomvc-rails/test/models/todo_test.rb +7 -0
- data/examples/todomvc-rails/test/test_helper.rb +15 -0
- data/examples/todomvc-rails/vendor/assets/javascripts/.keep +0 -0
- data/examples/todomvc-rails/vendor/assets/stylesheets/.keep +0 -0
- data/lib/generators/half_pipe/install_generator.rb +2 -1
- data/lib/generators/half_pipe/templates/app/scripts/main.js +3 -5
- data/lib/generators/half_pipe/templates/config/build.js +4 -0
- data/lib/generators/half_pipe/templates/railties.rb +0 -1
- data/lib/generators/half_pipe/templates/tasks/options/copy.js +0 -1
- data/lib/half-pipe/version.rb +1 -1
- metadata +91 -1
@@ -0,0 +1,29 @@
|
|
1
|
+
#main,
|
2
|
+
#footer { display: none; }
|
3
|
+
|
4
|
+
#todoapp {
|
5
|
+
&.has_todos #main,
|
6
|
+
&.has_todos #footer { display: inherit; }
|
7
|
+
|
8
|
+
#footer {
|
9
|
+
a.all { font-weight: bold; }
|
10
|
+
}
|
11
|
+
|
12
|
+
&.filtered.active {
|
13
|
+
#todo-list li.completed { display: none; }
|
14
|
+
|
15
|
+
#footer {
|
16
|
+
a.all { font-weight: normal; }
|
17
|
+
a.active { font-weight: bold; }
|
18
|
+
}
|
19
|
+
}
|
20
|
+
|
21
|
+
&.filtered.completed {
|
22
|
+
#todo-list li:not(.completed) { display: none; }
|
23
|
+
|
24
|
+
#footer {
|
25
|
+
a.all { font-weight: normal; }
|
26
|
+
a.completed { font-weight: bold; }
|
27
|
+
}
|
28
|
+
}
|
29
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
$("#<%= dom_id(todo) %>").remove();
|
@@ -0,0 +1,21 @@
|
|
1
|
+
<footer id="footer">
|
2
|
+
<span id="todo-count"><strong><%= Todo.active.count %></strong> <%= "item".pluralize(Todo.active.count) %> left</span>
|
3
|
+
|
4
|
+
<ul id="filters">
|
5
|
+
<li>
|
6
|
+
<%= link_to "All", todos_path, class: "all" %>
|
7
|
+
</li>
|
8
|
+
<li>
|
9
|
+
<%= link_to "Active", active_todos_path, class: "active" %>
|
10
|
+
</li>
|
11
|
+
<li>
|
12
|
+
<%= link_to "Completed", completed_todos_path, class: "completed" %>
|
13
|
+
</li>
|
14
|
+
</ul>
|
15
|
+
|
16
|
+
<% if Todo.completed.count > 0 %>
|
17
|
+
<%= form_tag(destroy_completed_todos_path, method: :delete, remote: true) do %>
|
18
|
+
<button id="clear-completed" type="submit">Clear completed (<%= Todo.completed.count %>)</button>
|
19
|
+
<% end %>
|
20
|
+
<% end %>
|
21
|
+
</footer>
|
@@ -0,0 +1,14 @@
|
|
1
|
+
<li class="<%= "completed" if todo.completed? %>" id="<%= dom_id(todo) %>">
|
2
|
+
<div class="view">
|
3
|
+
<%= form_for(todo, url: toggle_todo_path(todo), method: :post, remote: true) do |f| %>
|
4
|
+
<%= f.check_box :completed, class: "toggle", "data-behavior" => "submit_on_check" %>
|
5
|
+
<% end %>
|
6
|
+
<label data-behavior="todo_title"><%= todo.title %></label>
|
7
|
+
<%= form_for(todo, method: :delete, remote: true) do |f| %>
|
8
|
+
<button type="submit" class="destroy"></button>
|
9
|
+
<% end %>
|
10
|
+
</div>
|
11
|
+
<%= form_for(todo, remote: true, html: { "data-behavior" => "edit_todo_form" }) do |f| %>
|
12
|
+
<%= f.text_field :title, class: "edit", "data-behavior" => "todo_title_input", "data-original-value" => todo.title %>
|
13
|
+
<% end %>
|
14
|
+
</li>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= render "destroy", todo: @todo %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= render partial: "destroy", collection: @todos_for_destruction, as: :todo %>
|
@@ -0,0 +1,33 @@
|
|
1
|
+
<section id="todoapp" class="<%= "has_todos" if @todos.unscoped.count > 0 %> <%= todos_filter_class %>">
|
2
|
+
|
3
|
+
|
4
|
+
<header id="header">
|
5
|
+
<h1>todos</h1>
|
6
|
+
<%= form_for(Todo.new, remote: true) do |f| %>
|
7
|
+
<%= f.text_field :title, placeholder: "What needs to be done?", id: "new-todo", autofocus: true, "data-behavior" => "submit_on_enter" %>
|
8
|
+
<% end %>
|
9
|
+
</header>
|
10
|
+
|
11
|
+
|
12
|
+
<section id="main">
|
13
|
+
<%= form_tag(toggle_all_todos_path, method: :post, remote: true) do %>
|
14
|
+
<input name="completed" id="toggle-all" type="checkbox" value="true" data-behavior="submit_on_check" <%= "checked" if @todos.active.count == 0 %>>
|
15
|
+
<% end %>
|
16
|
+
<label for="toggle-all">Mark all as complete</label>
|
17
|
+
<ul id="todo-list">
|
18
|
+
<%= render @todos.all %>
|
19
|
+
</ul>
|
20
|
+
</section>
|
21
|
+
|
22
|
+
|
23
|
+
<%= render "footer" %>
|
24
|
+
|
25
|
+
|
26
|
+
</section>
|
27
|
+
|
28
|
+
|
29
|
+
<footer id="info">
|
30
|
+
<p>Double-click to edit a todo</p>
|
31
|
+
<p>Created by <a href="mailto: smidwap@gmail.com">Matt De Leon</a></p>
|
32
|
+
<p>Part of <a href="http://todomvc.com">TodoMVC</a></p>
|
33
|
+
</footer>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= render "toggle", todo: @todo %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= render partial: "toggle", collection: @todos, as: :todo %>
|
@@ -0,0 +1 @@
|
|
1
|
+
$("#<%= dom_id(@todo) %>").replaceWith("<%= j(render(@todo)) %>");
|
@@ -0,0 +1,28 @@
|
|
1
|
+
require File.expand_path('../boot', __FILE__)
|
2
|
+
|
3
|
+
require "active_record/railtie"
|
4
|
+
# require "sprockets/railtie"
|
5
|
+
require "action_controller/railtie"
|
6
|
+
require "action_mailer/railtie"
|
7
|
+
require "rails/test_unit/railtie"
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
# Assets should be precompiled for production (so we don't need the gems loaded then)
|
12
|
+
Bundler.require(*Rails.groups(assets: %w(development test)))
|
13
|
+
|
14
|
+
module Todos
|
15
|
+
class Application < Rails::Application
|
16
|
+
# Settings in config/environments/* take precedence over those specified here.
|
17
|
+
# Application configuration should go into files in config/initializers
|
18
|
+
# -- all .rb files in that directory are automatically loaded.
|
19
|
+
|
20
|
+
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
21
|
+
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
22
|
+
# config.time_zone = 'Central Time (US & Canada)'
|
23
|
+
|
24
|
+
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
25
|
+
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
26
|
+
# config.i18n.default_locale = :de
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
requirejs.config({
|
2
|
+
wrap: true,
|
3
|
+
insertRequire: ['todos'],
|
4
|
+
deps: ['todos'],
|
5
|
+
shim: {
|
6
|
+
'jquery': { exports: '$' }
|
7
|
+
},
|
8
|
+
paths: {
|
9
|
+
'todos': 'main',
|
10
|
+
'jquery': '../../../../../bower_components/jquery/jquery',
|
11
|
+
'jquery-ujs': '../../../../../bower_components/jquery-ujs/src/rails'
|
12
|
+
}
|
13
|
+
})
|
14
|
+
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# SQLite version 3.x
|
2
|
+
# gem install sqlite3
|
3
|
+
#
|
4
|
+
# Ensure the SQLite 3 gem is defined in your Gemfile
|
5
|
+
# gem 'sqlite3'
|
6
|
+
development:
|
7
|
+
adapter: sqlite3
|
8
|
+
database: db/development.sqlite3
|
9
|
+
pool: 5
|
10
|
+
timeout: 5000
|
11
|
+
|
12
|
+
# Warning: The database defined as "test" will be erased and
|
13
|
+
# re-generated from your development database when you run "rake".
|
14
|
+
# Do not set this db to the same as development or production.
|
15
|
+
test:
|
16
|
+
adapter: sqlite3
|
17
|
+
database: db/test.sqlite3
|
18
|
+
pool: 5
|
19
|
+
timeout: 5000
|
@@ -0,0 +1,29 @@
|
|
1
|
+
Todos::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 web server when you make code changes.
|
7
|
+
config.cache_classes = false
|
8
|
+
|
9
|
+
# Do not eager load code on boot.
|
10
|
+
config.eager_load = false
|
11
|
+
|
12
|
+
# Show full error reports and disable caching.
|
13
|
+
config.consider_all_requests_local = true
|
14
|
+
config.action_controller.perform_caching = false
|
15
|
+
|
16
|
+
# Don't care if the mailer can't send.
|
17
|
+
config.action_mailer.raise_delivery_errors = false
|
18
|
+
|
19
|
+
# Print deprecation notices to the Rails logger.
|
20
|
+
config.active_support.deprecation = :log
|
21
|
+
|
22
|
+
# Raise an error on page load if there are pending migrations
|
23
|
+
config.active_record.migration_error = :page_load
|
24
|
+
|
25
|
+
# Debug mode disables concatenation and preprocessing of assets.
|
26
|
+
# This option may cause significant delays in view rendering with a large
|
27
|
+
# number of complex assets.
|
28
|
+
config.assets.debug = true
|
29
|
+
end
|
@@ -0,0 +1,80 @@
|
|
1
|
+
Todos::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb.
|
3
|
+
|
4
|
+
# Code is not reloaded between requests.
|
5
|
+
config.cache_classes = true
|
6
|
+
|
7
|
+
# Eager load code on boot. This eager loads most of Rails and
|
8
|
+
# your application in memory, allowing both thread web servers
|
9
|
+
# and those relying on copy on write to perform better.
|
10
|
+
# Rake tasks automatically ignore this option for performance.
|
11
|
+
config.eager_load = true
|
12
|
+
|
13
|
+
# Full error reports are disabled and caching is turned on.
|
14
|
+
config.consider_all_requests_local = false
|
15
|
+
config.action_controller.perform_caching = true
|
16
|
+
|
17
|
+
# Enable Rack::Cache to put a simple HTTP cache in front of your application
|
18
|
+
# Add `rack-cache` to your Gemfile before enabling this.
|
19
|
+
# For large-scale production use, consider using a caching reverse proxy like nginx, varnish or squid.
|
20
|
+
# config.action_dispatch.rack_cache = true
|
21
|
+
|
22
|
+
# Disable Rails's static asset server (Apache or nginx will already do this).
|
23
|
+
config.serve_static_assets = true
|
24
|
+
|
25
|
+
# Compress JavaScripts and CSS.
|
26
|
+
config.assets.js_compressor = :uglifier
|
27
|
+
# config.assets.css_compressor = :sass
|
28
|
+
|
29
|
+
# Do not fallback to assets pipeline if a precompiled asset is missed.
|
30
|
+
config.assets.compile = false
|
31
|
+
|
32
|
+
# Generate digests for assets URLs.
|
33
|
+
config.assets.digest = true
|
34
|
+
|
35
|
+
# Version of your assets, change this if you want to expire all your assets.
|
36
|
+
config.assets.version = '1.0'
|
37
|
+
|
38
|
+
# Specifies the header that your server uses for sending files.
|
39
|
+
# config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
|
40
|
+
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
|
41
|
+
|
42
|
+
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
43
|
+
# config.force_ssl = true
|
44
|
+
|
45
|
+
# Set to :debug to see everything in the log.
|
46
|
+
config.log_level = :info
|
47
|
+
|
48
|
+
# Prepend all log lines with the following tags.
|
49
|
+
# config.log_tags = [ :subdomain, :uuid ]
|
50
|
+
|
51
|
+
# Use a different logger for distributed setups.
|
52
|
+
# config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
|
53
|
+
|
54
|
+
# Use a different cache store in production.
|
55
|
+
# config.cache_store = :mem_cache_store
|
56
|
+
|
57
|
+
# Enable serving of images, stylesheets, and JavaScripts from an asset server.
|
58
|
+
# config.action_controller.asset_host = "http://assets.example.com"
|
59
|
+
|
60
|
+
# Precompile additional assets.
|
61
|
+
# application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
|
62
|
+
# config.assets.precompile += %w( search.js )
|
63
|
+
|
64
|
+
# Ignore bad email addresses and do not raise email delivery errors.
|
65
|
+
# Set this to true and configure the email server for immediate delivery to raise delivery errors.
|
66
|
+
# config.action_mailer.raise_delivery_errors = false
|
67
|
+
|
68
|
+
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
69
|
+
# the I18n.default_locale when a translation can not be found).
|
70
|
+
config.i18n.fallbacks = true
|
71
|
+
|
72
|
+
# Send deprecation notices to registered listeners.
|
73
|
+
config.active_support.deprecation = :notify
|
74
|
+
|
75
|
+
# Disable automatic flushing of the log to improve performance.
|
76
|
+
# config.autoflush_log = false
|
77
|
+
|
78
|
+
# Use default logging formatter so that PID and timestamp are not suppressed.
|
79
|
+
config.log_formatter = ::Logger::Formatter.new
|
80
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
Todos::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
|
+
# Do not eager load code on boot. This avoids loading your whole application
|
11
|
+
# just for the purpose of running a single test. If you are using a tool that
|
12
|
+
# preloads Rails for running tests, you may have to set it to true.
|
13
|
+
config.eager_load = false
|
14
|
+
|
15
|
+
# Configure static asset server for tests with Cache-Control for performance.
|
16
|
+
config.serve_static_assets = true
|
17
|
+
config.static_cache_control = "public, max-age=3600"
|
18
|
+
|
19
|
+
# Show full error reports and disable caching.
|
20
|
+
config.consider_all_requests_local = true
|
21
|
+
config.action_controller.perform_caching = false
|
22
|
+
|
23
|
+
# Raise exceptions instead of rendering exception templates.
|
24
|
+
config.action_dispatch.show_exceptions = false
|
25
|
+
|
26
|
+
# Disable request forgery protection in test environment.
|
27
|
+
config.action_controller.allow_forgery_protection = false
|
28
|
+
|
29
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
30
|
+
# The :test delivery method accumulates sent emails in the
|
31
|
+
# ActionMailer::Base.deliveries array.
|
32
|
+
config.action_mailer.delivery_method = :test
|
33
|
+
|
34
|
+
# Print deprecation notices to the stderr.
|
35
|
+
config.active_support.deprecation = :stderr
|
36
|
+
end
|
@@ -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,16 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Add new inflection rules using the following format. Inflections
|
4
|
+
# are locale specific, and you may define rules for as many different
|
5
|
+
# locales as you wish. All of these examples are active by default:
|
6
|
+
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
7
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
8
|
+
# inflect.singular /^(ox)en/i, '\1'
|
9
|
+
# inflect.irregular 'person', 'people'
|
10
|
+
# inflect.uncountable %w( fish sheep )
|
11
|
+
# end
|
12
|
+
|
13
|
+
# These inflection rules are supported but not enabled by default:
|
14
|
+
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
15
|
+
# inflect.acronym 'RESTful'
|
16
|
+
# end
|