superconductor 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 (48) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +3 -0
  3. data/Rakefile +40 -0
  4. data/app/assets/javascripts/superconductor.js +1 -0
  5. data/app/assets/javascripts/superconductor/panel.js.coffee +80 -0
  6. data/app/assets/stylesheets/superconductor.css +3 -0
  7. data/app/assets/stylesheets/superconductor/panel.css.scss +77 -0
  8. data/app/controllers/file_controller.rb +13 -0
  9. data/app/helpers/superconductor/panel_helper.rb +5 -0
  10. data/app/views/superconductor/_panel.html.erb +62 -0
  11. data/config/routes.rb +5 -0
  12. data/lib/superconductor.rb +4 -0
  13. data/lib/superconductor/engine.rb +4 -0
  14. data/lib/superconductor/version.rb +3 -0
  15. data/lib/tasks/superconductor_tasks.rake +4 -0
  16. data/test/dummy/README.rdoc +261 -0
  17. data/test/dummy/Rakefile +7 -0
  18. data/test/dummy/app/assets/javascripts/application.js +15 -0
  19. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  20. data/test/dummy/app/controllers/application_controller.rb +3 -0
  21. data/test/dummy/app/helpers/application_helper.rb +2 -0
  22. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  23. data/test/dummy/config.ru +4 -0
  24. data/test/dummy/config/application.rb +56 -0
  25. data/test/dummy/config/boot.rb +10 -0
  26. data/test/dummy/config/database.yml +25 -0
  27. data/test/dummy/config/environment.rb +5 -0
  28. data/test/dummy/config/environments/development.rb +37 -0
  29. data/test/dummy/config/environments/production.rb +67 -0
  30. data/test/dummy/config/environments/test.rb +37 -0
  31. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  32. data/test/dummy/config/initializers/inflections.rb +15 -0
  33. data/test/dummy/config/initializers/mime_types.rb +5 -0
  34. data/test/dummy/config/initializers/secret_token.rb +7 -0
  35. data/test/dummy/config/initializers/session_store.rb +8 -0
  36. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  37. data/test/dummy/config/locales/en.yml +5 -0
  38. data/test/dummy/config/routes.rb +58 -0
  39. data/test/dummy/public/404.html +26 -0
  40. data/test/dummy/public/422.html +26 -0
  41. data/test/dummy/public/500.html +25 -0
  42. data/test/dummy/public/favicon.ico +0 -0
  43. data/test/dummy/script/rails +6 -0
  44. data/test/integration/navigation_test.rb +10 -0
  45. data/test/superconductor_test.rb +7 -0
  46. data/test/test_helper.rb +10 -0
  47. data/test/unit/helpers/superconductor/panel_helper_test.rb +4 -0
  48. metadata +169 -0
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</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/404.html -->
21
+ <div class="dialog">
22
+ <h1>The page you were looking for doesn't exist.</h1>
23
+ <p>You may have mistyped the address or the page may have moved.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</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/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -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 ruby1.9.1
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 SuperconductorTest < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, Superconductor
6
+ end
7
+ end
@@ -0,0 +1,10 @@
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 }
@@ -0,0 +1,4 @@
1
+ require 'test_helper'
2
+
3
+ class Superconductor::PanelHelperTest < ActionView::TestCase
4
+ end
metadata ADDED
@@ -0,0 +1,169 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: superconductor
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 0
8
+ - 1
9
+ version: 0.0.1
10
+ platform: ruby
11
+ authors:
12
+ - Jaden Carver
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2012-01-19 00:00:00 -07:00
18
+ default_executable:
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: rails
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ segments:
29
+ - 3
30
+ - 1
31
+ - 0
32
+ version: 3.1.0
33
+ type: :runtime
34
+ version_requirements: *id001
35
+ - !ruby/object:Gem::Dependency
36
+ name: jquery-rails
37
+ prerelease: false
38
+ requirement: &id002 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ segments:
44
+ - 0
45
+ version: "0"
46
+ type: :runtime
47
+ version_requirements: *id002
48
+ description: Build your Ruby on Rails application from your Ruby on Rails application!
49
+ email:
50
+ - jaden.carver@gmail.com
51
+ executables: []
52
+
53
+ extensions: []
54
+
55
+ extra_rdoc_files: []
56
+
57
+ files:
58
+ - app/assets/stylesheets/superconductor/panel.css.scss
59
+ - app/assets/stylesheets/superconductor.css
60
+ - app/assets/javascripts/superconductor.js
61
+ - app/assets/javascripts/superconductor/panel.js.coffee
62
+ - app/controllers/file_controller.rb
63
+ - app/views/superconductor/_panel.html.erb
64
+ - app/helpers/superconductor/panel_helper.rb
65
+ - config/routes.rb
66
+ - lib/superconductor.rb
67
+ - lib/superconductor/version.rb
68
+ - lib/superconductor/engine.rb
69
+ - lib/tasks/superconductor_tasks.rake
70
+ - MIT-LICENSE
71
+ - Rakefile
72
+ - README.rdoc
73
+ - test/superconductor_test.rb
74
+ - test/unit/helpers/superconductor/panel_helper_test.rb
75
+ - test/test_helper.rb
76
+ - test/integration/navigation_test.rb
77
+ - test/dummy/Rakefile
78
+ - test/dummy/script/rails
79
+ - test/dummy/app/assets/stylesheets/application.css
80
+ - test/dummy/app/assets/javascripts/application.js
81
+ - test/dummy/app/controllers/application_controller.rb
82
+ - test/dummy/app/views/layouts/application.html.erb
83
+ - test/dummy/app/helpers/application_helper.rb
84
+ - test/dummy/config.ru
85
+ - test/dummy/public/422.html
86
+ - test/dummy/public/404.html
87
+ - test/dummy/public/500.html
88
+ - test/dummy/public/favicon.ico
89
+ - test/dummy/README.rdoc
90
+ - test/dummy/config/environments/test.rb
91
+ - test/dummy/config/environments/production.rb
92
+ - test/dummy/config/environments/development.rb
93
+ - test/dummy/config/initializers/session_store.rb
94
+ - test/dummy/config/initializers/mime_types.rb
95
+ - test/dummy/config/initializers/wrap_parameters.rb
96
+ - test/dummy/config/initializers/backtrace_silencers.rb
97
+ - test/dummy/config/initializers/inflections.rb
98
+ - test/dummy/config/initializers/secret_token.rb
99
+ - test/dummy/config/database.yml
100
+ - test/dummy/config/routes.rb
101
+ - test/dummy/config/environment.rb
102
+ - test/dummy/config/locales/en.yml
103
+ - test/dummy/config/boot.rb
104
+ - test/dummy/config/application.rb
105
+ has_rdoc: true
106
+ homepage: http://www.rapidsight.com
107
+ licenses: []
108
+
109
+ post_install_message:
110
+ rdoc_options: []
111
+
112
+ require_paths:
113
+ - lib
114
+ required_ruby_version: !ruby/object:Gem::Requirement
115
+ none: false
116
+ requirements:
117
+ - - ">="
118
+ - !ruby/object:Gem::Version
119
+ segments:
120
+ - 0
121
+ version: "0"
122
+ required_rubygems_version: !ruby/object:Gem::Requirement
123
+ none: false
124
+ requirements:
125
+ - - ">="
126
+ - !ruby/object:Gem::Version
127
+ segments:
128
+ - 0
129
+ version: "0"
130
+ requirements: []
131
+
132
+ rubyforge_project:
133
+ rubygems_version: 1.3.7
134
+ signing_key:
135
+ specification_version: 3
136
+ summary: Context aware development and debugging panel
137
+ test_files:
138
+ - test/superconductor_test.rb
139
+ - test/unit/helpers/superconductor/panel_helper_test.rb
140
+ - test/test_helper.rb
141
+ - test/integration/navigation_test.rb
142
+ - test/dummy/Rakefile
143
+ - test/dummy/script/rails
144
+ - test/dummy/app/assets/stylesheets/application.css
145
+ - test/dummy/app/assets/javascripts/application.js
146
+ - test/dummy/app/controllers/application_controller.rb
147
+ - test/dummy/app/views/layouts/application.html.erb
148
+ - test/dummy/app/helpers/application_helper.rb
149
+ - test/dummy/config.ru
150
+ - test/dummy/public/422.html
151
+ - test/dummy/public/404.html
152
+ - test/dummy/public/500.html
153
+ - test/dummy/public/favicon.ico
154
+ - test/dummy/README.rdoc
155
+ - test/dummy/config/environments/test.rb
156
+ - test/dummy/config/environments/production.rb
157
+ - test/dummy/config/environments/development.rb
158
+ - test/dummy/config/initializers/session_store.rb
159
+ - test/dummy/config/initializers/mime_types.rb
160
+ - test/dummy/config/initializers/wrap_parameters.rb
161
+ - test/dummy/config/initializers/backtrace_silencers.rb
162
+ - test/dummy/config/initializers/inflections.rb
163
+ - test/dummy/config/initializers/secret_token.rb
164
+ - test/dummy/config/database.yml
165
+ - test/dummy/config/routes.rb
166
+ - test/dummy/config/environment.rb
167
+ - test/dummy/config/locales/en.yml
168
+ - test/dummy/config/boot.rb
169
+ - test/dummy/config/application.rb