jail 0.0.2

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 (76) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.md +57 -0
  3. data/Rakefile +40 -0
  4. data/app/assets/javascripts/jail/application.js +15 -0
  5. data/app/assets/stylesheets/jail/application.css +28 -0
  6. data/app/controllers/jail/application_controller.rb +4 -0
  7. data/app/controllers/jail/githubs_controller.rb +20 -0
  8. data/app/models/jail/github.rb +75 -0
  9. data/app/views/jail/githubs/index.html.erb +10 -0
  10. data/app/views/jail/githubs/show.html.erb +10 -0
  11. data/app/views/layouts/jail/application.html.erb +20 -0
  12. data/config/prisoners.yml +49 -0
  13. data/config/routes.rb +7 -0
  14. data/lib/jail.rb +6 -0
  15. data/lib/jail/engine.rb +5 -0
  16. data/lib/jail/version.rb +3 -0
  17. data/lib/tasks/jail_tasks.rake +4 -0
  18. data/test/dummy/README.rdoc +261 -0
  19. data/test/dummy/Rakefile +7 -0
  20. data/test/dummy/app/assets/javascripts/application.js +15 -0
  21. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  22. data/test/dummy/app/controllers/application_controller.rb +3 -0
  23. data/test/dummy/app/helpers/application_helper.rb +2 -0
  24. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  25. data/test/dummy/config.ru +4 -0
  26. data/test/dummy/config/application.rb +59 -0
  27. data/test/dummy/config/boot.rb +10 -0
  28. data/test/dummy/config/database.yml +25 -0
  29. data/test/dummy/config/environment.rb +5 -0
  30. data/test/dummy/config/environments/development.rb +37 -0
  31. data/test/dummy/config/environments/production.rb +67 -0
  32. data/test/dummy/config/environments/test.rb +37 -0
  33. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  34. data/test/dummy/config/initializers/inflections.rb +15 -0
  35. data/test/dummy/config/initializers/jail.rb +3 -0
  36. data/test/dummy/config/initializers/mime_types.rb +5 -0
  37. data/test/dummy/config/initializers/secret_token.rb +7 -0
  38. data/test/dummy/config/initializers/session_store.rb +8 -0
  39. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  40. data/test/dummy/config/locales/en.yml +5 -0
  41. data/test/dummy/config/routes.rb +4 -0
  42. data/test/dummy/db/development.sqlite3 +0 -0
  43. data/test/dummy/log/development.log +22817 -0
  44. data/test/dummy/public/404.html +26 -0
  45. data/test/dummy/public/422.html +26 -0
  46. data/test/dummy/public/500.html +25 -0
  47. data/test/dummy/public/favicon.ico +0 -0
  48. data/test/dummy/script/rails +6 -0
  49. data/test/dummy/tmp/cache/assets/C78/2D0/sprockets%2F049c9453e2d03a13463ad15568c8521f +0 -0
  50. data/test/dummy/tmp/cache/assets/CBE/8B0/sprockets%2F45f037820eca943af359e247967580cf +0 -0
  51. data/test/dummy/tmp/cache/assets/CFA/570/sprockets%2Ffe84858b375458bd418cb85c8f84803c +0 -0
  52. data/test/dummy/tmp/cache/assets/D15/AE0/sprockets%2F3fd1b8f0c577d6bd951f40857132eb74 +0 -0
  53. data/test/dummy/tmp/cache/assets/D29/F40/sprockets%2F15ce02e64710b4fa1d3a21f6270fdc74 +0 -0
  54. data/test/dummy/tmp/cache/assets/D34/BF0/sprockets%2F18a1d0fec1cd74447e07b02d058a289d +0 -0
  55. data/test/dummy/tmp/cache/assets/D46/B30/sprockets%2F36e940335f9fc2de06c6d8aad556d822 +0 -0
  56. data/test/dummy/tmp/cache/assets/D4B/BC0/sprockets%2Fa3a0b270a0bb2747cad33e424662fba2 +0 -0
  57. data/test/dummy/tmp/cache/assets/D76/A70/sprockets%2F360c75fdc8ed695061e3b08da593d7cc +0 -0
  58. data/test/dummy/tmp/cache/assets/D81/500/sprockets%2F23e9c52aedd634ee57e66663cffa1868 +0 -0
  59. data/test/dummy/tmp/cache/assets/D9E/630/sprockets%2F0efe12c5dc1902e8cf8f6844b7bca812 +0 -0
  60. data/test/dummy/tmp/cache/assets/DDF/C90/sprockets%2Fc4dff5559e7f91debdf5da74921c028e +0 -0
  61. data/test/dummy/tmp/cache/assets/E64/6F0/sprockets%2F8f0e4dd1aa8c3ddea851bf771dce8f8c +0 -0
  62. data/test/dummy/tmp/pids/server.pid +1 -0
  63. data/test/dummy/vendor/assets/images/Jcrop.gif +0 -0
  64. data/test/dummy/vendor/assets/javascripts/cookies.js +106 -0
  65. data/test/dummy/vendor/assets/javascripts/jquery.Jcrop.js +1699 -0
  66. data/test/dummy/vendor/assets/stylesheets/jquery.Jcrop.css +86 -0
  67. data/test/fixtures/jqplug/jqgithubs.yml +11 -0
  68. data/test/functional/jqplug/githubs_controller_test.rb +51 -0
  69. data/test/functional/jqplug/jqgithubs_controller_test.rb +51 -0
  70. data/test/integration/navigation_test.rb +10 -0
  71. data/test/jqplug_test.rb +7 -0
  72. data/test/test_helper.rb +15 -0
  73. data/test/unit/helpers/jqplug/githubs_helper_test.rb +6 -0
  74. data/test/unit/helpers/jqplug/jqgithubs_helper_test.rb +6 -0
  75. data/test/unit/jqplug/jqgithub_test.rb +9 -0
  76. metadata +269 -0
@@ -0,0 +1,86 @@
1
+ /* jquery.Jcrop.css v0.9.10 - MIT License */
2
+
3
+ /*
4
+ The outer-most container in a typical Jcrop instance
5
+ If you are having difficulty with formatting related to styles
6
+ on a parent element, place any fixes here or in a like selector
7
+
8
+ You can also style this element if you want to add a border, etc
9
+ A better method for styling can be seen below with .jcrop-light
10
+ (Add a class to the holder and style elements for that extended class)
11
+ */
12
+ .jcrop-holder {
13
+ direction: ltr;
14
+ text-align: left;
15
+ }
16
+
17
+ /* These styles define the border lines */
18
+ .jcrop-vline,.jcrop-hline{background:#FFF url(Jcrop.gif) top left repeat;font-size:0;position:absolute;}
19
+ .jcrop-vline{height:100%;width:1px!important;}
20
+ .jcrop-hline{height:1px!important;width:100%;}
21
+ .jcrop-vline.right{right:0;}
22
+ .jcrop-hline.bottom{bottom:0;}
23
+
24
+ /* Handle style - size is set by Jcrop handleSize option (currently) */
25
+ .jcrop-handle{background-color:#333;border:1px #eee solid;font-size:1px;}
26
+
27
+ /* This style is used for invisible click targets */
28
+ .jcrop-tracker
29
+ {
30
+ height: 100%;
31
+ width: 100%;
32
+ -webkit-tap-highlight-color: transparent; /* "turn off" link highlight */
33
+ -webkit-touch-callout: none; /* disable callout, image save panel */
34
+ -webkit-user-select: none; /* disable cut copy paste */
35
+ }
36
+
37
+ /* Positioning of handles and drag bars */
38
+ .jcrop-handle.ord-n{left:50%;margin-left:-4px;margin-top:-4px;top:0;}
39
+ .jcrop-handle.ord-s{bottom:0;left:50%;margin-bottom:-4px;margin-left:-4px;}
40
+ .jcrop-handle.ord-e{margin-right:-4px;margin-top:-4px;right:0;top:50%;}
41
+ .jcrop-handle.ord-w{left:0;margin-left:-4px;margin-top:-4px;top:50%;}
42
+ .jcrop-handle.ord-nw{left:0;margin-left:-4px;margin-top:-4px;top:0;}
43
+ .jcrop-handle.ord-ne{margin-right:-4px;margin-top:-4px;right:0;top:0;}
44
+ .jcrop-handle.ord-se{bottom:0;margin-bottom:-4px;margin-right:-4px;right:0;}
45
+ .jcrop-handle.ord-sw{bottom:0;left:0;margin-bottom:-4px;margin-left:-4px;}
46
+ .jcrop-dragbar.ord-n,.jcrop-dragbar.ord-s{height:7px;width:100%;}
47
+ .jcrop-dragbar.ord-e,.jcrop-dragbar.ord-w{height:100%;width:7px;}
48
+ .jcrop-dragbar.ord-n{margin-top:-4px;}
49
+ .jcrop-dragbar.ord-s{bottom:0;margin-bottom:-4px;}
50
+ .jcrop-dragbar.ord-e{margin-right:-4px;right:0;}
51
+ .jcrop-dragbar.ord-w{margin-left:-4px;}
52
+
53
+ /* The "jcrop-light" class/extension */
54
+ .jcrop-light .jcrop-vline,.jcrop-light .jcrop-hline
55
+ {
56
+ background:#FFF;
57
+ filter:Alpha(opacity=70)!important;
58
+ opacity:.70!important;
59
+ }
60
+ .jcrop-light .jcrop-handle
61
+ {
62
+ -moz-border-radius:3px;
63
+ -webkit-border-radius:3px;
64
+ background-color:#000;
65
+ border-color:#FFF;
66
+ border-radius:3px;
67
+ }
68
+
69
+ /* The "jcrop-dark" class/extension */
70
+ .jcrop-dark .jcrop-vline,.jcrop-dark .jcrop-hline
71
+ {
72
+ background:#000;
73
+ filter:Alpha(opacity=70)!important;
74
+ opacity:.7!important;
75
+ }
76
+ .jcrop-dark .jcrop-handle
77
+ {
78
+ -moz-border-radius:3px;
79
+ -webkit-border-radius:3px;
80
+ background-color:#FFF;
81
+ border-color:#000;
82
+ border-radius:3px;
83
+ }
84
+
85
+ /* Fix for twitter bootstrap et al. */
86
+ .jcrop-holder img,img.jcrop-preview{ max-width: none; }
@@ -0,0 +1,11 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
2
+
3
+ # This model initially had no columns defined. If you add columns to the
4
+ # model remove the '{}' from the fixture names and add the columns immediately
5
+ # below each fixture, per the syntax in the comments below
6
+ #
7
+ one: {}
8
+ # column: value
9
+ #
10
+ two: {}
11
+ # column: value
@@ -0,0 +1,51 @@
1
+ require 'test_helper'
2
+
3
+ module Jail
4
+ class GithubsControllerTest < ActionController::TestCase
5
+ setup do
6
+ @github = githubs(:one)
7
+ end
8
+
9
+ test "should get index" do
10
+ get :index
11
+ assert_response :success
12
+ assert_not_nil assigns(:githubs)
13
+ end
14
+
15
+ test "should get new" do
16
+ get :new
17
+ assert_response :success
18
+ end
19
+
20
+ test "should create github" do
21
+ assert_difference('Github.count') do
22
+ post :create, :github => { }
23
+ end
24
+
25
+ assert_redirected_to github_path(assigns(:github))
26
+ end
27
+
28
+ test "should show github" do
29
+ get :show, :id => @github
30
+ assert_response :success
31
+ end
32
+
33
+ test "should get edit" do
34
+ get :edit, :id => @github
35
+ assert_response :success
36
+ end
37
+
38
+ test "should update github" do
39
+ put :update, :id => @github, :github => { }
40
+ assert_redirected_to github_path(assigns(:github))
41
+ end
42
+
43
+ test "should destroy github" do
44
+ assert_difference('Github.count', -1) do
45
+ delete :destroy, :id => @github
46
+ end
47
+
48
+ assert_redirected_to githubs_path
49
+ end
50
+ end
51
+ end
@@ -0,0 +1,51 @@
1
+ require 'test_helper'
2
+
3
+ module Jail
4
+ class GithubsControllerTest < ActionController::TestCase
5
+ setup do
6
+ @github = jqgithubs(:one)
7
+ end
8
+
9
+ test "should get index" do
10
+ get :index
11
+ assert_response :success
12
+ assert_not_nil assigns(:jqgithubs)
13
+ end
14
+
15
+ test "should get new" do
16
+ get :new
17
+ assert_response :success
18
+ end
19
+
20
+ test "should create jqgithub" do
21
+ assert_difference('Github.count') do
22
+ post :create, :jqgithub => { }
23
+ end
24
+
25
+ assert_redirected_to jqgithub_path(assigns(:jqgithub))
26
+ end
27
+
28
+ test "should show jqgithub" do
29
+ get :show, :id => @github
30
+ assert_response :success
31
+ end
32
+
33
+ test "should get edit" do
34
+ get :edit, :id => @github
35
+ assert_response :success
36
+ end
37
+
38
+ test "should update jqgithub" do
39
+ put :update, :id => @github, :jqgithub => { }
40
+ assert_redirected_to jqgithub_path(assigns(:jqgithub))
41
+ end
42
+
43
+ test "should destroy jqgithub" do
44
+ assert_difference('Github.count', -1) do
45
+ delete :destroy, :id => @github
46
+ end
47
+
48
+ assert_redirected_to jqgithubs_path
49
+ end
50
+ end
51
+ 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 JailTest < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, Jail
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 Jail
4
+ class GithubsHelperTest < ActionView::TestCase
5
+ end
6
+ end
@@ -0,0 +1,6 @@
1
+ require 'test_helper'
2
+
3
+ module Jail
4
+ class GithubsHelperTest < ActionView::TestCase
5
+ end
6
+ end
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ module Jail
4
+ class GithubTest < ActiveSupport::TestCase
5
+ # test "the truth" do
6
+ # assert true
7
+ # end
8
+ end
9
+ end
metadata ADDED
@@ -0,0 +1,269 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jail
3
+ version: !ruby/object:Gem::Version
4
+ hash: 27
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 2
10
+ version: 0.0.2
11
+ platform: ruby
12
+ authors:
13
+ - Charles Sistovaris
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2012-10-01 00:00:00 Z
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
+ hash: 31
29
+ segments:
30
+ - 3
31
+ - 2
32
+ - 8
33
+ version: 3.2.8
34
+ type: :runtime
35
+ version_requirements: *id001
36
+ - !ruby/object:Gem::Dependency
37
+ name: github_api
38
+ prerelease: false
39
+ requirement: &id002 !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ hash: 3
45
+ segments:
46
+ - 0
47
+ version: "0"
48
+ type: :runtime
49
+ version_requirements: *id002
50
+ - !ruby/object:Gem::Dependency
51
+ name: rspec
52
+ prerelease: false
53
+ requirement: &id003 !ruby/object:Gem::Requirement
54
+ none: false
55
+ requirements:
56
+ - - ">="
57
+ - !ruby/object:Gem::Version
58
+ hash: 3
59
+ segments:
60
+ - 0
61
+ version: "0"
62
+ type: :development
63
+ version_requirements: *id003
64
+ - !ruby/object:Gem::Dependency
65
+ name: sqlite3
66
+ prerelease: false
67
+ requirement: &id004 !ruby/object:Gem::Requirement
68
+ none: false
69
+ requirements:
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ hash: 3
73
+ segments:
74
+ - 0
75
+ version: "0"
76
+ type: :development
77
+ version_requirements: *id004
78
+ - !ruby/object:Gem::Dependency
79
+ name: jquery-rails
80
+ prerelease: false
81
+ requirement: &id005 !ruby/object:Gem::Requirement
82
+ none: false
83
+ requirements:
84
+ - - ">="
85
+ - !ruby/object:Gem::Version
86
+ hash: 3
87
+ segments:
88
+ - 0
89
+ version: "0"
90
+ type: :development
91
+ version_requirements: *id005
92
+ description: "\n Developers facility to install or remove jQuery plugins hosted on github by \n adding proper javascripts, stylesheets and images in vendor/assets.\n "
93
+ email:
94
+ - charlysisto@gmail.com
95
+ executables: []
96
+
97
+ extensions: []
98
+
99
+ extra_rdoc_files: []
100
+
101
+ files:
102
+ - app/assets/javascripts/jail/application.js
103
+ - app/assets/stylesheets/jail/application.css
104
+ - app/controllers/jail/application_controller.rb
105
+ - app/controllers/jail/githubs_controller.rb
106
+ - app/models/jail/github.rb
107
+ - app/views/jail/githubs/index.html.erb
108
+ - app/views/jail/githubs/show.html.erb
109
+ - app/views/layouts/jail/application.html.erb
110
+ - config/prisoners.yml
111
+ - config/routes.rb
112
+ - lib/jail/engine.rb
113
+ - lib/jail/version.rb
114
+ - lib/jail.rb
115
+ - lib/tasks/jail_tasks.rake
116
+ - MIT-LICENSE
117
+ - Rakefile
118
+ - README.md
119
+ - test/dummy/app/assets/javascripts/application.js
120
+ - test/dummy/app/assets/stylesheets/application.css
121
+ - test/dummy/app/controllers/application_controller.rb
122
+ - test/dummy/app/helpers/application_helper.rb
123
+ - test/dummy/app/views/layouts/application.html.erb
124
+ - test/dummy/config/application.rb
125
+ - test/dummy/config/boot.rb
126
+ - test/dummy/config/database.yml
127
+ - test/dummy/config/environment.rb
128
+ - test/dummy/config/environments/development.rb
129
+ - test/dummy/config/environments/production.rb
130
+ - test/dummy/config/environments/test.rb
131
+ - test/dummy/config/initializers/backtrace_silencers.rb
132
+ - test/dummy/config/initializers/inflections.rb
133
+ - test/dummy/config/initializers/jail.rb
134
+ - test/dummy/config/initializers/mime_types.rb
135
+ - test/dummy/config/initializers/secret_token.rb
136
+ - test/dummy/config/initializers/session_store.rb
137
+ - test/dummy/config/initializers/wrap_parameters.rb
138
+ - test/dummy/config/locales/en.yml
139
+ - test/dummy/config/routes.rb
140
+ - test/dummy/config.ru
141
+ - test/dummy/db/development.sqlite3
142
+ - test/dummy/log/development.log
143
+ - test/dummy/public/404.html
144
+ - test/dummy/public/422.html
145
+ - test/dummy/public/500.html
146
+ - test/dummy/public/favicon.ico
147
+ - test/dummy/Rakefile
148
+ - test/dummy/README.rdoc
149
+ - test/dummy/script/rails
150
+ - test/dummy/tmp/cache/assets/C78/2D0/sprockets%2F049c9453e2d03a13463ad15568c8521f
151
+ - test/dummy/tmp/cache/assets/CBE/8B0/sprockets%2F45f037820eca943af359e247967580cf
152
+ - test/dummy/tmp/cache/assets/CFA/570/sprockets%2Ffe84858b375458bd418cb85c8f84803c
153
+ - test/dummy/tmp/cache/assets/D15/AE0/sprockets%2F3fd1b8f0c577d6bd951f40857132eb74
154
+ - test/dummy/tmp/cache/assets/D29/F40/sprockets%2F15ce02e64710b4fa1d3a21f6270fdc74
155
+ - test/dummy/tmp/cache/assets/D34/BF0/sprockets%2F18a1d0fec1cd74447e07b02d058a289d
156
+ - test/dummy/tmp/cache/assets/D46/B30/sprockets%2F36e940335f9fc2de06c6d8aad556d822
157
+ - test/dummy/tmp/cache/assets/D4B/BC0/sprockets%2Fa3a0b270a0bb2747cad33e424662fba2
158
+ - test/dummy/tmp/cache/assets/D76/A70/sprockets%2F360c75fdc8ed695061e3b08da593d7cc
159
+ - test/dummy/tmp/cache/assets/D81/500/sprockets%2F23e9c52aedd634ee57e66663cffa1868
160
+ - test/dummy/tmp/cache/assets/D9E/630/sprockets%2F0efe12c5dc1902e8cf8f6844b7bca812
161
+ - test/dummy/tmp/cache/assets/DDF/C90/sprockets%2Fc4dff5559e7f91debdf5da74921c028e
162
+ - test/dummy/tmp/cache/assets/E64/6F0/sprockets%2F8f0e4dd1aa8c3ddea851bf771dce8f8c
163
+ - test/dummy/tmp/pids/server.pid
164
+ - test/dummy/vendor/assets/images/Jcrop.gif
165
+ - test/dummy/vendor/assets/javascripts/cookies.js
166
+ - test/dummy/vendor/assets/javascripts/jquery.Jcrop.js
167
+ - test/dummy/vendor/assets/stylesheets/jquery.Jcrop.css
168
+ - test/fixtures/jqplug/jqgithubs.yml
169
+ - test/functional/jqplug/githubs_controller_test.rb
170
+ - test/functional/jqplug/jqgithubs_controller_test.rb
171
+ - test/integration/navigation_test.rb
172
+ - test/jqplug_test.rb
173
+ - test/test_helper.rb
174
+ - test/unit/helpers/jqplug/githubs_helper_test.rb
175
+ - test/unit/helpers/jqplug/jqgithubs_helper_test.rb
176
+ - test/unit/jqplug/jqgithub_test.rb
177
+ homepage: https://github.com/charly/jail
178
+ licenses: []
179
+
180
+ post_install_message:
181
+ rdoc_options: []
182
+
183
+ require_paths:
184
+ - lib
185
+ required_ruby_version: !ruby/object:Gem::Requirement
186
+ none: false
187
+ requirements:
188
+ - - ">="
189
+ - !ruby/object:Gem::Version
190
+ hash: 3
191
+ segments:
192
+ - 0
193
+ version: "0"
194
+ required_rubygems_version: !ruby/object:Gem::Requirement
195
+ none: false
196
+ requirements:
197
+ - - ">="
198
+ - !ruby/object:Gem::Version
199
+ hash: 3
200
+ segments:
201
+ - 0
202
+ version: "0"
203
+ requirements: []
204
+
205
+ rubyforge_project:
206
+ rubygems_version: 1.8.24
207
+ signing_key:
208
+ specification_version: 3
209
+ summary: Puts your assets in rails
210
+ test_files:
211
+ - test/dummy/app/assets/javascripts/application.js
212
+ - test/dummy/app/assets/stylesheets/application.css
213
+ - test/dummy/app/controllers/application_controller.rb
214
+ - test/dummy/app/helpers/application_helper.rb
215
+ - test/dummy/app/views/layouts/application.html.erb
216
+ - test/dummy/config/application.rb
217
+ - test/dummy/config/boot.rb
218
+ - test/dummy/config/database.yml
219
+ - test/dummy/config/environment.rb
220
+ - test/dummy/config/environments/development.rb
221
+ - test/dummy/config/environments/production.rb
222
+ - test/dummy/config/environments/test.rb
223
+ - test/dummy/config/initializers/backtrace_silencers.rb
224
+ - test/dummy/config/initializers/inflections.rb
225
+ - test/dummy/config/initializers/jail.rb
226
+ - test/dummy/config/initializers/mime_types.rb
227
+ - test/dummy/config/initializers/secret_token.rb
228
+ - test/dummy/config/initializers/session_store.rb
229
+ - test/dummy/config/initializers/wrap_parameters.rb
230
+ - test/dummy/config/locales/en.yml
231
+ - test/dummy/config/routes.rb
232
+ - test/dummy/config.ru
233
+ - test/dummy/db/development.sqlite3
234
+ - test/dummy/log/development.log
235
+ - test/dummy/public/404.html
236
+ - test/dummy/public/422.html
237
+ - test/dummy/public/500.html
238
+ - test/dummy/public/favicon.ico
239
+ - test/dummy/Rakefile
240
+ - test/dummy/README.rdoc
241
+ - test/dummy/script/rails
242
+ - test/dummy/tmp/cache/assets/C78/2D0/sprockets%2F049c9453e2d03a13463ad15568c8521f
243
+ - test/dummy/tmp/cache/assets/CBE/8B0/sprockets%2F45f037820eca943af359e247967580cf
244
+ - test/dummy/tmp/cache/assets/CFA/570/sprockets%2Ffe84858b375458bd418cb85c8f84803c
245
+ - test/dummy/tmp/cache/assets/D15/AE0/sprockets%2F3fd1b8f0c577d6bd951f40857132eb74
246
+ - test/dummy/tmp/cache/assets/D29/F40/sprockets%2F15ce02e64710b4fa1d3a21f6270fdc74
247
+ - test/dummy/tmp/cache/assets/D34/BF0/sprockets%2F18a1d0fec1cd74447e07b02d058a289d
248
+ - test/dummy/tmp/cache/assets/D46/B30/sprockets%2F36e940335f9fc2de06c6d8aad556d822
249
+ - test/dummy/tmp/cache/assets/D4B/BC0/sprockets%2Fa3a0b270a0bb2747cad33e424662fba2
250
+ - test/dummy/tmp/cache/assets/D76/A70/sprockets%2F360c75fdc8ed695061e3b08da593d7cc
251
+ - test/dummy/tmp/cache/assets/D81/500/sprockets%2F23e9c52aedd634ee57e66663cffa1868
252
+ - test/dummy/tmp/cache/assets/D9E/630/sprockets%2F0efe12c5dc1902e8cf8f6844b7bca812
253
+ - test/dummy/tmp/cache/assets/DDF/C90/sprockets%2Fc4dff5559e7f91debdf5da74921c028e
254
+ - test/dummy/tmp/cache/assets/E64/6F0/sprockets%2F8f0e4dd1aa8c3ddea851bf771dce8f8c
255
+ - test/dummy/tmp/pids/server.pid
256
+ - test/dummy/vendor/assets/images/Jcrop.gif
257
+ - test/dummy/vendor/assets/javascripts/cookies.js
258
+ - test/dummy/vendor/assets/javascripts/jquery.Jcrop.js
259
+ - test/dummy/vendor/assets/stylesheets/jquery.Jcrop.css
260
+ - test/fixtures/jqplug/jqgithubs.yml
261
+ - test/functional/jqplug/githubs_controller_test.rb
262
+ - test/functional/jqplug/jqgithubs_controller_test.rb
263
+ - test/integration/navigation_test.rb
264
+ - test/jqplug_test.rb
265
+ - test/test_helper.rb
266
+ - test/unit/helpers/jqplug/githubs_helper_test.rb
267
+ - test/unit/helpers/jqplug/jqgithubs_helper_test.rb
268
+ - test/unit/jqplug/jqgithub_test.rb
269
+ has_rdoc: