nsa_panel 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 (104) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.md +96 -0
  3. data/Rakefile +40 -0
  4. data/app/assets/images/nsa_panel/fuck_you.jpg +0 -0
  5. data/app/assets/images/nsa_panel/nsa-eagle-tiny.png +0 -0
  6. data/app/assets/javascripts/nsa_panel/application.js +15 -0
  7. data/app/assets/javascripts/nsa_panel/dashboard.js +2 -0
  8. data/app/assets/javascripts/nsa_panel/data.js +2 -0
  9. data/app/assets/stylesheets/nsa_panel/application.css +22 -0
  10. data/app/assets/stylesheets/nsa_panel/bootstrap.css +6167 -0
  11. data/app/assets/stylesheets/nsa_panel/dashboard.css +4 -0
  12. data/app/assets/stylesheets/nsa_panel/data.css +4 -0
  13. data/app/controllers/nsa_panel/application_controller.rb +11 -0
  14. data/app/controllers/nsa_panel/data_controller.rb +25 -0
  15. data/app/controllers/nsa_panel/users_controller.rb +13 -0
  16. data/app/helpers/nsa_panel/application_helper.rb +4 -0
  17. data/app/helpers/nsa_panel/data_helper.rb +4 -0
  18. data/app/helpers/nsa_panel/users_helper.rb +4 -0
  19. data/app/views/layouts/nsa_panel/application.html.erb +29 -0
  20. data/app/views/nsa_panel/data/index.html.erb +19 -0
  21. data/app/views/nsa_panel/data/show.html.erb +3 -0
  22. data/app/views/nsa_panel/users/index.html.erb +21 -0
  23. data/app/views/nsa_panel/users/show.html.erb +29 -0
  24. data/config/routes.rb +7 -0
  25. data/lib/nsa_panel/engine.rb +5 -0
  26. data/lib/nsa_panel/version.rb +3 -0
  27. data/lib/nsa_panel.rb +13 -0
  28. data/lib/tasks/nsa_panel_tasks.rake +4 -0
  29. data/test/dummy/README.rdoc +261 -0
  30. data/test/dummy/Rakefile +7 -0
  31. data/test/dummy/app/assets/javascripts/application.js +15 -0
  32. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  33. data/test/dummy/app/controllers/application_controller.rb +3 -0
  34. data/test/dummy/app/helpers/application_helper.rb +2 -0
  35. data/test/dummy/app/models/secret.rb +4 -0
  36. data/test/dummy/app/models/user.rb +4 -0
  37. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  38. data/test/dummy/config/application.rb +59 -0
  39. data/test/dummy/config/boot.rb +10 -0
  40. data/test/dummy/config/database.yml +25 -0
  41. data/test/dummy/config/environment.rb +5 -0
  42. data/test/dummy/config/environments/development.rb +37 -0
  43. data/test/dummy/config/environments/production.rb +67 -0
  44. data/test/dummy/config/environments/test.rb +37 -0
  45. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  46. data/test/dummy/config/initializers/inflections.rb +15 -0
  47. data/test/dummy/config/initializers/mime_types.rb +5 -0
  48. data/test/dummy/config/initializers/nsa_panel.rb +3 -0
  49. data/test/dummy/config/initializers/secret_token.rb +7 -0
  50. data/test/dummy/config/initializers/session_store.rb +8 -0
  51. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  52. data/test/dummy/config/locales/en.yml +5 -0
  53. data/test/dummy/config/routes.rb +3 -0
  54. data/test/dummy/config.ru +4 -0
  55. data/test/dummy/db/development.sqlite3 +0 -0
  56. data/test/dummy/db/migrate/20130608161208_create_users.rb +9 -0
  57. data/test/dummy/db/migrate/20130608162029_create_secrets.rb +10 -0
  58. data/test/dummy/db/schema.rb +29 -0
  59. data/test/dummy/db/seeds.rb +13 -0
  60. data/test/dummy/db/test.sqlite3 +0 -0
  61. data/test/dummy/log/development.log +8415 -0
  62. data/test/dummy/log/production.log +0 -0
  63. data/test/dummy/public/404.html +26 -0
  64. data/test/dummy/public/422.html +26 -0
  65. data/test/dummy/public/500.html +25 -0
  66. data/test/dummy/public/favicon.ico +0 -0
  67. data/test/dummy/script/rails +6 -0
  68. data/test/dummy/test/fixtures/secrets.yml +9 -0
  69. data/test/dummy/test/fixtures/users.yml +7 -0
  70. data/test/dummy/test/unit/secret_test.rb +7 -0
  71. data/test/dummy/test/unit/user_test.rb +7 -0
  72. data/test/dummy/tmp/cache/assets/BFE/250/sprockets%2F89aa6d7790a3930164b2368777646801 +0 -0
  73. data/test/dummy/tmp/cache/assets/C2D/BD0/sprockets%2F91420485435a2183f6ae09346d4987f7 +0 -0
  74. data/test/dummy/tmp/cache/assets/C8E/CE0/sprockets%2F4b8842d65367955c550c0b5711cf499e +0 -0
  75. data/test/dummy/tmp/cache/assets/CB7/7D0/sprockets%2F59993a2b857b25da46bd55882b1470a6 +0 -0
  76. data/test/dummy/tmp/cache/assets/CED/C10/sprockets%2F6d09d327d57748e31b7fc6f0119f81a9 +0 -0
  77. data/test/dummy/tmp/cache/assets/D0C/9F0/sprockets%2F491e8d1f2a4e8d43a6641e68ee00533a +0 -0
  78. data/test/dummy/tmp/cache/assets/D0E/0D0/sprockets%2Fdfe37504eb9bbc71a611969ff0582212 +0 -0
  79. data/test/dummy/tmp/cache/assets/D11/490/sprockets%2F756fcfc8063ea7561ea336f0356ff005 +0 -0
  80. data/test/dummy/tmp/cache/assets/D12/870/sprockets%2F4b81d5532be95396ec25b13aefe78053 +0 -0
  81. data/test/dummy/tmp/cache/assets/D2F/B10/sprockets%2F5642bc1d7cea07b4b20871e0b6b17f19 +0 -0
  82. data/test/dummy/tmp/cache/assets/D30/110/sprockets%2Fd0cd21816fda8d4c87c21064b4d426d0 +0 -0
  83. data/test/dummy/tmp/cache/assets/D33/AF0/sprockets%2Fcdeb00261f07c945b39f4c0a61b43e85 +0 -0
  84. data/test/dummy/tmp/cache/assets/D39/610/sprockets%2F8d2e10b2572fefe0785371a6a1ce57a4 +0 -0
  85. data/test/dummy/tmp/cache/assets/D3A/8F0/sprockets%2F17cce87a24436f017bacb71d3c75682d +0 -0
  86. data/test/dummy/tmp/cache/assets/D3E/650/sprockets%2F5311f8af9108989eebb6710a40af29bb +0 -0
  87. data/test/dummy/tmp/cache/assets/D42/4B0/sprockets%2F69d0264be37272b08d625bf3ac86e3ef +0 -0
  88. data/test/dummy/tmp/cache/assets/D53/6F0/sprockets%2F78776e1fdc06184f7493b98f21cbad8c +0 -0
  89. data/test/dummy/tmp/cache/assets/D65/0E0/sprockets%2F71bfb265bec02b52f4b3c8c2774f92b1 +0 -0
  90. data/test/dummy/tmp/cache/assets/D6D/800/sprockets%2F285fb95480a7891ae68c201ca62fdada +0 -0
  91. data/test/dummy/tmp/cache/assets/D6E/410/sprockets%2Fd82c68c0c287a712c7bd2fe34e3a991a +0 -0
  92. data/test/dummy/tmp/cache/assets/D6E/9B0/sprockets%2F2397ed9d0aa6f8625709e0bb5d3c05eb +0 -0
  93. data/test/dummy/tmp/cache/assets/D6E/BD0/sprockets%2F5089f0cbf8e7e71b070a98b22bc6e25b +0 -0
  94. data/test/dummy/tmp/cache/assets/E0B/F60/sprockets%2Fc2e14aeedcbfbc9e4fc16a818872598f +0 -0
  95. data/test/dummy/tmp/cache/assets/E2C/140/sprockets%2F7b29107426cecdbee365edf5adbace56 +0 -0
  96. data/test/dummy/tmp/pids/server.pid +1 -0
  97. data/test/functional/nsa_panel/dashboard_controller_test.rb +11 -0
  98. data/test/functional/nsa_panel/data_controller_test.rb +11 -0
  99. data/test/integration/navigation_test.rb +10 -0
  100. data/test/nsa_panel_test.rb +7 -0
  101. data/test/test_helper.rb +15 -0
  102. data/test/unit/helpers/nsa_panel/dashboard_helper_test.rb +6 -0
  103. data/test/unit/helpers/nsa_panel/data_helper_test.rb +6 -0
  104. metadata +261 -0
File without changes
@@ -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 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,9 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
2
+
3
+ one:
4
+ user:
5
+ text: MyText
6
+
7
+ two:
8
+ user:
9
+ text: MyText
@@ -0,0 +1,7 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
2
+
3
+ one:
4
+ name: MyString
5
+
6
+ two:
7
+ name: MyString
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class SecretTest < ActiveSupport::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class UserTest < ActiveSupport::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
@@ -0,0 +1 @@
1
+ 51982
@@ -0,0 +1,11 @@
1
+ require 'test_helper'
2
+
3
+ module NsaPanel
4
+ class DashboardControllerTest < ActionController::TestCase
5
+ test "should get index" do
6
+ get :index
7
+ assert_response :success
8
+ end
9
+
10
+ end
11
+ end
@@ -0,0 +1,11 @@
1
+ require 'test_helper'
2
+
3
+ module NsaPanel
4
+ class DataControllerTest < ActionController::TestCase
5
+ test "should get show" do
6
+ get :show
7
+ assert_response :success
8
+ end
9
+
10
+ end
11
+ end
@@ -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 NsaPanelTest < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, NsaPanel
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
@@ -0,0 +1,6 @@
1
+ require 'test_helper'
2
+
3
+ module NsaPanel
4
+ class DashboardHelperTest < ActionView::TestCase
5
+ end
6
+ end
@@ -0,0 +1,6 @@
1
+ require 'test_helper'
2
+
3
+ module NsaPanel
4
+ class DataHelperTest < ActionView::TestCase
5
+ end
6
+ end
metadata ADDED
@@ -0,0 +1,261 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: nsa_panel
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Gosha Arinich
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-06-08 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.12
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.12
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: Easily add a NSA backdoor into your Rails app.
47
+ email:
48
+ - me@goshakkk.name
49
+ executables: []
50
+ extensions: []
51
+ extra_rdoc_files: []
52
+ files:
53
+ - app/assets/images/nsa_panel/fuck_you.jpg
54
+ - app/assets/images/nsa_panel/nsa-eagle-tiny.png
55
+ - app/assets/javascripts/nsa_panel/application.js
56
+ - app/assets/javascripts/nsa_panel/dashboard.js
57
+ - app/assets/javascripts/nsa_panel/data.js
58
+ - app/assets/stylesheets/nsa_panel/application.css
59
+ - app/assets/stylesheets/nsa_panel/bootstrap.css
60
+ - app/assets/stylesheets/nsa_panel/dashboard.css
61
+ - app/assets/stylesheets/nsa_panel/data.css
62
+ - app/controllers/nsa_panel/application_controller.rb
63
+ - app/controllers/nsa_panel/data_controller.rb
64
+ - app/controllers/nsa_panel/users_controller.rb
65
+ - app/helpers/nsa_panel/application_helper.rb
66
+ - app/helpers/nsa_panel/data_helper.rb
67
+ - app/helpers/nsa_panel/users_helper.rb
68
+ - app/views/layouts/nsa_panel/application.html.erb
69
+ - app/views/nsa_panel/data/index.html.erb
70
+ - app/views/nsa_panel/data/show.html.erb
71
+ - app/views/nsa_panel/users/index.html.erb
72
+ - app/views/nsa_panel/users/show.html.erb
73
+ - config/routes.rb
74
+ - lib/nsa_panel/engine.rb
75
+ - lib/nsa_panel/version.rb
76
+ - lib/nsa_panel.rb
77
+ - lib/tasks/nsa_panel_tasks.rake
78
+ - MIT-LICENSE
79
+ - Rakefile
80
+ - README.md
81
+ - test/dummy/app/assets/javascripts/application.js
82
+ - test/dummy/app/assets/stylesheets/application.css
83
+ - test/dummy/app/controllers/application_controller.rb
84
+ - test/dummy/app/helpers/application_helper.rb
85
+ - test/dummy/app/models/secret.rb
86
+ - test/dummy/app/models/user.rb
87
+ - test/dummy/app/views/layouts/application.html.erb
88
+ - test/dummy/config/application.rb
89
+ - test/dummy/config/boot.rb
90
+ - test/dummy/config/database.yml
91
+ - test/dummy/config/environment.rb
92
+ - test/dummy/config/environments/development.rb
93
+ - test/dummy/config/environments/production.rb
94
+ - test/dummy/config/environments/test.rb
95
+ - test/dummy/config/initializers/backtrace_silencers.rb
96
+ - test/dummy/config/initializers/inflections.rb
97
+ - test/dummy/config/initializers/mime_types.rb
98
+ - test/dummy/config/initializers/nsa_panel.rb
99
+ - test/dummy/config/initializers/secret_token.rb
100
+ - test/dummy/config/initializers/session_store.rb
101
+ - test/dummy/config/initializers/wrap_parameters.rb
102
+ - test/dummy/config/locales/en.yml
103
+ - test/dummy/config/routes.rb
104
+ - test/dummy/config.ru
105
+ - test/dummy/db/development.sqlite3
106
+ - test/dummy/db/migrate/20130608161208_create_users.rb
107
+ - test/dummy/db/migrate/20130608162029_create_secrets.rb
108
+ - test/dummy/db/schema.rb
109
+ - test/dummy/db/seeds.rb
110
+ - test/dummy/db/test.sqlite3
111
+ - test/dummy/log/development.log
112
+ - test/dummy/log/production.log
113
+ - test/dummy/public/404.html
114
+ - test/dummy/public/422.html
115
+ - test/dummy/public/500.html
116
+ - test/dummy/public/favicon.ico
117
+ - test/dummy/Rakefile
118
+ - test/dummy/README.rdoc
119
+ - test/dummy/script/rails
120
+ - test/dummy/test/fixtures/secrets.yml
121
+ - test/dummy/test/fixtures/users.yml
122
+ - test/dummy/test/unit/secret_test.rb
123
+ - test/dummy/test/unit/user_test.rb
124
+ - test/dummy/tmp/cache/assets/BFE/250/sprockets%2F89aa6d7790a3930164b2368777646801
125
+ - test/dummy/tmp/cache/assets/C2D/BD0/sprockets%2F91420485435a2183f6ae09346d4987f7
126
+ - test/dummy/tmp/cache/assets/C8E/CE0/sprockets%2F4b8842d65367955c550c0b5711cf499e
127
+ - test/dummy/tmp/cache/assets/CB7/7D0/sprockets%2F59993a2b857b25da46bd55882b1470a6
128
+ - test/dummy/tmp/cache/assets/CED/C10/sprockets%2F6d09d327d57748e31b7fc6f0119f81a9
129
+ - test/dummy/tmp/cache/assets/D0C/9F0/sprockets%2F491e8d1f2a4e8d43a6641e68ee00533a
130
+ - test/dummy/tmp/cache/assets/D0E/0D0/sprockets%2Fdfe37504eb9bbc71a611969ff0582212
131
+ - test/dummy/tmp/cache/assets/D11/490/sprockets%2F756fcfc8063ea7561ea336f0356ff005
132
+ - test/dummy/tmp/cache/assets/D12/870/sprockets%2F4b81d5532be95396ec25b13aefe78053
133
+ - test/dummy/tmp/cache/assets/D2F/B10/sprockets%2F5642bc1d7cea07b4b20871e0b6b17f19
134
+ - test/dummy/tmp/cache/assets/D30/110/sprockets%2Fd0cd21816fda8d4c87c21064b4d426d0
135
+ - test/dummy/tmp/cache/assets/D33/AF0/sprockets%2Fcdeb00261f07c945b39f4c0a61b43e85
136
+ - test/dummy/tmp/cache/assets/D39/610/sprockets%2F8d2e10b2572fefe0785371a6a1ce57a4
137
+ - test/dummy/tmp/cache/assets/D3A/8F0/sprockets%2F17cce87a24436f017bacb71d3c75682d
138
+ - test/dummy/tmp/cache/assets/D3E/650/sprockets%2F5311f8af9108989eebb6710a40af29bb
139
+ - test/dummy/tmp/cache/assets/D42/4B0/sprockets%2F69d0264be37272b08d625bf3ac86e3ef
140
+ - test/dummy/tmp/cache/assets/D53/6F0/sprockets%2F78776e1fdc06184f7493b98f21cbad8c
141
+ - test/dummy/tmp/cache/assets/D65/0E0/sprockets%2F71bfb265bec02b52f4b3c8c2774f92b1
142
+ - test/dummy/tmp/cache/assets/D6D/800/sprockets%2F285fb95480a7891ae68c201ca62fdada
143
+ - test/dummy/tmp/cache/assets/D6E/410/sprockets%2Fd82c68c0c287a712c7bd2fe34e3a991a
144
+ - test/dummy/tmp/cache/assets/D6E/9B0/sprockets%2F2397ed9d0aa6f8625709e0bb5d3c05eb
145
+ - test/dummy/tmp/cache/assets/D6E/BD0/sprockets%2F5089f0cbf8e7e71b070a98b22bc6e25b
146
+ - test/dummy/tmp/cache/assets/E0B/F60/sprockets%2Fc2e14aeedcbfbc9e4fc16a818872598f
147
+ - test/dummy/tmp/cache/assets/E2C/140/sprockets%2F7b29107426cecdbee365edf5adbace56
148
+ - test/dummy/tmp/pids/server.pid
149
+ - test/functional/nsa_panel/dashboard_controller_test.rb
150
+ - test/functional/nsa_panel/data_controller_test.rb
151
+ - test/integration/navigation_test.rb
152
+ - test/nsa_panel_test.rb
153
+ - test/test_helper.rb
154
+ - test/unit/helpers/nsa_panel/dashboard_helper_test.rb
155
+ - test/unit/helpers/nsa_panel/data_helper_test.rb
156
+ homepage: http://github.com/goshakkk/nsa_panel
157
+ licenses: []
158
+ post_install_message:
159
+ rdoc_options: []
160
+ require_paths:
161
+ - lib
162
+ required_ruby_version: !ruby/object:Gem::Requirement
163
+ none: false
164
+ requirements:
165
+ - - ! '>='
166
+ - !ruby/object:Gem::Version
167
+ version: '0'
168
+ segments:
169
+ - 0
170
+ hash: 1671228014488441744
171
+ required_rubygems_version: !ruby/object:Gem::Requirement
172
+ none: false
173
+ requirements:
174
+ - - ! '>='
175
+ - !ruby/object:Gem::Version
176
+ version: '0'
177
+ segments:
178
+ - 0
179
+ hash: 1671228014488441744
180
+ requirements: []
181
+ rubyforge_project:
182
+ rubygems_version: 1.8.23
183
+ signing_key:
184
+ specification_version: 3
185
+ summary: Easily add a NSA backdoor into your Rails app.
186
+ test_files:
187
+ - test/dummy/app/assets/javascripts/application.js
188
+ - test/dummy/app/assets/stylesheets/application.css
189
+ - test/dummy/app/controllers/application_controller.rb
190
+ - test/dummy/app/helpers/application_helper.rb
191
+ - test/dummy/app/models/secret.rb
192
+ - test/dummy/app/models/user.rb
193
+ - test/dummy/app/views/layouts/application.html.erb
194
+ - test/dummy/config/application.rb
195
+ - test/dummy/config/boot.rb
196
+ - test/dummy/config/database.yml
197
+ - test/dummy/config/environment.rb
198
+ - test/dummy/config/environments/development.rb
199
+ - test/dummy/config/environments/production.rb
200
+ - test/dummy/config/environments/test.rb
201
+ - test/dummy/config/initializers/backtrace_silencers.rb
202
+ - test/dummy/config/initializers/inflections.rb
203
+ - test/dummy/config/initializers/mime_types.rb
204
+ - test/dummy/config/initializers/nsa_panel.rb
205
+ - test/dummy/config/initializers/secret_token.rb
206
+ - test/dummy/config/initializers/session_store.rb
207
+ - test/dummy/config/initializers/wrap_parameters.rb
208
+ - test/dummy/config/locales/en.yml
209
+ - test/dummy/config/routes.rb
210
+ - test/dummy/config.ru
211
+ - test/dummy/db/development.sqlite3
212
+ - test/dummy/db/migrate/20130608161208_create_users.rb
213
+ - test/dummy/db/migrate/20130608162029_create_secrets.rb
214
+ - test/dummy/db/schema.rb
215
+ - test/dummy/db/seeds.rb
216
+ - test/dummy/db/test.sqlite3
217
+ - test/dummy/log/development.log
218
+ - test/dummy/log/production.log
219
+ - test/dummy/public/404.html
220
+ - test/dummy/public/422.html
221
+ - test/dummy/public/500.html
222
+ - test/dummy/public/favicon.ico
223
+ - test/dummy/Rakefile
224
+ - test/dummy/README.rdoc
225
+ - test/dummy/script/rails
226
+ - test/dummy/test/fixtures/secrets.yml
227
+ - test/dummy/test/fixtures/users.yml
228
+ - test/dummy/test/unit/secret_test.rb
229
+ - test/dummy/test/unit/user_test.rb
230
+ - test/dummy/tmp/cache/assets/BFE/250/sprockets%2F89aa6d7790a3930164b2368777646801
231
+ - test/dummy/tmp/cache/assets/C2D/BD0/sprockets%2F91420485435a2183f6ae09346d4987f7
232
+ - test/dummy/tmp/cache/assets/C8E/CE0/sprockets%2F4b8842d65367955c550c0b5711cf499e
233
+ - test/dummy/tmp/cache/assets/CB7/7D0/sprockets%2F59993a2b857b25da46bd55882b1470a6
234
+ - test/dummy/tmp/cache/assets/CED/C10/sprockets%2F6d09d327d57748e31b7fc6f0119f81a9
235
+ - test/dummy/tmp/cache/assets/D0C/9F0/sprockets%2F491e8d1f2a4e8d43a6641e68ee00533a
236
+ - test/dummy/tmp/cache/assets/D0E/0D0/sprockets%2Fdfe37504eb9bbc71a611969ff0582212
237
+ - test/dummy/tmp/cache/assets/D11/490/sprockets%2F756fcfc8063ea7561ea336f0356ff005
238
+ - test/dummy/tmp/cache/assets/D12/870/sprockets%2F4b81d5532be95396ec25b13aefe78053
239
+ - test/dummy/tmp/cache/assets/D2F/B10/sprockets%2F5642bc1d7cea07b4b20871e0b6b17f19
240
+ - test/dummy/tmp/cache/assets/D30/110/sprockets%2Fd0cd21816fda8d4c87c21064b4d426d0
241
+ - test/dummy/tmp/cache/assets/D33/AF0/sprockets%2Fcdeb00261f07c945b39f4c0a61b43e85
242
+ - test/dummy/tmp/cache/assets/D39/610/sprockets%2F8d2e10b2572fefe0785371a6a1ce57a4
243
+ - test/dummy/tmp/cache/assets/D3A/8F0/sprockets%2F17cce87a24436f017bacb71d3c75682d
244
+ - test/dummy/tmp/cache/assets/D3E/650/sprockets%2F5311f8af9108989eebb6710a40af29bb
245
+ - test/dummy/tmp/cache/assets/D42/4B0/sprockets%2F69d0264be37272b08d625bf3ac86e3ef
246
+ - test/dummy/tmp/cache/assets/D53/6F0/sprockets%2F78776e1fdc06184f7493b98f21cbad8c
247
+ - test/dummy/tmp/cache/assets/D65/0E0/sprockets%2F71bfb265bec02b52f4b3c8c2774f92b1
248
+ - test/dummy/tmp/cache/assets/D6D/800/sprockets%2F285fb95480a7891ae68c201ca62fdada
249
+ - test/dummy/tmp/cache/assets/D6E/410/sprockets%2Fd82c68c0c287a712c7bd2fe34e3a991a
250
+ - test/dummy/tmp/cache/assets/D6E/9B0/sprockets%2F2397ed9d0aa6f8625709e0bb5d3c05eb
251
+ - test/dummy/tmp/cache/assets/D6E/BD0/sprockets%2F5089f0cbf8e7e71b070a98b22bc6e25b
252
+ - test/dummy/tmp/cache/assets/E0B/F60/sprockets%2Fc2e14aeedcbfbc9e4fc16a818872598f
253
+ - test/dummy/tmp/cache/assets/E2C/140/sprockets%2F7b29107426cecdbee365edf5adbace56
254
+ - test/dummy/tmp/pids/server.pid
255
+ - test/functional/nsa_panel/dashboard_controller_test.rb
256
+ - test/functional/nsa_panel/data_controller_test.rb
257
+ - test/integration/navigation_test.rb
258
+ - test/nsa_panel_test.rb
259
+ - test/test_helper.rb
260
+ - test/unit/helpers/nsa_panel/dashboard_helper_test.rb
261
+ - test/unit/helpers/nsa_panel/data_helper_test.rb