backstack 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (80) hide show
  1. data/.document +5 -0
  2. data/Gemfile +13 -0
  3. data/Gemfile.lock +20 -0
  4. data/LICENSE.txt +20 -0
  5. data/README.rdoc +38 -0
  6. data/Rakefile +54 -0
  7. data/VERSION +1 -0
  8. data/art/bowling_pins.graffle +0 -0
  9. data/backstack.gemspec +127 -0
  10. data/lib/backstack.rb +161 -0
  11. data/lib/backstacklib.rb +115 -0
  12. data/test/neutral/helper.rb +27 -0
  13. data/test/neutral/test_backstacklib.rb +181 -0
  14. data/test/rails_root/.gitignore +4 -0
  15. data/test/rails_root/Gemfile +33 -0
  16. data/test/rails_root/Gemfile.lock +77 -0
  17. data/test/rails_root/README +256 -0
  18. data/test/rails_root/Rakefile +12 -0
  19. data/test/rails_root/app/controllers/application_controller.rb +7 -0
  20. data/test/rails_root/app/controllers/c1_controller.rb +8 -0
  21. data/test/rails_root/app/controllers/c2_controller.rb +11 -0
  22. data/test/rails_root/app/controllers/c3_controller.rb +17 -0
  23. data/test/rails_root/app/controllers/c4_controller.rb +22 -0
  24. data/test/rails_root/app/helpers/application_helper.rb +2 -0
  25. data/test/rails_root/app/helpers/c1_helper.rb +2 -0
  26. data/test/rails_root/app/helpers/c2_helper.rb +2 -0
  27. data/test/rails_root/app/helpers/c3_helper.rb +2 -0
  28. data/test/rails_root/app/helpers/c4_helper.rb +2 -0
  29. data/test/rails_root/app/views/c1/a.html.erb +1 -0
  30. data/test/rails_root/app/views/c2/b.html.erb +1 -0
  31. data/test/rails_root/app/views/c2/c.html.erb +1 -0
  32. data/test/rails_root/app/views/c3/d.html.erb +1 -0
  33. data/test/rails_root/app/views/c3/e.html.erb +1 -0
  34. data/test/rails_root/app/views/c3/f.html.erb +1 -0
  35. data/test/rails_root/app/views/c4/g.html.erb +1 -0
  36. data/test/rails_root/app/views/c4/h.html.erb +1 -0
  37. data/test/rails_root/app/views/c4/i.html.erb +1 -0
  38. data/test/rails_root/app/views/c4/j.html.erb +1 -0
  39. data/test/rails_root/app/views/layouts/_pins.html.erb +64 -0
  40. data/test/rails_root/app/views/layouts/application.html.erb +15 -0
  41. data/test/rails_root/config/application.rb +47 -0
  42. data/test/rails_root/config/boot.rb +6 -0
  43. data/test/rails_root/config/environment.rb +5 -0
  44. data/test/rails_root/config/environments/development.rb +26 -0
  45. data/test/rails_root/config/environments/production.rb +49 -0
  46. data/test/rails_root/config/environments/test.rb +35 -0
  47. data/test/rails_root/config/initializers/backtrace_silencers.rb +7 -0
  48. data/test/rails_root/config/initializers/inflections.rb +10 -0
  49. data/test/rails_root/config/initializers/mime_types.rb +5 -0
  50. data/test/rails_root/config/initializers/secret_token.rb +7 -0
  51. data/test/rails_root/config/initializers/session_store.rb +8 -0
  52. data/test/rails_root/config/locales/en.yml +5 -0
  53. data/test/rails_root/config/routes.rb +15 -0
  54. data/test/rails_root/config.ru +4 -0
  55. data/test/rails_root/db/seeds.rb +7 -0
  56. data/test/rails_root/lib/tasks/.gitkeep +0 -0
  57. data/test/rails_root/public/404.html +26 -0
  58. data/test/rails_root/public/422.html +26 -0
  59. data/test/rails_root/public/500.html +26 -0
  60. data/test/rails_root/public/favicon.ico +0 -0
  61. data/test/rails_root/public/images/rails.png +0 -0
  62. data/test/rails_root/public/javascripts/.gitkeep +0 -0
  63. data/test/rails_root/public/javascripts/application.js +0 -0
  64. data/test/rails_root/public/robots.txt +5 -0
  65. data/test/rails_root/public/stylesheets/.gitkeep +0 -0
  66. data/test/rails_root/public/stylesheets/application.css +27 -0
  67. data/test/rails_root/script/rails +6 -0
  68. data/test/rails_root/test/functional/c1_controller_test.rb +10 -0
  69. data/test/rails_root/test/functional/c2_controller_test.rb +15 -0
  70. data/test/rails_root/test/functional/c3_controller_test.rb +20 -0
  71. data/test/rails_root/test/functional/c4_controller_test.rb +24 -0
  72. data/test/rails_root/test/integration/backstack_test.rb +96 -0
  73. data/test/rails_root/test/performance/browsing_test.rb +9 -0
  74. data/test/rails_root/test/test_helper.rb +7 -0
  75. data/test/rails_root/test/unit/helpers/c1_helper_test.rb +4 -0
  76. data/test/rails_root/test/unit/helpers/c2_helper_test.rb +4 -0
  77. data/test/rails_root/test/unit/helpers/c3_helper_test.rb +4 -0
  78. data/test/rails_root/test/unit/helpers/c4_helper_test.rb +4 -0
  79. data/test/rails_root/vendor/plugins/.gitkeep +0 -0
  80. metadata +176 -0
@@ -0,0 +1,7 @@
1
+ ENV["RAILS_ENV"] = "test"
2
+ require File.expand_path('../../config/environment', __FILE__)
3
+ require 'rails/test_help'
4
+
5
+ class ActiveSupport::TestCase
6
+ # Add more helper methods to be used by all tests here...
7
+ end
@@ -0,0 +1,4 @@
1
+ require 'test_helper'
2
+
3
+ class C1HelperTest < ActionView::TestCase
4
+ end
@@ -0,0 +1,4 @@
1
+ require 'test_helper'
2
+
3
+ class C2HelperTest < ActionView::TestCase
4
+ end
@@ -0,0 +1,4 @@
1
+ require 'test_helper'
2
+
3
+ class C3HelperTest < ActionView::TestCase
4
+ end
@@ -0,0 +1,4 @@
1
+ require 'test_helper'
2
+
3
+ class C4HelperTest < ActionView::TestCase
4
+ end
File without changes
metadata ADDED
@@ -0,0 +1,176 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: backstack
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Kevin Swope
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2011-07-09 00:00:00.000000000 -04:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: minitest
17
+ requirement: &2153556140 !ruby/object:Gem::Requirement
18
+ none: false
19
+ requirements:
20
+ - - ! '>='
21
+ - !ruby/object:Gem::Version
22
+ version: '0'
23
+ type: :development
24
+ prerelease: false
25
+ version_requirements: *2153556140
26
+ - !ruby/object:Gem::Dependency
27
+ name: bundler
28
+ requirement: &2153555660 !ruby/object:Gem::Requirement
29
+ none: false
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: 1.0.0
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: *2153555660
37
+ - !ruby/object:Gem::Dependency
38
+ name: jeweler
39
+ requirement: &2153555180 !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - ~>
43
+ - !ruby/object:Gem::Version
44
+ version: 1.6.0
45
+ type: :development
46
+ prerelease: false
47
+ version_requirements: *2153555180
48
+ - !ruby/object:Gem::Dependency
49
+ name: rcov
50
+ requirement: &2153571060 !ruby/object:Gem::Requirement
51
+ none: false
52
+ requirements:
53
+ - - ! '>='
54
+ - !ruby/object:Gem::Version
55
+ version: '0'
56
+ type: :development
57
+ prerelease: false
58
+ version_requirements: *2153571060
59
+ description: Rails plugin used to dynamically and intelligently generate "back" links
60
+ or a breadcrumb trail.
61
+ email: git-kevdev@snkmail.com
62
+ executables: []
63
+ extensions: []
64
+ extra_rdoc_files:
65
+ - LICENSE.txt
66
+ - README.rdoc
67
+ files:
68
+ - .document
69
+ - Gemfile
70
+ - Gemfile.lock
71
+ - LICENSE.txt
72
+ - README.rdoc
73
+ - Rakefile
74
+ - VERSION
75
+ - art/bowling_pins.graffle
76
+ - backstack.gemspec
77
+ - lib/backstack.rb
78
+ - lib/backstacklib.rb
79
+ - test/neutral/helper.rb
80
+ - test/neutral/test_backstacklib.rb
81
+ - test/rails_root/.gitignore
82
+ - test/rails_root/Gemfile
83
+ - test/rails_root/Gemfile.lock
84
+ - test/rails_root/README
85
+ - test/rails_root/Rakefile
86
+ - test/rails_root/app/controllers/application_controller.rb
87
+ - test/rails_root/app/controllers/c1_controller.rb
88
+ - test/rails_root/app/controllers/c2_controller.rb
89
+ - test/rails_root/app/controllers/c3_controller.rb
90
+ - test/rails_root/app/controllers/c4_controller.rb
91
+ - test/rails_root/app/helpers/application_helper.rb
92
+ - test/rails_root/app/helpers/c1_helper.rb
93
+ - test/rails_root/app/helpers/c2_helper.rb
94
+ - test/rails_root/app/helpers/c3_helper.rb
95
+ - test/rails_root/app/helpers/c4_helper.rb
96
+ - test/rails_root/app/views/c1/a.html.erb
97
+ - test/rails_root/app/views/c2/b.html.erb
98
+ - test/rails_root/app/views/c2/c.html.erb
99
+ - test/rails_root/app/views/c3/d.html.erb
100
+ - test/rails_root/app/views/c3/e.html.erb
101
+ - test/rails_root/app/views/c3/f.html.erb
102
+ - test/rails_root/app/views/c4/g.html.erb
103
+ - test/rails_root/app/views/c4/h.html.erb
104
+ - test/rails_root/app/views/c4/i.html.erb
105
+ - test/rails_root/app/views/c4/j.html.erb
106
+ - test/rails_root/app/views/layouts/_pins.html.erb
107
+ - test/rails_root/app/views/layouts/application.html.erb
108
+ - test/rails_root/config.ru
109
+ - test/rails_root/config/application.rb
110
+ - test/rails_root/config/boot.rb
111
+ - test/rails_root/config/environment.rb
112
+ - test/rails_root/config/environments/development.rb
113
+ - test/rails_root/config/environments/production.rb
114
+ - test/rails_root/config/environments/test.rb
115
+ - test/rails_root/config/initializers/backtrace_silencers.rb
116
+ - test/rails_root/config/initializers/inflections.rb
117
+ - test/rails_root/config/initializers/mime_types.rb
118
+ - test/rails_root/config/initializers/secret_token.rb
119
+ - test/rails_root/config/initializers/session_store.rb
120
+ - test/rails_root/config/locales/en.yml
121
+ - test/rails_root/config/routes.rb
122
+ - test/rails_root/db/seeds.rb
123
+ - test/rails_root/lib/tasks/.gitkeep
124
+ - test/rails_root/public/404.html
125
+ - test/rails_root/public/422.html
126
+ - test/rails_root/public/500.html
127
+ - test/rails_root/public/favicon.ico
128
+ - test/rails_root/public/images/rails.png
129
+ - test/rails_root/public/javascripts/.gitkeep
130
+ - test/rails_root/public/javascripts/application.js
131
+ - test/rails_root/public/robots.txt
132
+ - test/rails_root/public/stylesheets/.gitkeep
133
+ - test/rails_root/public/stylesheets/application.css
134
+ - test/rails_root/script/rails
135
+ - test/rails_root/test/functional/c1_controller_test.rb
136
+ - test/rails_root/test/functional/c2_controller_test.rb
137
+ - test/rails_root/test/functional/c3_controller_test.rb
138
+ - test/rails_root/test/functional/c4_controller_test.rb
139
+ - test/rails_root/test/integration/backstack_test.rb
140
+ - test/rails_root/test/performance/browsing_test.rb
141
+ - test/rails_root/test/test_helper.rb
142
+ - test/rails_root/test/unit/helpers/c1_helper_test.rb
143
+ - test/rails_root/test/unit/helpers/c2_helper_test.rb
144
+ - test/rails_root/test/unit/helpers/c3_helper_test.rb
145
+ - test/rails_root/test/unit/helpers/c4_helper_test.rb
146
+ - test/rails_root/vendor/plugins/.gitkeep
147
+ has_rdoc: true
148
+ homepage: http://github.com/kswope/backstack
149
+ licenses:
150
+ - MIT
151
+ post_install_message:
152
+ rdoc_options: []
153
+ require_paths:
154
+ - lib
155
+ required_ruby_version: !ruby/object:Gem::Requirement
156
+ none: false
157
+ requirements:
158
+ - - ! '>='
159
+ - !ruby/object:Gem::Version
160
+ version: '0'
161
+ segments:
162
+ - 0
163
+ hash: -3534997333895431026
164
+ required_rubygems_version: !ruby/object:Gem::Requirement
165
+ none: false
166
+ requirements:
167
+ - - ! '>='
168
+ - !ruby/object:Gem::Version
169
+ version: '0'
170
+ requirements: []
171
+ rubyforge_project:
172
+ rubygems_version: 1.6.2
173
+ signing_key:
174
+ specification_version: 3
175
+ summary: Rails plugin used to generate "back" links or a breadcrumb trail.
176
+ test_files: []