superconductor 0.0.2 → 0.0.3

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.
@@ -1,80 +1,22 @@
1
- ctrl_down = false
2
-
3
1
  jQuery ->
4
- _debug_resize_mousemove = (event) ->
5
- $('section#superconductor_panel').css('width',document.width - event.pageX)
6
-
7
- _debug_resize_mouseup = (event) ->
8
- $('html').unbind('mousemove',_debug_resize_mousemove)
9
- $('html').unbind('mouseup',_debug_resize_mouseup)
10
- $('section#superconductor_panel').removeClass('resizing')
2
+ panel = $('aside#superconductor')
3
+ toolbar = panel.find('menu[type=toolbar]')
11
4
 
12
- if document.location.hash == '#superconductor'
13
- $('section#superconductor_panel').css('right','0px').show()
14
- $('body').addClass('debugging')
5
+ initialTimeout = setTimeout( ->
6
+ panel.addClass('closed')
7
+ , 2500)
15
8
 
16
- $(document)
17
- .keydown (event) ->
18
- ctrl_down = true if event.which == 17
19
- .keyup (event) ->
20
- ctrl_down = false if event.keyCode == 17
21
- .keydown (event) ->
22
- if (ctrl_down && event.which == 192)
23
- if $('section#superconductor_panel:hidden').length > 0
24
- $('body').addClass('debugging')
25
- document.location.hash = 'debug'
26
- $('section#superconductor_panel')
27
- .show()
28
- .animate
29
- 'right': '0px'
30
- , 'fast'
31
- else
32
- document.location.hash = ''
33
- $('section#superconductor_panel')
34
- .animate
35
- 'right': '-'+$('section#superconductor_panel').css('width')
36
- , 'fast'
37
- ->
38
- $(this).hide()
39
- $('body').removeClass('debugging')
40
- return false;
41
- return true
9
+ toolbar.find('button.expander').click ->
10
+ clearTimeout(initialTimeout)
11
+ panel.removeClass('closed').toggleClass('expanded')
42
12
 
43
- $('section#superconductor_panel .resizer').mousedown (event) ->
44
- if event.which == 1
45
- $('section#superconductor_panel').addClass('resizing')
46
- $('html').bind('mousemove',_debug_resize_mousemove)
47
- $('html').bind('mouseup',_debug_resize_mouseup)
13
+ toolbar.find('button.closer').click ->
14
+ clearTimeout(initialTimeout)
15
+ panel.addClass('closed')
48
16
 
49
- $('section#superconductor_panel details:has(textarea) summary').click (event) ->
50
- if event.target.tagName == "SUMMARY" && event.which == 1
51
- details = $(this).parent()
52
- unless details.attr('open')
53
- $('section#superconductor_panel').animate
54
- width: '50%'
55
- , 'fast'
56
- setTimeout( ->
57
- textarea = details.find('textarea')
58
- content = textarea[0].value
59
- lineOffset = 0
60
- if line_no = parseInt(textarea.attr('data-line-no'))
61
- for i in [1...line_no]
62
- lineOffset = content.indexOf("\n",lineOffset)+1
63
- textarea[0].setSelectionRange(lineOffset,lineOffset)
64
- textarea[0].scrollTop = (line_no - 1) * parseInt(textarea.css('line-height'))
65
- , 10)
17
+ panel.click ->
18
+ clearTimeout(initialTimeout)
66
19
 
67
- $('section#superconductor_panel textarea').keydown (event) ->
68
- if ctrl_down && event.which == 83
69
- $.ajax
70
- type: "post"
71
- url: this.form.action
72
- data: $(this.form).serialize()
73
- dataType: "json"
74
- context: this
75
- success: ->
76
- this.disabled = false
77
- window.location.reload(true)
78
- this.disabled = true
79
- event.preventDefault()
80
- return false
20
+ $(window).keyup (e) ->
21
+ clearTimeout(initialTimeout)
22
+ panel.toggleClass('closed') if e.which == 27
@@ -1,77 +1,118 @@
1
- // Place all the styles related to the pages controller here.
2
- // They will automatically be included in application.css.
3
- // You can use Sass (SCSS) here: http://sass-lang.com/
1
+ aside#superconductor {
2
+ position: fixed;
3
+ top: 0;
4
+ right: 0;
5
+ bottom: 0;
6
+ width: 30%;
7
+ margin: 0;
8
+ z-index: 99999;
9
+ font-family: arial, helvetica, verdana, sans-serif;
10
+ background-color: #000000;
11
+ background-color: rgba(0,0,0,0.7);
12
+ background: -webkit-linear-gradient(top, rgba(0,0,0,0.7), rgba(0,0,0,0.7), rgba(0,0,0,0.85));
13
+ border: none;
14
+ border-left: solid black 1px;
15
+ overflow: auto;
16
+ visibility: visible;
17
+ font-size: 10pt;
18
+ opacity: 1;
19
+ -webkit-transition: width 0.5s, opacity 0.5s;
20
+ box-shadow: 0 0 10px rgba(0,0,0,0.7);
21
+ &.expanded {
22
+ width: 100%;
23
+ menu[type=toolbar] button.expander:before { content: '\21E5' }
24
+ -webkit-transition: width 0.5s, opacity 0.5s;
25
+ }
26
+ &.closed {
27
+ visibility: hidden;
28
+ opacity: 0;
29
+ -webkit-transition: visibility 0s 0.5s, opacity 0.5s;
30
+ }
4
31
 
5
- body.debugging {
6
- overflow-x: hidden;
7
- }
32
+ // **
8
33
 
9
- section#superconductor_panel {
10
- details summary { cursor: pointer; }
11
- color: white;
12
- z-index: 998;
13
- a, a:link, a:visited { color: white; }
14
- -webkit-transition: opacity 0.5s;
15
- display: none;
16
- font-family: Verdana, Helvetica, sans-serif;
17
- font-size: 13px;
18
- color: white;
19
- background-color: #333333;
20
- position: fixed;
21
- top: 0px;
22
- bottom: 0px;
23
- right: -300px;
24
- width: 300px;
25
- br { clear: both; height: 0px; }
26
- background: -webkit-gradient(linear, left top, left bottom, from(#444444), to(#222222));
27
- > details {
34
+ &, * {
35
+ color: white;
36
+ }
37
+ > h1, > h2, > h3, > h4, > h5, > h6, > p, > ul, > dl, > section {
38
+ text-align: left;
39
+ margin-left: 10px;
40
+ }
41
+ dl {
42
+ dt {
43
+ float: left;
44
+ min-width: 80px;
45
+ margin-left: 5px;
46
+ }
47
+ dd {
48
+ margin-left: 85px;
49
+ }
50
+ }
51
+ code {
52
+ white-space: pre;
53
+ font-family: "Lucida Sans Typewriter", monospace;
54
+ font-size: 9pt;
55
+ }
56
+ hr {
57
+ border: none;
58
+ border-top: dotted #555555 1px;
59
+ }
60
+ > hr {
61
+ margin-left: -15px;
62
+ }
63
+ details {
64
+ margin: 1px 20px;
65
+ &[open] {
66
+ border-left: dotted #555555 1px;
67
+ margin-left: 19px;
68
+ margin-bottom: 1em;
69
+ & > summary {
70
+ background-color: rgba(50,50,50,0.5);
71
+ }
72
+ }
28
73
  > summary {
29
- background: -webkit-gradient(linear, left top, left bottom, from(#333333), to(#000000));
74
+ outline: none;
75
+ border: dotted #555555 1px;
76
+ padding: 2px;
77
+ overflow: hidden;
30
78
  white-space: nowrap;
31
- padding: 10px;
32
- > a { float: right; }
79
+ text-overflow: ellipsis;
80
+ margin-left: -15px;
81
+ cursor: pointer;
33
82
  }
34
- dl {
35
- padding: 5px 10px 10px 10px;
36
- margin: 0px 5px 0px 5px;
37
- dt {
38
- font-weight: bold;
39
- clear: left;
40
- float: left;
41
- min-width: 100px;
42
- &:after { content: ':' }
43
- }
44
- dd {
45
- &.nowrap {
83
+ &.methods {
84
+ ul {
85
+ li {
86
+ width: 200px;
87
+ float: left;
46
88
  white-space: nowrap;
47
- overflow: hidden;
48
89
  text-overflow: ellipsis;
90
+ overflow: hidden;
49
91
  }
50
- > details {
51
- }
92
+ &:after { display: block; content: ''; clear: both; }
52
93
  }
53
94
  }
95
+ ul.array {
96
+ margin: 0.2em;
97
+ padding-left: 1.75em;
98
+ }
54
99
  }
55
- textarea {
56
- background-color: #333333;
57
- color: white;
58
- width: 99%;
59
- max-width: 99%;
60
- height: 300px;
61
- line-height: 16px;
62
- }
63
- &.resizing {
64
- opacity: 0.85;
65
- }
66
- & .resizer {
67
- position: absolute;
68
- width: 10px;
69
- height: 100%;
70
- margin-left: -10px;
71
- padding: 0px;
72
- background: -webkit-gradient(linear, left top, right top, from(transparent), to(#111111));
73
- background: gradient(linear, left top, right top, from(#FFFFFF), to(#111111));
74
- cursor: w-resize;
75
- border: none;
100
+ > menu[type=toolbar] {
101
+ margin: 0;
102
+ position: fixed;
103
+ top: 0;
104
+ right: 0;
105
+ button {
106
+ background: #333333;
107
+ border: solid #FFFFFF 1px;
108
+ color: #FFFFFF;
109
+ border-radius: 0;
110
+ padding: 2px;
111
+ width: 25px;
112
+ height: 25px;
113
+ font-size: 16px;
114
+ margin: 2px;
115
+ &.expander:before { content: '\21E4' }
116
+ }
76
117
  }
77
118
  }
@@ -1,13 +1,14 @@
1
- module Superconductor
2
- class FileController < ApplicationController
3
- def update
4
- @file = File.open(params[:file],'w')
5
- @file.puts(params[:content])
6
- @file.close
1
+ class Superconductor::FileController < ApplicationController
2
+ def edit
3
+ end
4
+
5
+ def update
6
+ @file = File.open(params[:file],'w')
7
+ @file.puts(params[:content])
8
+ @file.close
7
9
 
8
- respond_to do |format|
9
- format.json { render json: nil, status: :ok }
10
- end
10
+ respond_to do |format|
11
+ format.json { render json: nil, status: :ok }
11
12
  end
12
13
  end
13
14
  end
@@ -1,5 +1,2 @@
1
1
  module Superconductor::PanelHelper
2
- def superconductor_panel(&block)
3
- render :layout => "superconductor/panel", &block
4
- end
5
2
  end
File without changes
@@ -1,84 +1,81 @@
1
- <section id="superconductor_panel">
2
- <button class="resizer"></button>
3
- <details open>
4
- <summary>
5
- <%= request.request_method %> Parameters
6
- </summary>
1
+ <%= stylesheet_link_tag 'superconductor.css' %>
2
+ <%= javascript_include_tag 'superconductor.js' %>
3
+
4
+ <aside id="superconductor">
5
+ <menu type="toolbar">
6
+ <button class="directory">≡</button> |
7
+ <button class="expander"></button><button class="closer">✕</button>
8
+ </menu>
9
+ <section class="instance-variables">
10
+ <h1>Statistics</h1>
7
11
  <dl>
8
- <% params.each do |k,v| %>
9
- <dt><%= k %></dt>
10
- <dd><%= v %></dd>
11
- <% end %>
12
+ <dt>Load Time:</dt>
13
+ <dd><code><%= sprintf('%.3f', (Time.now.usec - @_start_time).abs / 1000000.0) %> seconds</code></dd>
12
14
  </dl>
13
- <details>
14
- <summary>More...</summary>
15
- <dl>
16
- <dt>Remote IP</dt>
17
- <dd><%= request.remote_ip %></dd>
18
- <dt>User Agent</dt>
19
- <dd class="nowrap"><%= request.user_agent %></dd>
20
- <dt>Referer</dt>
21
- <dd><%= request.referer %></dd>
22
- <dt>Format</dt>
23
- <dd><%= request.format %></dd>
24
- </dl>
25
- <br />
26
- </details>
27
- </details>
28
- <details open>
29
- <summary>Variables</summary>
30
- <dl>
31
- <% controller.instance_variables.reject { |k| k.to_s.starts_with?('@_') }.map { |k| [k, instance_variable_get(k)] }.each do |k, v| %>
32
- <dt><%= k %></dt>
33
- <dd>
34
- <% if v.is_a?(ActiveRecord::Relation) %>
35
- <details>
36
- <summary><%= v.klass.name.pluralize %></summary>
37
- <dl>
38
- <dd><%= v.to_sql %>
39
- </dl>
40
- </details>
41
- <% elsif v.is_a?(ActiveRecord::Base) %>
42
- <details>
43
- <summary><%= "New " if v.new_record? %><%= v.class.name %></summary>
44
- <dl>
45
- <% v.attributes.each do |attribute,value| %>
46
- <dt><%= attribute %></dt>
47
- <dd><%= value %></dd>
15
+ <h1>Instance Variables</h1>
16
+ <% controller.instance_variables.reject { |k| k.to_s.starts_with?('@_') }.map { |k| [k, instance_variable_get(k)] }.each do |k, v| %>
17
+ <details <%='open' if controller.class.name.starts_with?(k[1..-1].pluralize.titleize) %>><summary><%= k %>:&nbsp;<%= v.to_s %></summary>
18
+ <% if v.kind_of?(ActiveModel::Naming) %>
19
+ <% begin %>
20
+ <%= render v %><hr />
21
+ <details><summary>Attributes</summary>
22
+ <dl>
23
+ <% v.attributes.each do |k,v| %>
24
+ <dt><%= k %></dt><dd><%= v.inspect %></dd>
25
+ <% end %>
26
+ </dl>
27
+ </details>
28
+ <% rescue Exception => exception %>
29
+ <%= content_tag :code, v.inspect %>
30
+ <% unless exception.is_a? ActionView::MissingTemplate %>
31
+ <details><summary><%= exception.class.name %></summary>
32
+ <%= content_tag :code, exception.message %>
33
+ </details>
34
+ <% end %>
35
+ <% end %>
36
+ <% elsif defined?(ActiveRecord) && v.kind_of?(ActiveRecord::Relation) %>
37
+ <%= content_tag :code, v.to_sql %>
38
+ <ul class="relation">
39
+ <% v.limit(10).each do %>
40
+ <% begin %>
41
+ <%= render v %>
42
+ <% rescue Exception => exception %>
43
+ <%= content_tag :code, v.inspect %>
44
+ <% unless exception.is_a? ActionView::MissingTemplate %>
45
+ <details><summary><%= exception.class.name %></summary>
46
+ <%= content_tag :code, exception.message %>
47
+ </details>
48
+ <% end %>
48
49
  <% end %>
49
- </dl>
50
- </details>
50
+ <% end %>
51
+ </ul>
52
+ <% elsif v.kind_of?(Array) %>
53
+ <ul class="array">
54
+ <% v[0..10].each do |vv| %>
55
+ <li><%= content_tag :code, vv.inspect %></li>
56
+ <% end %>
57
+ </ul>
51
58
  <% else %>
52
- <%= v %>
59
+ <%= content_tag :code, v.inspect %>
53
60
  <% end %>
54
- </dd>
55
- <% end %>
56
- </dl>
57
- <br />
58
- </details>
59
- <details>
60
- <summary>Session</summary>
61
- <dl>
62
- <% session.each do |k,v| %>
63
- <dt><%= k %></dt>
64
- <dd><%= v %></dd>
65
- <% end %>
66
- </dl>
67
- </details>
68
- <% begin %>
69
- <details>
70
- <% file, lineno = controller.class.instance_method(action_name).source_location %>
71
- <summary>
72
- <%= controller.class.name %>#<%= action_name %>
73
- <a href="edit-source://<%= file %>?<%= lineno %>">Edit Source</a>
74
- <br />
75
- </summary>
76
- <%= form_tag superconductor_file_path, :method => :put do %>
77
- <%= hidden_field_tag :file, file %>
78
- <%= text_area_tag :content, File.read(file), :wrap => "off", 'data-line-no' => lineno %>
79
- <% end %>
80
- </details>
81
- <% rescue %>
82
- <% end %>
83
- <%= yield %>
84
- </section>
61
+ <% methods = Hash[v.public_methods.map{|m|v.method(m)}.group_by(&:owner)] %>
62
+ <details class="methods"><summary><%= v.class.name %> Methods</summary>
63
+ <ul>
64
+ <% methods[v.class].sort_by(&:name).each do |method| %>
65
+ <li><%= link_to_if method.source_location, method.name, superconductor_file_path((method.source_location||[]).join('#')), remote: true %></li>
66
+ <% end %>
67
+ </ul>
68
+ <% methods.except(v.class).sort_by{|m|m.first.name.to_s}.each do |owner,methods| %>
69
+ <details class="methods"><summary><%= owner.name || "Dynamic" %> Methods</summary>
70
+ <ul>
71
+ <% methods.sort_by(&:name).each do |method| %>
72
+ <li><%= link_to_if method.source_location, method.name, superconductor_file_path((method.source_location||[]).join('#')), remote: true %></li>
73
+ <% end %>
74
+ </ul>
75
+ </details>
76
+ <% end %>
77
+ </details>
78
+ </details>
79
+ <% end %>
80
+ </section>
81
+ </aside>
File without changes
File without changes
data/config/routes.rb CHANGED
@@ -1,5 +1,6 @@
1
1
  Rails.application.routes.draw do
2
- namespace :superconductor do
3
- put 'file' => 'file#update', :as => :file
2
+ namespace :superconductor, module: 'Superconductor' do
3
+ put 'edit(/*id)' => 'file#update', :as => nil
4
+ get 'edit(/*id)' => 'file#edit', :as => :file
4
5
  end
5
6
  end
@@ -1,4 +1,21 @@
1
1
  module Superconductor
2
2
  class Engine < Rails::Engine
3
+ initializer "superconductor.init" do
4
+ ApplicationController.class_eval do
5
+ @_exceptions = {}
6
+ self.rescue_handlers = [] # Overrides rescue handlers on the application controller
7
+ rescue_from Exception do |exception|
8
+ #TODO: Handle exceptions through superconductor
9
+ raise exception
10
+ end
11
+
12
+ before_filter do
13
+ @_start_time = Time.now.usec
14
+ end
15
+ after_filter do
16
+ response.body += render_to_string(:partial => 'superconductor/panel')
17
+ end
18
+ end
19
+ end
3
20
  end
4
21
  end
@@ -1,3 +1,3 @@
1
1
  module Superconductor
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
metadata CHANGED
@@ -1,171 +1,161 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: superconductor
3
- version: !ruby/object:Gem::Version
4
- prerelease: false
5
- segments:
6
- - 0
7
- - 0
8
- - 2
9
- version: 0.0.2
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.3
5
+ prerelease:
10
6
  platform: ruby
11
- authors:
7
+ authors:
12
8
  - Jaden Carver
13
9
  autorequire:
14
10
  bindir: bin
15
11
  cert_chain: []
16
-
17
- date: 2012-01-24 00:00:00 -07:00
18
- default_executable:
19
- dependencies:
20
- - !ruby/object:Gem::Dependency
12
+ date: 2012-08-17 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
21
15
  name: rails
22
- prerelease: false
23
- requirement: &id001 !ruby/object:Gem::Requirement
16
+ requirement: !ruby/object:Gem::Requirement
24
17
  none: false
25
- requirements:
26
- - - ">="
27
- - !ruby/object:Gem::Version
28
- segments:
29
- - 3
30
- - 1
31
- - 0
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
32
21
  version: 3.1.0
33
22
  type: :runtime
34
- version_requirements: *id001
35
- - !ruby/object:Gem::Dependency
36
- name: jquery-rails
37
23
  prerelease: false
38
- requirement: &id002 !ruby/object:Gem::Requirement
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: 3.1.0
30
+ - !ruby/object:Gem::Dependency
31
+ name: jquery-rails
32
+ requirement: !ruby/object:Gem::Requirement
39
33
  none: false
40
- requirements:
41
- - - ">="
42
- - !ruby/object:Gem::Version
43
- segments:
44
- - 0
45
- version: "0"
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
46
38
  type: :runtime
47
- version_requirements: *id002
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
48
46
  description: Build your Ruby on Rails application from your Ruby on Rails application!
49
- email:
47
+ email:
50
48
  - jaden.carver@gmail.com
51
49
  executables: []
52
-
53
50
  extensions: []
54
-
55
51
  extra_rdoc_files: []
56
-
57
- files:
58
- - app/models/superconductor.rb
52
+ files:
53
+ - app/assets/javascripts/superconductor/panel.js.coffee
54
+ - app/assets/javascripts/superconductor.js
59
55
  - app/assets/stylesheets/scaffold.css
60
56
  - app/assets/stylesheets/superconductor/panel.css.scss
61
57
  - app/assets/stylesheets/superconductor.css
62
- - app/assets/javascripts/superconductor.js
63
- - app/assets/javascripts/superconductor/panel.js.coffee
64
58
  - app/controllers/file_controller.rb
65
- - app/views/superconductor/_panel.html.erb
66
59
  - app/helpers/superconductor/panel_helper.rb
60
+ - app/models/superconductor/exception.rb
61
+ - app/models/superconductor.rb
62
+ - app/views/superconductor/_panel.html.erb
63
+ - app/views/superconductor/_panel.js.erb
64
+ - app/views/superconductor/file/edit.js.erb
67
65
  - config/routes.rb
68
- - lib/superconductor.rb
69
- - lib/superconductor/version.rb
70
66
  - lib/superconductor/engine.rb
67
+ - lib/superconductor/version.rb
68
+ - lib/superconductor.rb
71
69
  - lib/tasks/superconductor_tasks.rake
72
70
  - MIT-LICENSE
73
71
  - Rakefile
74
72
  - README.rdoc
75
- - test/superconductor_test.rb
76
- - test/unit/helpers/superconductor/panel_helper_test.rb
77
- - test/test_helper.rb
78
- - test/integration/navigation_test.rb
79
- - test/dummy/Rakefile
80
- - test/dummy/script/rails
81
- - test/dummy/app/assets/stylesheets/application.css
82
73
  - test/dummy/app/assets/javascripts/application.js
74
+ - test/dummy/app/assets/stylesheets/application.css
83
75
  - test/dummy/app/controllers/application_controller.rb
84
- - test/dummy/app/views/layouts/application.html.erb
85
76
  - test/dummy/app/helpers/application_helper.rb
86
- - test/dummy/config.ru
87
- - test/dummy/public/422.html
88
- - test/dummy/public/404.html
89
- - test/dummy/public/500.html
90
- - test/dummy/public/favicon.ico
91
- - test/dummy/README.rdoc
92
- - test/dummy/config/environments/test.rb
93
- - test/dummy/config/environments/production.rb
77
+ - test/dummy/app/views/layouts/application.html.erb
78
+ - test/dummy/config/application.rb
79
+ - test/dummy/config/boot.rb
80
+ - test/dummy/config/database.yml
81
+ - test/dummy/config/environment.rb
94
82
  - test/dummy/config/environments/development.rb
95
- - test/dummy/config/initializers/session_store.rb
96
- - test/dummy/config/initializers/mime_types.rb
97
- - test/dummy/config/initializers/wrap_parameters.rb
83
+ - test/dummy/config/environments/production.rb
84
+ - test/dummy/config/environments/test.rb
98
85
  - test/dummy/config/initializers/backtrace_silencers.rb
99
86
  - test/dummy/config/initializers/inflections.rb
87
+ - test/dummy/config/initializers/mime_types.rb
100
88
  - test/dummy/config/initializers/secret_token.rb
101
- - test/dummy/config/database.yml
102
- - test/dummy/config/routes.rb
103
- - test/dummy/config/environment.rb
89
+ - test/dummy/config/initializers/session_store.rb
90
+ - test/dummy/config/initializers/wrap_parameters.rb
104
91
  - test/dummy/config/locales/en.yml
105
- - test/dummy/config/boot.rb
106
- - test/dummy/config/application.rb
107
- has_rdoc: true
92
+ - test/dummy/config/routes.rb
93
+ - test/dummy/config.ru
94
+ - test/dummy/public/404.html
95
+ - test/dummy/public/422.html
96
+ - test/dummy/public/500.html
97
+ - test/dummy/public/favicon.ico
98
+ - test/dummy/Rakefile
99
+ - test/dummy/README.rdoc
100
+ - test/dummy/script/rails
101
+ - test/integration/navigation_test.rb
102
+ - test/superconductor_test.rb
103
+ - test/test_helper.rb
104
+ - test/unit/helpers/superconductor/panel_helper_test.rb
108
105
  homepage: http://www.rapidsight.com
109
106
  licenses: []
110
-
111
107
  post_install_message:
112
108
  rdoc_options: []
113
-
114
- require_paths:
109
+ require_paths:
115
110
  - lib
116
- required_ruby_version: !ruby/object:Gem::Requirement
111
+ required_ruby_version: !ruby/object:Gem::Requirement
117
112
  none: false
118
- requirements:
119
- - - ">="
120
- - !ruby/object:Gem::Version
121
- segments:
122
- - 0
123
- version: "0"
124
- required_rubygems_version: !ruby/object:Gem::Requirement
113
+ requirements:
114
+ - - ! '>='
115
+ - !ruby/object:Gem::Version
116
+ version: '0'
117
+ required_rubygems_version: !ruby/object:Gem::Requirement
125
118
  none: false
126
- requirements:
127
- - - ">="
128
- - !ruby/object:Gem::Version
129
- segments:
130
- - 0
131
- version: "0"
119
+ requirements:
120
+ - - ! '>='
121
+ - !ruby/object:Gem::Version
122
+ version: '0'
132
123
  requirements: []
133
-
134
124
  rubyforge_project:
135
- rubygems_version: 1.3.7
125
+ rubygems_version: 1.8.23
136
126
  signing_key:
137
127
  specification_version: 3
138
128
  summary: Context aware development and debugging panel
139
- test_files:
140
- - test/superconductor_test.rb
141
- - test/unit/helpers/superconductor/panel_helper_test.rb
142
- - test/test_helper.rb
143
- - test/integration/navigation_test.rb
144
- - test/dummy/Rakefile
145
- - test/dummy/script/rails
146
- - test/dummy/app/assets/stylesheets/application.css
129
+ test_files:
147
130
  - test/dummy/app/assets/javascripts/application.js
131
+ - test/dummy/app/assets/stylesheets/application.css
148
132
  - test/dummy/app/controllers/application_controller.rb
149
- - test/dummy/app/views/layouts/application.html.erb
150
133
  - test/dummy/app/helpers/application_helper.rb
151
- - test/dummy/config.ru
152
- - test/dummy/public/422.html
153
- - test/dummy/public/404.html
154
- - test/dummy/public/500.html
155
- - test/dummy/public/favicon.ico
156
- - test/dummy/README.rdoc
157
- - test/dummy/config/environments/test.rb
158
- - test/dummy/config/environments/production.rb
134
+ - test/dummy/app/views/layouts/application.html.erb
135
+ - test/dummy/config/application.rb
136
+ - test/dummy/config/boot.rb
137
+ - test/dummy/config/database.yml
138
+ - test/dummy/config/environment.rb
159
139
  - test/dummy/config/environments/development.rb
160
- - test/dummy/config/initializers/session_store.rb
161
- - test/dummy/config/initializers/mime_types.rb
162
- - test/dummy/config/initializers/wrap_parameters.rb
140
+ - test/dummy/config/environments/production.rb
141
+ - test/dummy/config/environments/test.rb
163
142
  - test/dummy/config/initializers/backtrace_silencers.rb
164
143
  - test/dummy/config/initializers/inflections.rb
144
+ - test/dummy/config/initializers/mime_types.rb
165
145
  - test/dummy/config/initializers/secret_token.rb
166
- - test/dummy/config/database.yml
167
- - test/dummy/config/routes.rb
168
- - test/dummy/config/environment.rb
146
+ - test/dummy/config/initializers/session_store.rb
147
+ - test/dummy/config/initializers/wrap_parameters.rb
169
148
  - test/dummy/config/locales/en.yml
170
- - test/dummy/config/boot.rb
171
- - test/dummy/config/application.rb
149
+ - test/dummy/config/routes.rb
150
+ - test/dummy/config.ru
151
+ - test/dummy/public/404.html
152
+ - test/dummy/public/422.html
153
+ - test/dummy/public/500.html
154
+ - test/dummy/public/favicon.ico
155
+ - test/dummy/Rakefile
156
+ - test/dummy/README.rdoc
157
+ - test/dummy/script/rails
158
+ - test/integration/navigation_test.rb
159
+ - test/superconductor_test.rb
160
+ - test/test_helper.rb
161
+ - test/unit/helpers/superconductor/panel_helper_test.rb