tegaki_jan_rails 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/Rakefile +32 -0
- data/app/assets/fonts/tegaki-jan.woff +0 -0
- data/app/assets/stylesheets/tegaki-jan.css.erb +22 -0
- data/app/helpers/tegaki_jan_rails/icon_helper.rb +7 -0
- data/lib/tasks/tegaki_jan_rails_tasks.rake +4 -0
- data/lib/tegaki_jan_rails.rb +3 -0
- data/lib/tegaki_jan_rails/version.rb +3 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +19 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/controllers/main_controller.rb +4 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/app/views/main/index.html.erb +3 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +23 -0
- data/test/dummy/config/boot.rb +5 -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 +83 -0
- data/test/dummy/config/environments/test.rb +39 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +58 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/log/development.log +572 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/fbb9b73ec9795d93d9e013512caad6d38a109349/tegaki-jan.css.sass.erbc +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/04adcde1198774833041b75e739f35cd +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/3ab242aae19c1cbcd3f0e9d1691a74fd +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/4bca4fd614db200c18ff3e27f218ecb2 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a0d186cbaf1c399d82657535d30c0dac +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a1226b8ce84bece1e28368f18e22055d +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a7d88fbf004880776db506fa7f03547a +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/dcc54e17ad1adedbd484a647110c66a2 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/eddcb0bc7a3b08d1d9d5ccda81b7750b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/ef49c39b3ccbd02e602ac057cbf6b81c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/tegaki_jan_rails_test.rb +7 -0
- data/test/test_helper.rb +15 -0
- metadata +188 -0
@@ -0,0 +1,67 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The page you were looking for doesn't exist (404)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
|
+
<style>
|
7
|
+
body {
|
8
|
+
background-color: #EFEFEF;
|
9
|
+
color: #2E2F30;
|
10
|
+
text-align: center;
|
11
|
+
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
|
15
|
+
div.dialog {
|
16
|
+
width: 95%;
|
17
|
+
max-width: 33em;
|
18
|
+
margin: 4em auto 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
div.dialog > div {
|
22
|
+
border: 1px solid #CCC;
|
23
|
+
border-right-color: #999;
|
24
|
+
border-left-color: #999;
|
25
|
+
border-bottom-color: #BBB;
|
26
|
+
border-top: #B00100 solid 4px;
|
27
|
+
border-top-left-radius: 9px;
|
28
|
+
border-top-right-radius: 9px;
|
29
|
+
background-color: white;
|
30
|
+
padding: 7px 12% 0;
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
32
|
+
}
|
33
|
+
|
34
|
+
h1 {
|
35
|
+
font-size: 100%;
|
36
|
+
color: #730E15;
|
37
|
+
line-height: 1.5em;
|
38
|
+
}
|
39
|
+
|
40
|
+
div.dialog > p {
|
41
|
+
margin: 0 0 1em;
|
42
|
+
padding: 1em;
|
43
|
+
background-color: #F7F7F7;
|
44
|
+
border: 1px solid #CCC;
|
45
|
+
border-right-color: #999;
|
46
|
+
border-left-color: #999;
|
47
|
+
border-bottom-color: #999;
|
48
|
+
border-bottom-left-radius: 4px;
|
49
|
+
border-bottom-right-radius: 4px;
|
50
|
+
border-top-color: #DADADA;
|
51
|
+
color: #666;
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
53
|
+
}
|
54
|
+
</style>
|
55
|
+
</head>
|
56
|
+
|
57
|
+
<body>
|
58
|
+
<!-- This file lives in public/404.html -->
|
59
|
+
<div class="dialog">
|
60
|
+
<div>
|
61
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
62
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
63
|
+
</div>
|
64
|
+
<p>If you are the application owner check the logs for more information.</p>
|
65
|
+
</div>
|
66
|
+
</body>
|
67
|
+
</html>
|
@@ -0,0 +1,67 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The change you wanted was rejected (422)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
|
+
<style>
|
7
|
+
body {
|
8
|
+
background-color: #EFEFEF;
|
9
|
+
color: #2E2F30;
|
10
|
+
text-align: center;
|
11
|
+
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
|
15
|
+
div.dialog {
|
16
|
+
width: 95%;
|
17
|
+
max-width: 33em;
|
18
|
+
margin: 4em auto 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
div.dialog > div {
|
22
|
+
border: 1px solid #CCC;
|
23
|
+
border-right-color: #999;
|
24
|
+
border-left-color: #999;
|
25
|
+
border-bottom-color: #BBB;
|
26
|
+
border-top: #B00100 solid 4px;
|
27
|
+
border-top-left-radius: 9px;
|
28
|
+
border-top-right-radius: 9px;
|
29
|
+
background-color: white;
|
30
|
+
padding: 7px 12% 0;
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
32
|
+
}
|
33
|
+
|
34
|
+
h1 {
|
35
|
+
font-size: 100%;
|
36
|
+
color: #730E15;
|
37
|
+
line-height: 1.5em;
|
38
|
+
}
|
39
|
+
|
40
|
+
div.dialog > p {
|
41
|
+
margin: 0 0 1em;
|
42
|
+
padding: 1em;
|
43
|
+
background-color: #F7F7F7;
|
44
|
+
border: 1px solid #CCC;
|
45
|
+
border-right-color: #999;
|
46
|
+
border-left-color: #999;
|
47
|
+
border-bottom-color: #999;
|
48
|
+
border-bottom-left-radius: 4px;
|
49
|
+
border-bottom-right-radius: 4px;
|
50
|
+
border-top-color: #DADADA;
|
51
|
+
color: #666;
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
53
|
+
}
|
54
|
+
</style>
|
55
|
+
</head>
|
56
|
+
|
57
|
+
<body>
|
58
|
+
<!-- This file lives in public/422.html -->
|
59
|
+
<div class="dialog">
|
60
|
+
<div>
|
61
|
+
<h1>The change you wanted was rejected.</h1>
|
62
|
+
<p>Maybe you tried to change something you didn't have access to.</p>
|
63
|
+
</div>
|
64
|
+
<p>If you are the application owner check the logs for more information.</p>
|
65
|
+
</div>
|
66
|
+
</body>
|
67
|
+
</html>
|
@@ -0,0 +1,66 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>We're sorry, but something went wrong (500)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
|
+
<style>
|
7
|
+
body {
|
8
|
+
background-color: #EFEFEF;
|
9
|
+
color: #2E2F30;
|
10
|
+
text-align: center;
|
11
|
+
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
|
15
|
+
div.dialog {
|
16
|
+
width: 95%;
|
17
|
+
max-width: 33em;
|
18
|
+
margin: 4em auto 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
div.dialog > div {
|
22
|
+
border: 1px solid #CCC;
|
23
|
+
border-right-color: #999;
|
24
|
+
border-left-color: #999;
|
25
|
+
border-bottom-color: #BBB;
|
26
|
+
border-top: #B00100 solid 4px;
|
27
|
+
border-top-left-radius: 9px;
|
28
|
+
border-top-right-radius: 9px;
|
29
|
+
background-color: white;
|
30
|
+
padding: 7px 12% 0;
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
32
|
+
}
|
33
|
+
|
34
|
+
h1 {
|
35
|
+
font-size: 100%;
|
36
|
+
color: #730E15;
|
37
|
+
line-height: 1.5em;
|
38
|
+
}
|
39
|
+
|
40
|
+
div.dialog > p {
|
41
|
+
margin: 0 0 1em;
|
42
|
+
padding: 1em;
|
43
|
+
background-color: #F7F7F7;
|
44
|
+
border: 1px solid #CCC;
|
45
|
+
border-right-color: #999;
|
46
|
+
border-left-color: #999;
|
47
|
+
border-bottom-color: #999;
|
48
|
+
border-bottom-left-radius: 4px;
|
49
|
+
border-bottom-right-radius: 4px;
|
50
|
+
border-top-color: #DADADA;
|
51
|
+
color: #666;
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
53
|
+
}
|
54
|
+
</style>
|
55
|
+
</head>
|
56
|
+
|
57
|
+
<body>
|
58
|
+
<!-- This file lives in public/500.html -->
|
59
|
+
<div class="dialog">
|
60
|
+
<div>
|
61
|
+
<h1>We're sorry, but something went wrong.</h1>
|
62
|
+
</div>
|
63
|
+
<p>If you are the application owner check the logs for more information.</p>
|
64
|
+
</div>
|
65
|
+
</body>
|
66
|
+
</html>
|
File without changes
|
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/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,188 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: tegaki_jan_rails
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- mtsmfm
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-04-27 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rails
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 4.1.0
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 4.1.0
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: sqlite3
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
description: tetaki-jan font bundled for rails
|
42
|
+
email:
|
43
|
+
- mtsmfm@gmail.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- MIT-LICENSE
|
49
|
+
- Rakefile
|
50
|
+
- app/assets/fonts/tegaki-jan.woff
|
51
|
+
- app/assets/stylesheets/tegaki-jan.css.erb
|
52
|
+
- app/helpers/tegaki_jan_rails/icon_helper.rb
|
53
|
+
- lib/tasks/tegaki_jan_rails_tasks.rake
|
54
|
+
- lib/tegaki_jan_rails.rb
|
55
|
+
- lib/tegaki_jan_rails/version.rb
|
56
|
+
- test/dummy/README.rdoc
|
57
|
+
- test/dummy/Rakefile
|
58
|
+
- test/dummy/app/assets/javascripts/application.js
|
59
|
+
- test/dummy/app/assets/stylesheets/application.css
|
60
|
+
- test/dummy/app/controllers/application_controller.rb
|
61
|
+
- test/dummy/app/controllers/main_controller.rb
|
62
|
+
- test/dummy/app/helpers/application_helper.rb
|
63
|
+
- test/dummy/app/views/layouts/application.html.erb
|
64
|
+
- test/dummy/app/views/main/index.html.erb
|
65
|
+
- test/dummy/bin/bundle
|
66
|
+
- test/dummy/bin/rails
|
67
|
+
- test/dummy/bin/rake
|
68
|
+
- test/dummy/config.ru
|
69
|
+
- test/dummy/config/application.rb
|
70
|
+
- test/dummy/config/boot.rb
|
71
|
+
- test/dummy/config/database.yml
|
72
|
+
- test/dummy/config/environment.rb
|
73
|
+
- test/dummy/config/environments/development.rb
|
74
|
+
- test/dummy/config/environments/production.rb
|
75
|
+
- test/dummy/config/environments/test.rb
|
76
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
77
|
+
- test/dummy/config/initializers/cookies_serializer.rb
|
78
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
79
|
+
- test/dummy/config/initializers/inflections.rb
|
80
|
+
- test/dummy/config/initializers/mime_types.rb
|
81
|
+
- test/dummy/config/initializers/session_store.rb
|
82
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
83
|
+
- test/dummy/config/locales/en.yml
|
84
|
+
- test/dummy/config/routes.rb
|
85
|
+
- test/dummy/config/secrets.yml
|
86
|
+
- test/dummy/db/development.sqlite3
|
87
|
+
- test/dummy/log/development.log
|
88
|
+
- test/dummy/public/404.html
|
89
|
+
- test/dummy/public/422.html
|
90
|
+
- test/dummy/public/500.html
|
91
|
+
- test/dummy/public/favicon.ico
|
92
|
+
- test/dummy/tmp/cache/assets/development/sass/fbb9b73ec9795d93d9e013512caad6d38a109349/tegaki-jan.css.sass.erbc
|
93
|
+
- test/dummy/tmp/cache/assets/development/sprockets/04adcde1198774833041b75e739f35cd
|
94
|
+
- test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
|
95
|
+
- test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af
|
96
|
+
- test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953
|
97
|
+
- test/dummy/tmp/cache/assets/development/sprockets/3ab242aae19c1cbcd3f0e9d1691a74fd
|
98
|
+
- test/dummy/tmp/cache/assets/development/sprockets/4bca4fd614db200c18ff3e27f218ecb2
|
99
|
+
- test/dummy/tmp/cache/assets/development/sprockets/a0d186cbaf1c399d82657535d30c0dac
|
100
|
+
- test/dummy/tmp/cache/assets/development/sprockets/a1226b8ce84bece1e28368f18e22055d
|
101
|
+
- test/dummy/tmp/cache/assets/development/sprockets/a7d88fbf004880776db506fa7f03547a
|
102
|
+
- test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
|
103
|
+
- test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
|
104
|
+
- test/dummy/tmp/cache/assets/development/sprockets/dcc54e17ad1adedbd484a647110c66a2
|
105
|
+
- test/dummy/tmp/cache/assets/development/sprockets/eddcb0bc7a3b08d1d9d5ccda81b7750b
|
106
|
+
- test/dummy/tmp/cache/assets/development/sprockets/ef49c39b3ccbd02e602ac057cbf6b81c
|
107
|
+
- test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
|
108
|
+
- test/tegaki_jan_rails_test.rb
|
109
|
+
- test/test_helper.rb
|
110
|
+
homepage: https://github.com/tegaki_jan_rails
|
111
|
+
licenses:
|
112
|
+
- MIT
|
113
|
+
metadata: {}
|
114
|
+
post_install_message:
|
115
|
+
rdoc_options: []
|
116
|
+
require_paths:
|
117
|
+
- lib
|
118
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
119
|
+
requirements:
|
120
|
+
- - ">="
|
121
|
+
- !ruby/object:Gem::Version
|
122
|
+
version: '0'
|
123
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
124
|
+
requirements:
|
125
|
+
- - ">="
|
126
|
+
- !ruby/object:Gem::Version
|
127
|
+
version: '0'
|
128
|
+
requirements: []
|
129
|
+
rubyforge_project:
|
130
|
+
rubygems_version: 2.2.2
|
131
|
+
signing_key:
|
132
|
+
specification_version: 4
|
133
|
+
summary: tetaki-jan font bundled for rails
|
134
|
+
test_files:
|
135
|
+
- test/dummy/app/assets/javascripts/application.js
|
136
|
+
- test/dummy/app/assets/stylesheets/application.css
|
137
|
+
- test/dummy/app/controllers/application_controller.rb
|
138
|
+
- test/dummy/app/controllers/main_controller.rb
|
139
|
+
- test/dummy/app/helpers/application_helper.rb
|
140
|
+
- test/dummy/app/views/layouts/application.html.erb
|
141
|
+
- test/dummy/app/views/main/index.html.erb
|
142
|
+
- test/dummy/bin/rake
|
143
|
+
- test/dummy/bin/bundle
|
144
|
+
- test/dummy/bin/rails
|
145
|
+
- test/dummy/public/404.html
|
146
|
+
- test/dummy/public/favicon.ico
|
147
|
+
- test/dummy/public/500.html
|
148
|
+
- test/dummy/public/422.html
|
149
|
+
- test/dummy/README.rdoc
|
150
|
+
- test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
|
151
|
+
- test/dummy/tmp/cache/assets/development/sprockets/a1226b8ce84bece1e28368f18e22055d
|
152
|
+
- test/dummy/tmp/cache/assets/development/sprockets/ef49c39b3ccbd02e602ac057cbf6b81c
|
153
|
+
- test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
|
154
|
+
- test/dummy/tmp/cache/assets/development/sprockets/04adcde1198774833041b75e739f35cd
|
155
|
+
- test/dummy/tmp/cache/assets/development/sprockets/dcc54e17ad1adedbd484a647110c66a2
|
156
|
+
- test/dummy/tmp/cache/assets/development/sprockets/a0d186cbaf1c399d82657535d30c0dac
|
157
|
+
- test/dummy/tmp/cache/assets/development/sprockets/eddcb0bc7a3b08d1d9d5ccda81b7750b
|
158
|
+
- test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953
|
159
|
+
- test/dummy/tmp/cache/assets/development/sprockets/4bca4fd614db200c18ff3e27f218ecb2
|
160
|
+
- test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af
|
161
|
+
- test/dummy/tmp/cache/assets/development/sprockets/a7d88fbf004880776db506fa7f03547a
|
162
|
+
- test/dummy/tmp/cache/assets/development/sprockets/3ab242aae19c1cbcd3f0e9d1691a74fd
|
163
|
+
- test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
|
164
|
+
- test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
|
165
|
+
- test/dummy/tmp/cache/assets/development/sass/fbb9b73ec9795d93d9e013512caad6d38a109349/tegaki-jan.css.sass.erbc
|
166
|
+
- test/dummy/Rakefile
|
167
|
+
- test/dummy/log/development.log
|
168
|
+
- test/dummy/config.ru
|
169
|
+
- test/dummy/config/routes.rb
|
170
|
+
- test/dummy/config/secrets.yml
|
171
|
+
- test/dummy/config/boot.rb
|
172
|
+
- test/dummy/config/application.rb
|
173
|
+
- test/dummy/config/environment.rb
|
174
|
+
- test/dummy/config/initializers/mime_types.rb
|
175
|
+
- test/dummy/config/initializers/cookies_serializer.rb
|
176
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
177
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
178
|
+
- test/dummy/config/initializers/inflections.rb
|
179
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
180
|
+
- test/dummy/config/initializers/session_store.rb
|
181
|
+
- test/dummy/config/environments/development.rb
|
182
|
+
- test/dummy/config/environments/test.rb
|
183
|
+
- test/dummy/config/environments/production.rb
|
184
|
+
- test/dummy/config/database.yml
|
185
|
+
- test/dummy/config/locales/en.yml
|
186
|
+
- test/dummy/db/development.sqlite3
|
187
|
+
- test/test_helper.rb
|
188
|
+
- test/tegaki_jan_rails_test.rb
|