route66 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +24 -0
  3. data/Rakefile +40 -0
  4. data/app/controllers/route66_controller.rb +36 -0
  5. data/app/views/route66/index.html.erb +26 -0
  6. data/app/views/route66/show.html.erb +27 -0
  7. data/config/routes.rb +4 -0
  8. data/lib/route66.rb +4 -0
  9. data/lib/route66/engine.rb +4 -0
  10. data/lib/route66/version.rb +3 -0
  11. data/lib/tasks/route66_tasks.rake +4 -0
  12. data/test/dummy/README.rdoc +261 -0
  13. data/test/dummy/Rakefile +7 -0
  14. data/test/dummy/app/assets/javascripts/application.js +15 -0
  15. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  16. data/test/dummy/app/controllers/application_controller.rb +3 -0
  17. data/test/dummy/app/helpers/application_helper.rb +2 -0
  18. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  19. data/test/dummy/config.ru +4 -0
  20. data/test/dummy/config/application.rb +59 -0
  21. data/test/dummy/config/boot.rb +10 -0
  22. data/test/dummy/config/database.yml +25 -0
  23. data/test/dummy/config/environment.rb +5 -0
  24. data/test/dummy/config/environments/development.rb +37 -0
  25. data/test/dummy/config/environments/production.rb +67 -0
  26. data/test/dummy/config/environments/test.rb +37 -0
  27. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  28. data/test/dummy/config/initializers/inflections.rb +15 -0
  29. data/test/dummy/config/initializers/mime_types.rb +5 -0
  30. data/test/dummy/config/initializers/secret_token.rb +7 -0
  31. data/test/dummy/config/initializers/session_store.rb +8 -0
  32. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  33. data/test/dummy/config/locales/en.yml +5 -0
  34. data/test/dummy/config/routes.rb +58 -0
  35. data/test/dummy/db/development.sqlite3 +0 -0
  36. data/test/dummy/log/development.log +405 -0
  37. data/test/dummy/public/404.html +26 -0
  38. data/test/dummy/public/422.html +26 -0
  39. data/test/dummy/public/500.html +25 -0
  40. data/test/dummy/public/favicon.ico +0 -0
  41. data/test/dummy/script/rails +6 -0
  42. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  43. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  44. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  45. data/test/dummy/tmp/cache/assets/D4F/B60/sprockets%2F1ec8df28134f28dc958925181bcae6e9 +0 -0
  46. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  47. data/test/dummy/tmp/cache/assets/D5C/570/sprockets%2F4120a80c27260c3efdc5ee0f1d7ad077 +0 -0
  48. data/test/dummy/tmp/cache/assets/D91/1E0/sprockets%2Fac1c5c8a143ad540f874bfd69aaf2134 +0 -0
  49. data/test/dummy/tmp/cache/assets/DD5/4C0/sprockets%2F4d49b0f145e3355e9fee73bcbb27e6fb +0 -0
  50. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  51. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  52. data/test/integration/navigation_test.rb +10 -0
  53. data/test/route66_test.rb +7 -0
  54. data/test/test_helper.rb +15 -0
  55. metadata +180 -0
@@ -0,0 +1,25 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ </div>
24
+ </body>
25
+ </html>
File without changes
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1,10 @@
1
+ require 'test_helper'
2
+
3
+ class NavigationTest < ActionDispatch::IntegrationTest
4
+ fixtures :all
5
+
6
+ # test "the truth" do
7
+ # assert true
8
+ # end
9
+ end
10
+
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class Route66Test < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, Route66
6
+ end
7
+ end
@@ -0,0 +1,15 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
5
+ require "rails/test_help"
6
+
7
+ Rails.backtrace_cleaner.remove_silencers!
8
+
9
+ # Load support files
10
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
11
+
12
+ # Load fixtures from the engine
13
+ if ActiveSupport::TestCase.method_defined?(:fixture_path=)
14
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
15
+ end
metadata ADDED
@@ -0,0 +1,180 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: route66
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Lance Hampton
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-11-04 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rails
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 3.2.8
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: 3.2.8
30
+ - !ruby/object:Gem::Dependency
31
+ name: sqlite3
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ description: Displays routes information
47
+ email:
48
+ - lance.hampton@gmail.com
49
+ executables: []
50
+ extensions: []
51
+ extra_rdoc_files: []
52
+ files:
53
+ - app/controllers/route66_controller.rb
54
+ - app/views/route66/show.html.erb
55
+ - app/views/route66/index.html.erb
56
+ - config/routes.rb
57
+ - lib/route66.rb
58
+ - lib/route66/engine.rb
59
+ - lib/route66/version.rb
60
+ - lib/tasks/route66_tasks.rake
61
+ - MIT-LICENSE
62
+ - Rakefile
63
+ - README.rdoc
64
+ - test/route66_test.rb
65
+ - test/integration/navigation_test.rb
66
+ - test/test_helper.rb
67
+ - test/dummy/script/rails
68
+ - test/dummy/config/initializers/secret_token.rb
69
+ - test/dummy/config/initializers/session_store.rb
70
+ - test/dummy/config/initializers/mime_types.rb
71
+ - test/dummy/config/initializers/inflections.rb
72
+ - test/dummy/config/initializers/backtrace_silencers.rb
73
+ - test/dummy/config/initializers/wrap_parameters.rb
74
+ - test/dummy/config/application.rb
75
+ - test/dummy/config/boot.rb
76
+ - test/dummy/config/database.yml
77
+ - test/dummy/config/routes.rb
78
+ - test/dummy/config/environment.rb
79
+ - test/dummy/config/environments/development.rb
80
+ - test/dummy/config/environments/test.rb
81
+ - test/dummy/config/environments/production.rb
82
+ - test/dummy/config/locales/en.yml
83
+ - test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
84
+ - test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
85
+ - test/dummy/tmp/cache/assets/DD5/4C0/sprockets%2F4d49b0f145e3355e9fee73bcbb27e6fb
86
+ - test/dummy/tmp/cache/assets/D91/1E0/sprockets%2Fac1c5c8a143ad540f874bfd69aaf2134
87
+ - test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
88
+ - test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
89
+ - test/dummy/tmp/cache/assets/D4F/B60/sprockets%2F1ec8df28134f28dc958925181bcae6e9
90
+ - test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
91
+ - test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
92
+ - test/dummy/tmp/cache/assets/D5C/570/sprockets%2F4120a80c27260c3efdc5ee0f1d7ad077
93
+ - test/dummy/app/controllers/application_controller.rb
94
+ - test/dummy/app/views/layouts/application.html.erb
95
+ - test/dummy/app/assets/javascripts/application.js
96
+ - test/dummy/app/assets/stylesheets/application.css
97
+ - test/dummy/app/helpers/application_helper.rb
98
+ - test/dummy/Rakefile
99
+ - test/dummy/config.ru
100
+ - test/dummy/README.rdoc
101
+ - test/dummy/public/500.html
102
+ - test/dummy/public/404.html
103
+ - test/dummy/public/favicon.ico
104
+ - test/dummy/public/422.html
105
+ - test/dummy/db/development.sqlite3
106
+ - test/dummy/log/development.log
107
+ homepage: http://zengine.com
108
+ licenses: []
109
+ post_install_message:
110
+ rdoc_options: []
111
+ require_paths:
112
+ - lib
113
+ required_ruby_version: !ruby/object:Gem::Requirement
114
+ none: false
115
+ requirements:
116
+ - - ! '>='
117
+ - !ruby/object:Gem::Version
118
+ version: '0'
119
+ segments:
120
+ - 0
121
+ hash: -2983501537096501015
122
+ required_rubygems_version: !ruby/object:Gem::Requirement
123
+ none: false
124
+ requirements:
125
+ - - ! '>='
126
+ - !ruby/object:Gem::Version
127
+ version: '0'
128
+ segments:
129
+ - 0
130
+ hash: -2983501537096501015
131
+ requirements: []
132
+ rubyforge_project:
133
+ rubygems_version: 1.8.21
134
+ signing_key:
135
+ specification_version: 3
136
+ summary: Displays routes information
137
+ test_files:
138
+ - test/route66_test.rb
139
+ - test/integration/navigation_test.rb
140
+ - test/test_helper.rb
141
+ - test/dummy/script/rails
142
+ - test/dummy/config/initializers/secret_token.rb
143
+ - test/dummy/config/initializers/session_store.rb
144
+ - test/dummy/config/initializers/mime_types.rb
145
+ - test/dummy/config/initializers/inflections.rb
146
+ - test/dummy/config/initializers/backtrace_silencers.rb
147
+ - test/dummy/config/initializers/wrap_parameters.rb
148
+ - test/dummy/config/application.rb
149
+ - test/dummy/config/boot.rb
150
+ - test/dummy/config/database.yml
151
+ - test/dummy/config/routes.rb
152
+ - test/dummy/config/environment.rb
153
+ - test/dummy/config/environments/development.rb
154
+ - test/dummy/config/environments/test.rb
155
+ - test/dummy/config/environments/production.rb
156
+ - test/dummy/config/locales/en.yml
157
+ - test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
158
+ - test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
159
+ - test/dummy/tmp/cache/assets/DD5/4C0/sprockets%2F4d49b0f145e3355e9fee73bcbb27e6fb
160
+ - test/dummy/tmp/cache/assets/D91/1E0/sprockets%2Fac1c5c8a143ad540f874bfd69aaf2134
161
+ - test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
162
+ - test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
163
+ - test/dummy/tmp/cache/assets/D4F/B60/sprockets%2F1ec8df28134f28dc958925181bcae6e9
164
+ - test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
165
+ - test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
166
+ - test/dummy/tmp/cache/assets/D5C/570/sprockets%2F4120a80c27260c3efdc5ee0f1d7ad077
167
+ - test/dummy/app/controllers/application_controller.rb
168
+ - test/dummy/app/views/layouts/application.html.erb
169
+ - test/dummy/app/assets/javascripts/application.js
170
+ - test/dummy/app/assets/stylesheets/application.css
171
+ - test/dummy/app/helpers/application_helper.rb
172
+ - test/dummy/Rakefile
173
+ - test/dummy/config.ru
174
+ - test/dummy/README.rdoc
175
+ - test/dummy/public/500.html
176
+ - test/dummy/public/404.html
177
+ - test/dummy/public/favicon.ico
178
+ - test/dummy/public/422.html
179
+ - test/dummy/db/development.sqlite3
180
+ - test/dummy/log/development.log