lockup 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/MIT-LICENSE +20 -0
- data/README.md +31 -0
- data/Rakefile +40 -0
- data/app/assets/javascripts/lockup/application.js +15 -0
- data/app/assets/stylesheets/lockup/application.css +13 -0
- data/app/assets/stylesheets/lockup/layout.css +91 -0
- data/app/controllers/lockup/application_controller.rb +4 -0
- data/app/controllers/lockup/lockup_controller.rb +42 -0
- data/app/helpers/lockup/application_helper.rb +4 -0
- data/app/views/layouts/lockup/application.html.erb +12 -0
- data/app/views/lockup/lockup/unlock.html.erb +23 -0
- data/config/routes.rb +7 -0
- data/lib/lockup.rb +22 -0
- data/lib/lockup/engine.rb +13 -0
- data/lib/lockup/version.rb +3 -0
- data/lib/tasks/lockup_tasks.rake +4 -0
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +15 -0
- data/test/dummy/app/assets/javascripts/posts.js +2 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/assets/stylesheets/posts.css +4 -0
- data/test/dummy/app/assets/stylesheets/scaffold.css +56 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/controllers/posts_controller.rb +83 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/helpers/posts_helper.rb +2 -0
- data/test/dummy/app/models/post.rb +3 -0
- data/test/dummy/app/views/posts/_form.html.erb +17 -0
- data/test/dummy/app/views/posts/edit.html.erb +6 -0
- data/test/dummy/app/views/posts/index.html.erb +21 -0
- data/test/dummy/app/views/posts/new.html.erb +5 -0
- data/test/dummy/app/views/posts/show.html.erb +5 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +59 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +67 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +15 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +9 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20130509023411_create_posts.rb +8 -0
- data/test/dummy/db/schema.rb +21 -0
- data/test/dummy/log/development.log +4271 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/dummy/test/fixtures/posts.yml +11 -0
- data/test/dummy/test/functional/posts_controller_test.rb +49 -0
- data/test/dummy/test/unit/helpers/posts_helper_test.rb +4 -0
- data/test/dummy/test/unit/post_test.rb +7 -0
- data/test/dummy/tmp/cache/assets/C8C/B80/sprockets%2F371bf96e99717688ed7313a0c53f4212 +0 -0
- data/test/dummy/tmp/cache/assets/CA2/B90/sprockets%2Fd5057be14242f909abb7946501241cf0 +0 -0
- data/test/dummy/tmp/cache/assets/CBB/A30/sprockets%2F35d582a476413fe8922740f51fca668e +0 -0
- data/test/dummy/tmp/cache/assets/CC4/090/sprockets%2F4a68d2ee97c29d4331984665f2f06a94 +0 -0
- data/test/dummy/tmp/cache/assets/CC7/220/sprockets%2Fd066c004d1fd26ae76a61303a7a18145 +0 -0
- data/test/dummy/tmp/cache/assets/CD5/B70/sprockets%2F416150dc3ac35079c94273cc46e90aa6 +0 -0
- data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/CEC/250/sprockets%2Fe5b6884ad9163b19d26c96b787ce0035 +0 -0
- data/test/dummy/tmp/cache/assets/CF0/1D0/sprockets%2F6fc757c2c8329244ca95d6909865bbc2 +0 -0
- data/test/dummy/tmp/cache/assets/D13/DE0/sprockets%2F9eded750b033712e986c4e3d06b2439e +0 -0
- data/test/dummy/tmp/cache/assets/D13/F80/sprockets%2Fea61f46df9f7066133164054f6a7c6cc +0 -0
- data/test/dummy/tmp/cache/assets/D1A/310/sprockets%2F5384ad85f52d3272dbc64d46ef3876a4 +0 -0
- data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/D38/110/sprockets%2F69fef092c21ae1a546c34042e4b56bd8 +0 -0
- data/test/dummy/tmp/cache/assets/D41/EF0/sprockets%2F5d8cab6dc1e5d8064d90822e03d75c66 +0 -0
- data/test/dummy/tmp/cache/assets/D46/E10/sprockets%2F0d0d7c4506cde94708f65e8bd3a5b864 +0 -0
- data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/D9C/CD0/sprockets%2Fc85016e7bbd4f3adbb7635d01f85d39b +0 -0
- data/test/dummy/tmp/cache/assets/DB8/CF0/sprockets%2Fbb3db17916aaef05a30edd91ef00e703 +0 -0
- data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/E01/5E0/sprockets%2F71a1c4bce0075db389efee818edffc60 +0 -0
- data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/E2B/1E0/sprockets%2F15ebf39553d9aa1ffeab7edc3800cf5c +0 -0
- data/test/integration/navigation_test.rb +10 -0
- data/test/lockup_test.rb +7 -0
- data/test/test_helper.rb +15 -0
- metadata +248 -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 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,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,49 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
class PostsControllerTest < ActionController::TestCase
|
4
|
+
setup do
|
5
|
+
@post = posts(:one)
|
6
|
+
end
|
7
|
+
|
8
|
+
test "should get index" do
|
9
|
+
get :index
|
10
|
+
assert_response :success
|
11
|
+
assert_not_nil assigns(:posts)
|
12
|
+
end
|
13
|
+
|
14
|
+
test "should get new" do
|
15
|
+
get :new
|
16
|
+
assert_response :success
|
17
|
+
end
|
18
|
+
|
19
|
+
test "should create post" do
|
20
|
+
assert_difference('Post.count') do
|
21
|
+
post :create, post: { }
|
22
|
+
end
|
23
|
+
|
24
|
+
assert_redirected_to post_path(assigns(:post))
|
25
|
+
end
|
26
|
+
|
27
|
+
test "should show post" do
|
28
|
+
get :show, id: @post
|
29
|
+
assert_response :success
|
30
|
+
end
|
31
|
+
|
32
|
+
test "should get edit" do
|
33
|
+
get :edit, id: @post
|
34
|
+
assert_response :success
|
35
|
+
end
|
36
|
+
|
37
|
+
test "should update post" do
|
38
|
+
put :update, id: @post, post: { }
|
39
|
+
assert_redirected_to post_path(assigns(:post))
|
40
|
+
end
|
41
|
+
|
42
|
+
test "should destroy post" do
|
43
|
+
assert_difference('Post.count', -1) do
|
44
|
+
delete :destroy, id: @post
|
45
|
+
end
|
46
|
+
|
47
|
+
assert_redirected_to posts_path
|
48
|
+
end
|
49
|
+
end
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/test/lockup_test.rb
ADDED
data/test/test_helper.rb
ADDED
@@ -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,248 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: lockup
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.2
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- gb Studio
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2013-07-11 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'
|
22
|
+
- - <
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: '5'
|
25
|
+
type: :runtime
|
26
|
+
prerelease: false
|
27
|
+
version_requirements: !ruby/object:Gem::Requirement
|
28
|
+
none: false
|
29
|
+
requirements:
|
30
|
+
- - ! '>='
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '3'
|
33
|
+
- - <
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: '5'
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: sqlite3
|
38
|
+
requirement: !ruby/object:Gem::Requirement
|
39
|
+
none: false
|
40
|
+
requirements:
|
41
|
+
- - ! '>='
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: '0'
|
44
|
+
type: :development
|
45
|
+
prerelease: false
|
46
|
+
version_requirements: !ruby/object:Gem::Requirement
|
47
|
+
none: false
|
48
|
+
requirements:
|
49
|
+
- - ! '>='
|
50
|
+
- !ruby/object:Gem::Version
|
51
|
+
version: '0'
|
52
|
+
description: A simple gem to more elegantly place a staging server or other in-progress
|
53
|
+
application behind a basic codeword. It’s easy to implement, share with clients/collaborators,
|
54
|
+
and more beautiful than the typical password-protection sheet.
|
55
|
+
email:
|
56
|
+
- hello@grantblakeman.com
|
57
|
+
executables: []
|
58
|
+
extensions: []
|
59
|
+
extra_rdoc_files: []
|
60
|
+
files:
|
61
|
+
- app/assets/javascripts/lockup/application.js
|
62
|
+
- app/assets/stylesheets/lockup/application.css
|
63
|
+
- app/assets/stylesheets/lockup/layout.css
|
64
|
+
- app/controllers/lockup/application_controller.rb
|
65
|
+
- app/controllers/lockup/lockup_controller.rb
|
66
|
+
- app/helpers/lockup/application_helper.rb
|
67
|
+
- app/views/layouts/lockup/application.html.erb
|
68
|
+
- app/views/lockup/lockup/unlock.html.erb
|
69
|
+
- config/routes.rb
|
70
|
+
- lib/lockup/engine.rb
|
71
|
+
- lib/lockup/version.rb
|
72
|
+
- lib/lockup.rb
|
73
|
+
- lib/tasks/lockup_tasks.rake
|
74
|
+
- MIT-LICENSE
|
75
|
+
- Rakefile
|
76
|
+
- README.md
|
77
|
+
- test/dummy/app/assets/javascripts/application.js
|
78
|
+
- test/dummy/app/assets/javascripts/posts.js
|
79
|
+
- test/dummy/app/assets/stylesheets/application.css
|
80
|
+
- test/dummy/app/assets/stylesheets/posts.css
|
81
|
+
- test/dummy/app/assets/stylesheets/scaffold.css
|
82
|
+
- test/dummy/app/controllers/application_controller.rb
|
83
|
+
- test/dummy/app/controllers/posts_controller.rb
|
84
|
+
- test/dummy/app/helpers/application_helper.rb
|
85
|
+
- test/dummy/app/helpers/posts_helper.rb
|
86
|
+
- test/dummy/app/models/post.rb
|
87
|
+
- test/dummy/app/views/posts/_form.html.erb
|
88
|
+
- test/dummy/app/views/posts/edit.html.erb
|
89
|
+
- test/dummy/app/views/posts/index.html.erb
|
90
|
+
- test/dummy/app/views/posts/new.html.erb
|
91
|
+
- test/dummy/app/views/posts/show.html.erb
|
92
|
+
- test/dummy/config/application.rb
|
93
|
+
- test/dummy/config/boot.rb
|
94
|
+
- test/dummy/config/database.yml
|
95
|
+
- test/dummy/config/environment.rb
|
96
|
+
- test/dummy/config/environments/development.rb
|
97
|
+
- test/dummy/config/environments/production.rb
|
98
|
+
- test/dummy/config/environments/test.rb
|
99
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
100
|
+
- test/dummy/config/initializers/inflections.rb
|
101
|
+
- test/dummy/config/initializers/mime_types.rb
|
102
|
+
- test/dummy/config/initializers/secret_token.rb
|
103
|
+
- test/dummy/config/initializers/session_store.rb
|
104
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
105
|
+
- test/dummy/config/locales/en.yml
|
106
|
+
- test/dummy/config/routes.rb
|
107
|
+
- test/dummy/config.ru
|
108
|
+
- test/dummy/db/development.sqlite3
|
109
|
+
- test/dummy/db/migrate/20130509023411_create_posts.rb
|
110
|
+
- test/dummy/db/schema.rb
|
111
|
+
- test/dummy/log/development.log
|
112
|
+
- test/dummy/public/404.html
|
113
|
+
- test/dummy/public/422.html
|
114
|
+
- test/dummy/public/500.html
|
115
|
+
- test/dummy/public/favicon.ico
|
116
|
+
- test/dummy/Rakefile
|
117
|
+
- test/dummy/README.rdoc
|
118
|
+
- test/dummy/script/rails
|
119
|
+
- test/dummy/test/fixtures/posts.yml
|
120
|
+
- test/dummy/test/functional/posts_controller_test.rb
|
121
|
+
- test/dummy/test/unit/helpers/posts_helper_test.rb
|
122
|
+
- test/dummy/test/unit/post_test.rb
|
123
|
+
- test/dummy/tmp/cache/assets/C8C/B80/sprockets%2F371bf96e99717688ed7313a0c53f4212
|
124
|
+
- test/dummy/tmp/cache/assets/CA2/B90/sprockets%2Fd5057be14242f909abb7946501241cf0
|
125
|
+
- test/dummy/tmp/cache/assets/CBB/A30/sprockets%2F35d582a476413fe8922740f51fca668e
|
126
|
+
- test/dummy/tmp/cache/assets/CC4/090/sprockets%2F4a68d2ee97c29d4331984665f2f06a94
|
127
|
+
- test/dummy/tmp/cache/assets/CC7/220/sprockets%2Fd066c004d1fd26ae76a61303a7a18145
|
128
|
+
- test/dummy/tmp/cache/assets/CD5/B70/sprockets%2F416150dc3ac35079c94273cc46e90aa6
|
129
|
+
- test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
|
130
|
+
- test/dummy/tmp/cache/assets/CEC/250/sprockets%2Fe5b6884ad9163b19d26c96b787ce0035
|
131
|
+
- test/dummy/tmp/cache/assets/CF0/1D0/sprockets%2F6fc757c2c8329244ca95d6909865bbc2
|
132
|
+
- test/dummy/tmp/cache/assets/D13/DE0/sprockets%2F9eded750b033712e986c4e3d06b2439e
|
133
|
+
- test/dummy/tmp/cache/assets/D13/F80/sprockets%2Fea61f46df9f7066133164054f6a7c6cc
|
134
|
+
- test/dummy/tmp/cache/assets/D1A/310/sprockets%2F5384ad85f52d3272dbc64d46ef3876a4
|
135
|
+
- test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
|
136
|
+
- test/dummy/tmp/cache/assets/D38/110/sprockets%2F69fef092c21ae1a546c34042e4b56bd8
|
137
|
+
- test/dummy/tmp/cache/assets/D41/EF0/sprockets%2F5d8cab6dc1e5d8064d90822e03d75c66
|
138
|
+
- test/dummy/tmp/cache/assets/D46/E10/sprockets%2F0d0d7c4506cde94708f65e8bd3a5b864
|
139
|
+
- test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
|
140
|
+
- test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
|
141
|
+
- test/dummy/tmp/cache/assets/D9C/CD0/sprockets%2Fc85016e7bbd4f3adbb7635d01f85d39b
|
142
|
+
- test/dummy/tmp/cache/assets/DB8/CF0/sprockets%2Fbb3db17916aaef05a30edd91ef00e703
|
143
|
+
- test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
|
144
|
+
- test/dummy/tmp/cache/assets/E01/5E0/sprockets%2F71a1c4bce0075db389efee818edffc60
|
145
|
+
- test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
|
146
|
+
- test/dummy/tmp/cache/assets/E2B/1E0/sprockets%2F15ebf39553d9aa1ffeab7edc3800cf5c
|
147
|
+
- test/integration/navigation_test.rb
|
148
|
+
- test/lockup_test.rb
|
149
|
+
- test/test_helper.rb
|
150
|
+
homepage: http://lockupgem.com
|
151
|
+
licenses:
|
152
|
+
- MIT
|
153
|
+
post_install_message:
|
154
|
+
rdoc_options: []
|
155
|
+
require_paths:
|
156
|
+
- lib
|
157
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
158
|
+
none: false
|
159
|
+
requirements:
|
160
|
+
- - ! '>='
|
161
|
+
- !ruby/object:Gem::Version
|
162
|
+
version: '0'
|
163
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
164
|
+
none: false
|
165
|
+
requirements:
|
166
|
+
- - ! '>='
|
167
|
+
- !ruby/object:Gem::Version
|
168
|
+
version: '0'
|
169
|
+
requirements: []
|
170
|
+
rubyforge_project:
|
171
|
+
rubygems_version: 1.8.25
|
172
|
+
signing_key:
|
173
|
+
specification_version: 3
|
174
|
+
summary: Lock staging servers from search engines and prying eyes.
|
175
|
+
test_files:
|
176
|
+
- test/dummy/app/assets/javascripts/application.js
|
177
|
+
- test/dummy/app/assets/javascripts/posts.js
|
178
|
+
- test/dummy/app/assets/stylesheets/application.css
|
179
|
+
- test/dummy/app/assets/stylesheets/posts.css
|
180
|
+
- test/dummy/app/assets/stylesheets/scaffold.css
|
181
|
+
- test/dummy/app/controllers/application_controller.rb
|
182
|
+
- test/dummy/app/controllers/posts_controller.rb
|
183
|
+
- test/dummy/app/helpers/application_helper.rb
|
184
|
+
- test/dummy/app/helpers/posts_helper.rb
|
185
|
+
- test/dummy/app/models/post.rb
|
186
|
+
- test/dummy/app/views/posts/_form.html.erb
|
187
|
+
- test/dummy/app/views/posts/edit.html.erb
|
188
|
+
- test/dummy/app/views/posts/index.html.erb
|
189
|
+
- test/dummy/app/views/posts/new.html.erb
|
190
|
+
- test/dummy/app/views/posts/show.html.erb
|
191
|
+
- test/dummy/config/application.rb
|
192
|
+
- test/dummy/config/boot.rb
|
193
|
+
- test/dummy/config/database.yml
|
194
|
+
- test/dummy/config/environment.rb
|
195
|
+
- test/dummy/config/environments/development.rb
|
196
|
+
- test/dummy/config/environments/production.rb
|
197
|
+
- test/dummy/config/environments/test.rb
|
198
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
199
|
+
- test/dummy/config/initializers/inflections.rb
|
200
|
+
- test/dummy/config/initializers/mime_types.rb
|
201
|
+
- test/dummy/config/initializers/secret_token.rb
|
202
|
+
- test/dummy/config/initializers/session_store.rb
|
203
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
204
|
+
- test/dummy/config/locales/en.yml
|
205
|
+
- test/dummy/config/routes.rb
|
206
|
+
- test/dummy/config.ru
|
207
|
+
- test/dummy/db/development.sqlite3
|
208
|
+
- test/dummy/db/migrate/20130509023411_create_posts.rb
|
209
|
+
- test/dummy/db/schema.rb
|
210
|
+
- test/dummy/log/development.log
|
211
|
+
- test/dummy/public/404.html
|
212
|
+
- test/dummy/public/422.html
|
213
|
+
- test/dummy/public/500.html
|
214
|
+
- test/dummy/public/favicon.ico
|
215
|
+
- test/dummy/Rakefile
|
216
|
+
- test/dummy/README.rdoc
|
217
|
+
- test/dummy/script/rails
|
218
|
+
- test/dummy/test/fixtures/posts.yml
|
219
|
+
- test/dummy/test/functional/posts_controller_test.rb
|
220
|
+
- test/dummy/test/unit/helpers/posts_helper_test.rb
|
221
|
+
- test/dummy/test/unit/post_test.rb
|
222
|
+
- test/dummy/tmp/cache/assets/C8C/B80/sprockets%2F371bf96e99717688ed7313a0c53f4212
|
223
|
+
- test/dummy/tmp/cache/assets/CA2/B90/sprockets%2Fd5057be14242f909abb7946501241cf0
|
224
|
+
- test/dummy/tmp/cache/assets/CBB/A30/sprockets%2F35d582a476413fe8922740f51fca668e
|
225
|
+
- test/dummy/tmp/cache/assets/CC4/090/sprockets%2F4a68d2ee97c29d4331984665f2f06a94
|
226
|
+
- test/dummy/tmp/cache/assets/CC7/220/sprockets%2Fd066c004d1fd26ae76a61303a7a18145
|
227
|
+
- test/dummy/tmp/cache/assets/CD5/B70/sprockets%2F416150dc3ac35079c94273cc46e90aa6
|
228
|
+
- test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
|
229
|
+
- test/dummy/tmp/cache/assets/CEC/250/sprockets%2Fe5b6884ad9163b19d26c96b787ce0035
|
230
|
+
- test/dummy/tmp/cache/assets/CF0/1D0/sprockets%2F6fc757c2c8329244ca95d6909865bbc2
|
231
|
+
- test/dummy/tmp/cache/assets/D13/DE0/sprockets%2F9eded750b033712e986c4e3d06b2439e
|
232
|
+
- test/dummy/tmp/cache/assets/D13/F80/sprockets%2Fea61f46df9f7066133164054f6a7c6cc
|
233
|
+
- test/dummy/tmp/cache/assets/D1A/310/sprockets%2F5384ad85f52d3272dbc64d46ef3876a4
|
234
|
+
- test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
|
235
|
+
- test/dummy/tmp/cache/assets/D38/110/sprockets%2F69fef092c21ae1a546c34042e4b56bd8
|
236
|
+
- test/dummy/tmp/cache/assets/D41/EF0/sprockets%2F5d8cab6dc1e5d8064d90822e03d75c66
|
237
|
+
- test/dummy/tmp/cache/assets/D46/E10/sprockets%2F0d0d7c4506cde94708f65e8bd3a5b864
|
238
|
+
- test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
|
239
|
+
- test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
|
240
|
+
- test/dummy/tmp/cache/assets/D9C/CD0/sprockets%2Fc85016e7bbd4f3adbb7635d01f85d39b
|
241
|
+
- test/dummy/tmp/cache/assets/DB8/CF0/sprockets%2Fbb3db17916aaef05a30edd91ef00e703
|
242
|
+
- test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
|
243
|
+
- test/dummy/tmp/cache/assets/E01/5E0/sprockets%2F71a1c4bce0075db389efee818edffc60
|
244
|
+
- test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
|
245
|
+
- test/dummy/tmp/cache/assets/E2B/1E0/sprockets%2F15ebf39553d9aa1ffeab7edc3800cf5c
|
246
|
+
- test/integration/navigation_test.rb
|
247
|
+
- test/lockup_test.rb
|
248
|
+
- test/test_helper.rb
|