crumbs 1.0.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +31 -0
- data/Rakefile +32 -0
- data/lib/crumbs/action_controller/base.rb +120 -0
- data/lib/crumbs/history.rb +31 -0
- data/lib/crumbs/railtie.rb +12 -0
- data/lib/crumbs/version.rb +5 -0
- data/lib/crumbs.rb +8 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/controllers/pages_controller.rb +33 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/app/views/pages/crumbs.html.erb +3 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/config/application.rb +23 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +29 -0
- data/test/dummy/config/environments/production.rb +80 -0
- data/test/dummy/config/environments/test.rb +36 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +12 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +72 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/schema.rb +16 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +7 -0
- data/test/dummy/log/test.log +788 -0
- data/test/dummy/public/404.html +58 -0
- data/test/dummy/public/422.html +58 -0
- data/test/dummy/public/500.html +57 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/test_helper.rb +21 -0
- data/test/with_last_test.rb +264 -0
- data/test/without_last_test.rb +249 -0
- metadata +174 -0
@@ -0,0 +1,12 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key is used for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
|
6
|
+
# Make sure the secret is at least 30 characters and all random,
|
7
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
8
|
+
# You can use `rake secret` to generate a secure secret key.
|
9
|
+
|
10
|
+
# Make sure your secret_key_base is kept private
|
11
|
+
# if you're sharing your code publicly.
|
12
|
+
Dummy::Application.config.secret_key_base = '28edcd2365d0715246f2caa9a823fc54ec456ece62b47803b7653c856abf94b9bf2b02439a447d7621e9afcc76e26d6616df31cb19f59a50a18f1591c0ce665a'
|
@@ -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] if respond_to?(:wrap_parameters)
|
9
|
+
end
|
10
|
+
|
11
|
+
# To enable root element in JSON for ActiveRecord objects.
|
12
|
+
# ActiveSupport.on_load(:active_record) do
|
13
|
+
# self.include_root_in_json = true
|
14
|
+
# end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# Files in the config/locales directory are used for internationalization
|
2
|
+
# and are automatically loaded by Rails. If you want to use locales other
|
3
|
+
# than English, add the necessary files in this directory.
|
4
|
+
#
|
5
|
+
# To use the locales, use `I18n.t`:
|
6
|
+
#
|
7
|
+
# I18n.t 'hello'
|
8
|
+
#
|
9
|
+
# In views, this is aliased to just `t`:
|
10
|
+
#
|
11
|
+
# <%= t('hello') %>
|
12
|
+
#
|
13
|
+
# To use a different locale, set it with `I18n.locale`:
|
14
|
+
#
|
15
|
+
# I18n.locale = :es
|
16
|
+
#
|
17
|
+
# This would use the information in config/locales/es.yml.
|
18
|
+
#
|
19
|
+
# To learn more, please read the Rails Internationalization guide
|
20
|
+
# available at http://guides.rubyonrails.org/i18n.html.
|
21
|
+
|
22
|
+
en:
|
23
|
+
hello: "Hello world"
|
@@ -0,0 +1,72 @@
|
|
1
|
+
Dummy::Application.routes.draw do
|
2
|
+
|
3
|
+
root to: 'pages#home'
|
4
|
+
|
5
|
+
get 'static', to: 'pages#static'
|
6
|
+
get 'static/nested', to: 'pages#nested'
|
7
|
+
|
8
|
+
get 'empty', to: 'pages#empty'
|
9
|
+
get 'empty/nested', to: 'pages#nested'
|
10
|
+
|
11
|
+
get 'param', to: 'pages#param'
|
12
|
+
get 'param/:param', to: 'pages#param'
|
13
|
+
get 'param/:param/nested', to: 'pages#nested'
|
14
|
+
|
15
|
+
get 'i18n', to: 'pages#i18n'
|
16
|
+
get 'i18n/nested', to: 'pages#nested'
|
17
|
+
|
18
|
+
# The priority is based upon order of creation: first created -> highest priority.
|
19
|
+
# See how all your routes lay out with "rake routes".
|
20
|
+
|
21
|
+
# You can have the root of your site routed with "root"
|
22
|
+
# root 'welcome#index'
|
23
|
+
|
24
|
+
# Example of regular route:
|
25
|
+
# get 'products/:id' => 'catalog#view'
|
26
|
+
|
27
|
+
# Example of named route that can be invoked with purchase_url(id: product.id)
|
28
|
+
# get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
|
29
|
+
|
30
|
+
# Example resource route (maps HTTP verbs to controller actions automatically):
|
31
|
+
# resources :products
|
32
|
+
|
33
|
+
# Example resource route with options:
|
34
|
+
# resources :products do
|
35
|
+
# member do
|
36
|
+
# get 'short'
|
37
|
+
# post 'toggle'
|
38
|
+
# end
|
39
|
+
#
|
40
|
+
# collection do
|
41
|
+
# get 'sold'
|
42
|
+
# end
|
43
|
+
# end
|
44
|
+
|
45
|
+
# Example resource route with sub-resources:
|
46
|
+
# resources :products do
|
47
|
+
# resources :comments, :sales
|
48
|
+
# resource :seller
|
49
|
+
# end
|
50
|
+
|
51
|
+
# Example resource route with more complex sub-resources:
|
52
|
+
# resources :products do
|
53
|
+
# resources :comments
|
54
|
+
# resources :sales do
|
55
|
+
# get 'recent', on: :collection
|
56
|
+
# end
|
57
|
+
# end
|
58
|
+
|
59
|
+
# Example resource route with concerns:
|
60
|
+
# concern :toggleable do
|
61
|
+
# post 'toggle'
|
62
|
+
# end
|
63
|
+
# resources :posts, concerns: :toggleable
|
64
|
+
# resources :photos, concerns: :toggleable
|
65
|
+
|
66
|
+
# Example resource route within a namespace:
|
67
|
+
# namespace :admin do
|
68
|
+
# # Directs /admin/products/* to Admin::ProductsController
|
69
|
+
# # (app/controllers/admin/products_controller.rb)
|
70
|
+
# resources :products
|
71
|
+
# end
|
72
|
+
end
|
Binary file
|
@@ -0,0 +1,16 @@
|
|
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 that you check this file into your version control system.
|
13
|
+
|
14
|
+
ActiveRecord::Schema.define(version: 0) do
|
15
|
+
|
16
|
+
end
|
Binary file
|
@@ -0,0 +1,7 @@
|
|
1
|
+
[1m[36m (2.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2
|
+
[1m[35m (2.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4
|
+
[1m[36m (53.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
5
|
+
[1m[35m (3.6ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
6
|
+
[1m[36m (0.2ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
7
|
+
[1m[35m (3.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|