gistyle 0.9.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.
- data/MIT-LICENSE +20 -0
- data/README.md +65 -0
- data/Rakefile +38 -0
- data/lib/gistyle/engine.rb +6 -0
- data/lib/gistyle/version.rb +3 -0
- data/lib/gistyle.rb +3 -0
- data/lib/tasks/gistyle_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 +19 -0
- data/test/dummy/app/assets/javascripts/home.js +17 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/assets/stylesheets/home.css +4 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/controllers/home_controller.rb +10 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/helpers/home_helper.rb +2 -0
- data/test/dummy/app/views/home/about.html.erb +2 -0
- data/test/dummy/app/views/home/contact.html.erb +2 -0
- data/test/dummy/app/views/home/index.html.erb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -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 +64 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/log/development.log +1278 -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/functional/home_controller_test.rb +19 -0
- data/test/dummy/test/unit/helpers/home_helper_test.rb +4 -0
- data/test/dummy/tmp/cache/assets/C83/490/sprockets%2F15330991641fe8fa0b279210b5b8e949 +0 -0
- data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/CDF/870/sprockets%2Fb878faf942403e313a5b103e5d80488e +0 -0
- data/test/dummy/tmp/cache/assets/CEC/5D0/sprockets%2F21819c41ee5468193d19d790c9dab9a6 +0 -0
- data/test/dummy/tmp/cache/assets/CF9/7C0/sprockets%2F40fc2f3d2a468a00e463f1d313cb1683 +0 -0
- data/test/dummy/tmp/cache/assets/CFA/740/sprockets%2F51b7658a0856a6ee3ce9d94388e5f915 +0 -0
- data/test/dummy/tmp/cache/assets/D05/D40/sprockets%2F1c9faaf28d05409b88ad3113374d613c +0 -0
- data/test/dummy/tmp/cache/assets/D12/850/sprockets%2Fa2fe9c2381119ff255df842833b5a62e +0 -0
- data/test/dummy/tmp/cache/assets/D2B/3C0/sprockets%2F9aeb4d864d5751a786406e97be95b7d7 +0 -0
- data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/D50/ED0/sprockets%2Fc49b2d92f4859f7a2ffe80c586f31c05 +0 -0
- data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/D8A/760/sprockets%2F0c9530fa6ed31da0d41154aed43fd6d3 +0 -0
- data/test/dummy/tmp/cache/assets/D98/8B0/sprockets%2Fedbef6e0d0a4742346cf479f2c522eb0 +0 -0
- data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/DE9/5F0/sprockets%2Fcda0aa9da6891b5e19edc22f1ce2010e +0 -0
- data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/pids/server.pid +1 -0
- data/test/gistyle_test.rb +7 -0
- data/test/test_helper.rb +15 -0
- data/vendor/assets/javascripts/gistyle.js +25 -0
- metadata +212 -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,19 @@
|
|
|
1
|
+
require 'test_helper'
|
|
2
|
+
|
|
3
|
+
class HomeControllerTest < ActionController::TestCase
|
|
4
|
+
test "should get index" do
|
|
5
|
+
get :index
|
|
6
|
+
assert_response :success
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
test "should get about" do
|
|
10
|
+
get :about
|
|
11
|
+
assert_response :success
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
test "should get contact" do
|
|
15
|
+
get :contact
|
|
16
|
+
assert_response :success
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
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
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
9729
|
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
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
// Inspired from Paul Irish and Jason Garber
|
|
2
|
+
|
|
3
|
+
APP = {};
|
|
4
|
+
|
|
5
|
+
GIStyle = {
|
|
6
|
+
exec: function( controller, action ) {
|
|
7
|
+
var ns = APP, action = ( action === undefined ) ? "init" : action;
|
|
8
|
+
|
|
9
|
+
if ( controller !== "" && ns[controller] && typeof ns[controller][action] == "function" ) {
|
|
10
|
+
ns[controller][action]();
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
|
|
14
|
+
init: function() {
|
|
15
|
+
var body = document.body,
|
|
16
|
+
controller = body.getAttribute("data-controller"),
|
|
17
|
+
action = body.getAttribute("data-action");
|
|
18
|
+
|
|
19
|
+
if(typeof APP.init == "function") APP.init();
|
|
20
|
+
GIStyle.exec(controller);
|
|
21
|
+
GIStyle.exec(controller, action);
|
|
22
|
+
}
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
$(document).ready(GIStyle.init);
|
metadata
ADDED
|
@@ -0,0 +1,212 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: gistyle
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.9.3
|
|
5
|
+
prerelease:
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- Tony Jian
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
date: 2013-03-06 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.11
|
|
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.11
|
|
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: GIStyle is a Rails plug-in for DOM-based routing of Javascript, inspired
|
|
47
|
+
from Paul Irish and Jason Garber.
|
|
48
|
+
email:
|
|
49
|
+
- tonytonyjan@gmail.com
|
|
50
|
+
executables: []
|
|
51
|
+
extensions: []
|
|
52
|
+
extra_rdoc_files: []
|
|
53
|
+
files:
|
|
54
|
+
- lib/gistyle/version.rb
|
|
55
|
+
- lib/gistyle/engine.rb
|
|
56
|
+
- lib/tasks/gistyle_tasks.rake
|
|
57
|
+
- lib/gistyle.rb
|
|
58
|
+
- vendor/assets/javascripts/gistyle.js
|
|
59
|
+
- MIT-LICENSE
|
|
60
|
+
- Rakefile
|
|
61
|
+
- README.md
|
|
62
|
+
- test/gistyle_test.rb
|
|
63
|
+
- test/test_helper.rb
|
|
64
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
|
65
|
+
- test/dummy/config/initializers/mime_types.rb
|
|
66
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
|
67
|
+
- test/dummy/config/initializers/inflections.rb
|
|
68
|
+
- test/dummy/config/initializers/session_store.rb
|
|
69
|
+
- test/dummy/config/initializers/secret_token.rb
|
|
70
|
+
- test/dummy/config/routes.rb
|
|
71
|
+
- test/dummy/config/locales/en.yml
|
|
72
|
+
- test/dummy/config/database.yml
|
|
73
|
+
- test/dummy/config/environment.rb
|
|
74
|
+
- test/dummy/config/application.rb
|
|
75
|
+
- test/dummy/config/environments/development.rb
|
|
76
|
+
- test/dummy/config/environments/test.rb
|
|
77
|
+
- test/dummy/config/environments/production.rb
|
|
78
|
+
- test/dummy/config/boot.rb
|
|
79
|
+
- test/dummy/log/development.log
|
|
80
|
+
- test/dummy/app/views/layouts/application.html.erb
|
|
81
|
+
- test/dummy/app/views/home/index.html.erb
|
|
82
|
+
- test/dummy/app/views/home/about.html.erb
|
|
83
|
+
- test/dummy/app/views/home/contact.html.erb
|
|
84
|
+
- test/dummy/app/helpers/home_helper.rb
|
|
85
|
+
- test/dummy/app/helpers/application_helper.rb
|
|
86
|
+
- test/dummy/app/controllers/application_controller.rb
|
|
87
|
+
- test/dummy/app/controllers/home_controller.rb
|
|
88
|
+
- test/dummy/app/assets/javascripts/application.js
|
|
89
|
+
- test/dummy/app/assets/javascripts/home.js
|
|
90
|
+
- test/dummy/app/assets/stylesheets/home.css
|
|
91
|
+
- test/dummy/app/assets/stylesheets/application.css
|
|
92
|
+
- test/dummy/README.rdoc
|
|
93
|
+
- test/dummy/db/development.sqlite3
|
|
94
|
+
- test/dummy/script/rails
|
|
95
|
+
- test/dummy/config.ru
|
|
96
|
+
- test/dummy/test/functional/home_controller_test.rb
|
|
97
|
+
- test/dummy/test/unit/helpers/home_helper_test.rb
|
|
98
|
+
- test/dummy/public/favicon.ico
|
|
99
|
+
- test/dummy/public/422.html
|
|
100
|
+
- test/dummy/public/404.html
|
|
101
|
+
- test/dummy/public/500.html
|
|
102
|
+
- test/dummy/Rakefile
|
|
103
|
+
- test/dummy/tmp/pids/server.pid
|
|
104
|
+
- test/dummy/tmp/cache/assets/D98/8B0/sprockets%2Fedbef6e0d0a4742346cf479f2c522eb0
|
|
105
|
+
- test/dummy/tmp/cache/assets/CDF/870/sprockets%2Fb878faf942403e313a5b103e5d80488e
|
|
106
|
+
- test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
|
|
107
|
+
- test/dummy/tmp/cache/assets/D05/D40/sprockets%2F1c9faaf28d05409b88ad3113374d613c
|
|
108
|
+
- test/dummy/tmp/cache/assets/D8A/760/sprockets%2F0c9530fa6ed31da0d41154aed43fd6d3
|
|
109
|
+
- test/dummy/tmp/cache/assets/D2B/3C0/sprockets%2F9aeb4d864d5751a786406e97be95b7d7
|
|
110
|
+
- test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
|
|
111
|
+
- test/dummy/tmp/cache/assets/C83/490/sprockets%2F15330991641fe8fa0b279210b5b8e949
|
|
112
|
+
- test/dummy/tmp/cache/assets/D12/850/sprockets%2Fa2fe9c2381119ff255df842833b5a62e
|
|
113
|
+
- test/dummy/tmp/cache/assets/DE9/5F0/sprockets%2Fcda0aa9da6891b5e19edc22f1ce2010e
|
|
114
|
+
- test/dummy/tmp/cache/assets/CFA/740/sprockets%2F51b7658a0856a6ee3ce9d94388e5f915
|
|
115
|
+
- test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
|
|
116
|
+
- test/dummy/tmp/cache/assets/CEC/5D0/sprockets%2F21819c41ee5468193d19d790c9dab9a6
|
|
117
|
+
- test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
|
|
118
|
+
- test/dummy/tmp/cache/assets/CF9/7C0/sprockets%2F40fc2f3d2a468a00e463f1d313cb1683
|
|
119
|
+
- test/dummy/tmp/cache/assets/D50/ED0/sprockets%2Fc49b2d92f4859f7a2ffe80c586f31c05
|
|
120
|
+
- test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
|
|
121
|
+
- test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
|
|
122
|
+
homepage: https://github.com/tonytonyjan/gistyle
|
|
123
|
+
licenses: []
|
|
124
|
+
post_install_message:
|
|
125
|
+
rdoc_options: []
|
|
126
|
+
require_paths:
|
|
127
|
+
- lib
|
|
128
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
129
|
+
none: false
|
|
130
|
+
requirements:
|
|
131
|
+
- - ! '>='
|
|
132
|
+
- !ruby/object:Gem::Version
|
|
133
|
+
version: '0'
|
|
134
|
+
segments:
|
|
135
|
+
- 0
|
|
136
|
+
hash: 3020711135826047585
|
|
137
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
138
|
+
none: false
|
|
139
|
+
requirements:
|
|
140
|
+
- - ! '>='
|
|
141
|
+
- !ruby/object:Gem::Version
|
|
142
|
+
version: '0'
|
|
143
|
+
segments:
|
|
144
|
+
- 0
|
|
145
|
+
hash: 3020711135826047585
|
|
146
|
+
requirements: []
|
|
147
|
+
rubyforge_project:
|
|
148
|
+
rubygems_version: 1.8.25
|
|
149
|
+
signing_key:
|
|
150
|
+
specification_version: 3
|
|
151
|
+
summary: GIStyle is a Rails plug-in for DOM-based routing of Javascript.
|
|
152
|
+
test_files:
|
|
153
|
+
- test/gistyle_test.rb
|
|
154
|
+
- test/test_helper.rb
|
|
155
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
|
156
|
+
- test/dummy/config/initializers/mime_types.rb
|
|
157
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
|
158
|
+
- test/dummy/config/initializers/inflections.rb
|
|
159
|
+
- test/dummy/config/initializers/session_store.rb
|
|
160
|
+
- test/dummy/config/initializers/secret_token.rb
|
|
161
|
+
- test/dummy/config/routes.rb
|
|
162
|
+
- test/dummy/config/locales/en.yml
|
|
163
|
+
- test/dummy/config/database.yml
|
|
164
|
+
- test/dummy/config/environment.rb
|
|
165
|
+
- test/dummy/config/application.rb
|
|
166
|
+
- test/dummy/config/environments/development.rb
|
|
167
|
+
- test/dummy/config/environments/test.rb
|
|
168
|
+
- test/dummy/config/environments/production.rb
|
|
169
|
+
- test/dummy/config/boot.rb
|
|
170
|
+
- test/dummy/log/development.log
|
|
171
|
+
- test/dummy/app/views/layouts/application.html.erb
|
|
172
|
+
- test/dummy/app/views/home/index.html.erb
|
|
173
|
+
- test/dummy/app/views/home/about.html.erb
|
|
174
|
+
- test/dummy/app/views/home/contact.html.erb
|
|
175
|
+
- test/dummy/app/helpers/home_helper.rb
|
|
176
|
+
- test/dummy/app/helpers/application_helper.rb
|
|
177
|
+
- test/dummy/app/controllers/application_controller.rb
|
|
178
|
+
- test/dummy/app/controllers/home_controller.rb
|
|
179
|
+
- test/dummy/app/assets/javascripts/application.js
|
|
180
|
+
- test/dummy/app/assets/javascripts/home.js
|
|
181
|
+
- test/dummy/app/assets/stylesheets/home.css
|
|
182
|
+
- test/dummy/app/assets/stylesheets/application.css
|
|
183
|
+
- test/dummy/README.rdoc
|
|
184
|
+
- test/dummy/db/development.sqlite3
|
|
185
|
+
- test/dummy/script/rails
|
|
186
|
+
- test/dummy/config.ru
|
|
187
|
+
- test/dummy/test/functional/home_controller_test.rb
|
|
188
|
+
- test/dummy/test/unit/helpers/home_helper_test.rb
|
|
189
|
+
- test/dummy/public/favicon.ico
|
|
190
|
+
- test/dummy/public/422.html
|
|
191
|
+
- test/dummy/public/404.html
|
|
192
|
+
- test/dummy/public/500.html
|
|
193
|
+
- test/dummy/Rakefile
|
|
194
|
+
- test/dummy/tmp/pids/server.pid
|
|
195
|
+
- test/dummy/tmp/cache/assets/D98/8B0/sprockets%2Fedbef6e0d0a4742346cf479f2c522eb0
|
|
196
|
+
- test/dummy/tmp/cache/assets/CDF/870/sprockets%2Fb878faf942403e313a5b103e5d80488e
|
|
197
|
+
- test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
|
|
198
|
+
- test/dummy/tmp/cache/assets/D05/D40/sprockets%2F1c9faaf28d05409b88ad3113374d613c
|
|
199
|
+
- test/dummy/tmp/cache/assets/D8A/760/sprockets%2F0c9530fa6ed31da0d41154aed43fd6d3
|
|
200
|
+
- test/dummy/tmp/cache/assets/D2B/3C0/sprockets%2F9aeb4d864d5751a786406e97be95b7d7
|
|
201
|
+
- test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
|
|
202
|
+
- test/dummy/tmp/cache/assets/C83/490/sprockets%2F15330991641fe8fa0b279210b5b8e949
|
|
203
|
+
- test/dummy/tmp/cache/assets/D12/850/sprockets%2Fa2fe9c2381119ff255df842833b5a62e
|
|
204
|
+
- test/dummy/tmp/cache/assets/DE9/5F0/sprockets%2Fcda0aa9da6891b5e19edc22f1ce2010e
|
|
205
|
+
- test/dummy/tmp/cache/assets/CFA/740/sprockets%2F51b7658a0856a6ee3ce9d94388e5f915
|
|
206
|
+
- test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
|
|
207
|
+
- test/dummy/tmp/cache/assets/CEC/5D0/sprockets%2F21819c41ee5468193d19d790c9dab9a6
|
|
208
|
+
- test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
|
|
209
|
+
- test/dummy/tmp/cache/assets/CF9/7C0/sprockets%2F40fc2f3d2a468a00e463f1d313cb1683
|
|
210
|
+
- test/dummy/tmp/cache/assets/D50/ED0/sprockets%2Fc49b2d92f4859f7a2ffe80c586f31c05
|
|
211
|
+
- test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
|
|
212
|
+
- test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
|