crummy 1.7.0 → 1.7.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +1 -1
- data/.rvmrc +48 -0
- data/.travis.yml +13 -0
- data/CHANGELOG +3 -0
- data/README.md +78 -55
- data/example/.gitignore +5 -0
- data/example/.rspec +1 -0
- data/example/.rvmrc +48 -0
- data/example/Gemfile +30 -0
- data/example/README.md +40 -0
- data/example/Rakefile +7 -0
- data/example/app/assets/images/rails.png +0 -0
- data/example/app/assets/javascripts/application.js +9 -0
- data/example/app/assets/javascripts/pages.js.coffee +3 -0
- data/example/app/assets/javascripts/post.js.coffee +3 -0
- data/example/app/assets/stylesheets/application.css +7 -0
- data/example/app/assets/stylesheets/layout.css.sass +26 -0
- data/example/app/assets/stylesheets/post.css.scss +3 -0
- data/example/app/controllers/application_controller.rb +6 -0
- data/example/app/controllers/pages_controller.rb +5 -0
- data/example/app/controllers/posts_controller.rb +19 -0
- data/example/app/helpers/application_helper.rb +9 -0
- data/example/app/helpers/pages_helper.rb +2 -0
- data/example/app/helpers/post_helper.rb +2 -0
- data/example/app/mailers/.gitkeep +0 -0
- data/example/app/models/.gitkeep +0 -0
- data/example/app/models/category.rb +6 -0
- data/example/app/models/post.rb +19 -0
- data/example/app/views/layouts/application.html.haml +16 -0
- data/example/app/views/pages/index.html.haml +4 -0
- data/example/app/views/posts/index.html.haml +5 -0
- data/example/app/views/posts/new.html.haml +1 -0
- data/example/app/views/posts/show.html.haml +3 -0
- data/example/config.ru +4 -0
- data/example/config/application.rb +48 -0
- data/example/config/boot.rb +6 -0
- data/example/config/database.yml +25 -0
- data/example/config/environment.rb +5 -0
- data/example/config/environments/development.rb +30 -0
- data/example/config/environments/production.rb +60 -0
- data/example/config/environments/test.rb +39 -0
- data/example/config/initializers/backtrace_silencers.rb +7 -0
- data/example/config/initializers/inflections.rb +10 -0
- data/example/config/initializers/mime_types.rb +5 -0
- data/example/config/initializers/secret_token.rb +7 -0
- data/example/config/initializers/session_store.rb +8 -0
- data/example/config/initializers/wrap_parameters.rb +14 -0
- data/example/config/locales/en.yml +5 -0
- data/example/config/routes.rb +5 -0
- data/example/db/migrate/20111104103150_create_posts.rb +10 -0
- data/example/db/migrate/20111104103738_create_categories.rb +12 -0
- data/example/db/migrate/20111104104040_add_category_id_to_posts.rb +5 -0
- data/example/db/schema.rb +32 -0
- data/example/db/seeds.rb +15 -0
- data/example/doc/README_FOR_APP +2 -0
- data/example/lib/assets/.gitkeep +0 -0
- data/example/lib/tasks/.gitkeep +0 -0
- data/example/log/.gitkeep +0 -0
- data/example/public/404.html +26 -0
- data/example/public/422.html +26 -0
- data/example/public/500.html +26 -0
- data/example/public/favicon.ico +0 -0
- data/example/public/robots.txt +5 -0
- data/example/script/rails +6 -0
- data/example/spec/controllers/posts_controller_spec.rb +7 -0
- data/example/spec/spec_helper.rb +38 -0
- data/example/vendor/assets/stylesheets/.gitkeep +0 -0
- data/example/vendor/plugins/.gitkeep +0 -0
- data/gemfiles/rails3_2/Gemfile +6 -0
- data/gemfiles/rails4_0/Gemfile +6 -0
- data/lib/crummy.rb +10 -2
- data/lib/crummy/standard_renderer.rb +14 -13
- data/lib/crummy/version.rb +1 -1
- data/test/standard_renderer_test.rb +33 -3
- metadata +78 -10
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: crummy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.7.
|
4
|
+
version: 1.7.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,11 +10,11 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2013-
|
13
|
+
date: 2013-04-15 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rake
|
17
|
-
requirement: &
|
17
|
+
requirement: &70233202410800 !ruby/object:Gem::Requirement
|
18
18
|
none: false
|
19
19
|
requirements:
|
20
20
|
- - ! '>='
|
@@ -22,10 +22,10 @@ dependencies:
|
|
22
22
|
version: '0'
|
23
23
|
type: :development
|
24
24
|
prerelease: false
|
25
|
-
version_requirements: *
|
25
|
+
version_requirements: *70233202410800
|
26
26
|
- !ruby/object:Gem::Dependency
|
27
27
|
name: bundler
|
28
|
-
requirement: &
|
28
|
+
requirement: &70233202421100 !ruby/object:Gem::Requirement
|
29
29
|
none: false
|
30
30
|
requirements:
|
31
31
|
- - ~>
|
@@ -33,10 +33,10 @@ dependencies:
|
|
33
33
|
version: '1.0'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
|
-
version_requirements: *
|
36
|
+
version_requirements: *70233202421100
|
37
37
|
- !ruby/object:Gem::Dependency
|
38
38
|
name: activesupport
|
39
|
-
requirement: &
|
39
|
+
requirement: &70233202417540 !ruby/object:Gem::Requirement
|
40
40
|
none: false
|
41
41
|
requirements:
|
42
42
|
- - ! '>='
|
@@ -44,10 +44,10 @@ dependencies:
|
|
44
44
|
version: '0'
|
45
45
|
type: :development
|
46
46
|
prerelease: false
|
47
|
-
version_requirements: *
|
47
|
+
version_requirements: *70233202417540
|
48
48
|
- !ruby/object:Gem::Dependency
|
49
49
|
name: actionpack
|
50
|
-
requirement: &
|
50
|
+
requirement: &70233202439020 !ruby/object:Gem::Requirement
|
51
51
|
none: false
|
52
52
|
requirements:
|
53
53
|
- - ! '>='
|
@@ -55,7 +55,7 @@ dependencies:
|
|
55
55
|
version: '0'
|
56
56
|
type: :development
|
57
57
|
prerelease: false
|
58
|
-
version_requirements: *
|
58
|
+
version_requirements: *70233202439020
|
59
59
|
description: Crummy is a simple and tasty way to add breadcrumbs to your Rails applications.
|
60
60
|
email: zach+crummy@londonmade.co.uk
|
61
61
|
executables: []
|
@@ -64,12 +64,80 @@ extra_rdoc_files:
|
|
64
64
|
- README.md
|
65
65
|
files:
|
66
66
|
- .gitignore
|
67
|
+
- .rvmrc
|
68
|
+
- .travis.yml
|
67
69
|
- CHANGELOG
|
68
70
|
- Gemfile
|
69
71
|
- MIT-LICENSE
|
70
72
|
- README.md
|
71
73
|
- Rakefile
|
72
74
|
- crummy.gemspec
|
75
|
+
- example/.gitignore
|
76
|
+
- example/.rspec
|
77
|
+
- example/.rvmrc
|
78
|
+
- example/Gemfile
|
79
|
+
- example/Gemfile.lock
|
80
|
+
- example/README.md
|
81
|
+
- example/Rakefile
|
82
|
+
- example/app/assets/images/rails.png
|
83
|
+
- example/app/assets/javascripts/application.js
|
84
|
+
- example/app/assets/javascripts/pages.js.coffee
|
85
|
+
- example/app/assets/javascripts/post.js.coffee
|
86
|
+
- example/app/assets/stylesheets/application.css
|
87
|
+
- example/app/assets/stylesheets/layout.css.sass
|
88
|
+
- example/app/assets/stylesheets/post.css.scss
|
89
|
+
- example/app/controllers/application_controller.rb
|
90
|
+
- example/app/controllers/pages_controller.rb
|
91
|
+
- example/app/controllers/posts_controller.rb
|
92
|
+
- example/app/helpers/application_helper.rb
|
93
|
+
- example/app/helpers/pages_helper.rb
|
94
|
+
- example/app/helpers/post_helper.rb
|
95
|
+
- example/app/mailers/.gitkeep
|
96
|
+
- example/app/models/.gitkeep
|
97
|
+
- example/app/models/category.rb
|
98
|
+
- example/app/models/post.rb
|
99
|
+
- example/app/views/layouts/application.html.haml
|
100
|
+
- example/app/views/pages/index.html.haml
|
101
|
+
- example/app/views/posts/index.html.haml
|
102
|
+
- example/app/views/posts/new.html.haml
|
103
|
+
- example/app/views/posts/show.html.haml
|
104
|
+
- example/config.ru
|
105
|
+
- example/config/application.rb
|
106
|
+
- example/config/boot.rb
|
107
|
+
- example/config/database.yml
|
108
|
+
- example/config/environment.rb
|
109
|
+
- example/config/environments/development.rb
|
110
|
+
- example/config/environments/production.rb
|
111
|
+
- example/config/environments/test.rb
|
112
|
+
- example/config/initializers/backtrace_silencers.rb
|
113
|
+
- example/config/initializers/inflections.rb
|
114
|
+
- example/config/initializers/mime_types.rb
|
115
|
+
- example/config/initializers/secret_token.rb
|
116
|
+
- example/config/initializers/session_store.rb
|
117
|
+
- example/config/initializers/wrap_parameters.rb
|
118
|
+
- example/config/locales/en.yml
|
119
|
+
- example/config/routes.rb
|
120
|
+
- example/db/migrate/20111104103150_create_posts.rb
|
121
|
+
- example/db/migrate/20111104103738_create_categories.rb
|
122
|
+
- example/db/migrate/20111104104040_add_category_id_to_posts.rb
|
123
|
+
- example/db/schema.rb
|
124
|
+
- example/db/seeds.rb
|
125
|
+
- example/doc/README_FOR_APP
|
126
|
+
- example/lib/assets/.gitkeep
|
127
|
+
- example/lib/tasks/.gitkeep
|
128
|
+
- example/log/.gitkeep
|
129
|
+
- example/public/404.html
|
130
|
+
- example/public/422.html
|
131
|
+
- example/public/500.html
|
132
|
+
- example/public/favicon.ico
|
133
|
+
- example/public/robots.txt
|
134
|
+
- example/script/rails
|
135
|
+
- example/spec/controllers/posts_controller_spec.rb
|
136
|
+
- example/spec/spec_helper.rb
|
137
|
+
- example/vendor/assets/stylesheets/.gitkeep
|
138
|
+
- example/vendor/plugins/.gitkeep
|
139
|
+
- gemfiles/rails3_2/Gemfile
|
140
|
+
- gemfiles/rails4_0/Gemfile
|
73
141
|
- init.rb
|
74
142
|
- lib/crummy.rb
|
75
143
|
- lib/crummy/action_controller.rb
|