redde 0.0.8 → 0.1.0
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.
- checksums.yaml +7 -0
- data/.gitignore +4 -0
- data/.travis.yml +10 -0
- data/Gemfile +3 -3
- data/LICIENSE.md +21 -0
- data/README.md +53 -14
- data/lib/generators/redde/layout/layout_generator.rb +7 -4
- data/lib/generators/redde/layout/templates/assets/images/admin/error-label-triangle.png +0 -0
- data/lib/generators/redde/layout/templates/assets/images/admin/favicon.png +0 -0
- data/lib/generators/redde/layout/templates/assets/javascripts/admin.js +9 -76
- data/lib/generators/redde/layout/templates/assets/redactor/images/.keep +0 -0
- data/lib/generators/redde/layout/templates/assets/redactor/images/redactor/icons.png +0 -0
- data/lib/generators/redde/layout/templates/assets/redactor/javascripts/jquery-migrate-1.2.1.js +521 -0
- data/lib/generators/redde/layout/templates/assets/{images/admin → redactor/javascripts}/redactor/redactor.js.erb +9 -21
- data/lib/generators/redde/layout/templates/assets/{images/admin/redactor/css/redactor.css → redactor/stylesheets/redactor/redactor.css.scss} +1 -1
- data/lib/generators/redde/layout/templates/assets/stylesheets/admin/blocks/error-msg.sass +47 -0
- data/lib/generators/redde/layout/templates/assets/stylesheets/admin/blocks/paginate.sass +28 -0
- data/lib/generators/redde/layout/templates/assets/stylesheets/admin/blocks/pagination.scss +28 -0
- data/lib/generators/redde/layout/templates/assets/stylesheets/admin/blocks/phead-tabs.sass +27 -0
- data/lib/generators/redde/layout/templates/assets/stylesheets/admin/default.scss +0 -0
- data/lib/generators/redde/layout/templates/assets/stylesheets/admin/defaults/input.sass +35 -0
- data/lib/generators/redde/layout/templates/assets/stylesheets/admin/layouts/header.sass +50 -0
- data/lib/generators/redde/layout/templates/assets/stylesheets/admin/layouts/launchbar.sass +23 -0
- data/lib/generators/redde/layout/templates/assets/stylesheets/admin/layouts/main.sass +39 -0
- data/lib/generators/redde/layout/templates/assets/stylesheets/admin/layouts/page-header.sass +19 -0
- data/lib/generators/redde/layout/templates/assets/stylesheets/admin/layouts/page-sidebar.sass +22 -0
- data/lib/generators/redde/layout/templates/assets/stylesheets/admin/layouts/sidebar.sass +30 -0
- data/lib/generators/redde/layout/templates/assets/stylesheets/admin/reset.sass +33 -0
- data/lib/generators/redde/layout/templates/assets/stylesheets/admin.scss +9 -9
- data/lib/generators/redde/layout/templates/base/_header.html.haml +12 -0
- data/lib/generators/redde/layout/templates/base/_launchbar.html.haml +11 -0
- data/lib/generators/redde/layout/templates/base/_sidebar.html.haml +15 -0
- data/lib/generators/redde/layout/templates/base/_validate.haml +8 -0
- data/lib/generators/redde/layout/templates/base/welcome.haml +2 -0
- data/lib/generators/redde/layout/templates/controllers/base_controller.rb +5 -0
- data/lib/generators/redde/layout/templates/layouts/admin.html.haml +14 -15
- data/lib/generators/redde/scaffold/scaffold_generator.rb +8 -0
- data/lib/generators/redde/scaffold/templates/edit.html.haml +2 -6
- data/lib/generators/redde/scaffold/templates/index.html.haml +1 -1
- data/lib/redde/version.rb +1 -1
- data/lib/redde.rb +3 -0
- data/redde.gemspec +11 -10
- data/spec/dummy/.rspec +1 -0
- data/spec/dummy/README.rdoc +28 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/images/.keep +0 -0
- data/spec/dummy/app/assets/javascripts/application.js +14 -0
- data/spec/dummy/app/assets/stylesheets/application.css.scss +0 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/controllers/articles_controller.rb +12 -0
- data/spec/dummy/app/models/.keep +0 -0
- data/spec/dummy/app/models/article.rb +3 -0
- data/spec/dummy/app/models/article_category.rb +2 -0
- data/spec/dummy/app/views/articles/show.html.haml +2 -0
- data/spec/dummy/app/views/layouts/application.html.erb +15 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/config/application.rb +33 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +29 -0
- data/spec/dummy/config/environments/production.rb +80 -0
- data/spec/dummy/config/environments/test.rb +36 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +12 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +36 -0
- data/spec/dummy/config/routes.rb +3 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/20130908123351_create_articles.rb +9 -0
- data/spec/dummy/db/migrate/20140128152208_create_article_categories.rb +11 -0
- data/spec/dummy/db/schema.rb +29 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/lib/assets/.keep +0 -0
- data/spec/dummy/log/.keep +0 -0
- data/spec/dummy/log/development.log +26606 -0
- data/spec/dummy/log/test.log +53411 -0
- data/spec/dummy/public/404.html +58 -0
- data/spec/dummy/public/422.html +58 -0
- data/spec/dummy/public/500.html +57 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/{deploy_generator_spec.rb → generators/deploy_generator_spec.rb} +1 -1
- data/spec/{layout_generator_spec.rb → generators/layout_generator_spec.rb} +5 -5
- data/spec/generators/scaffold_generator_spec.rb +59 -0
- data/spec/spec_helper.rb +53 -4
- metadata +187 -155
- data/LICENSE +0 -22
- data/lib/generators/redde/layout/templates/assets/images/admin/redactor/css/docstyle.css +0 -123
- data/lib/generators/redde/layout/templates/assets/images/admin/redactor/css/style.css +0 -119
- data/lib/generators/redde/layout/templates/assets/images/admin/redactor/img/icons.png +0 -0
- data/lib/generators/redde/layout/templates/assets/images/admin/redactor/langs/by.js +0 -72
- data/lib/generators/redde/layout/templates/assets/images/admin/redactor/langs/de.js +0 -75
- data/lib/generators/redde/layout/templates/assets/images/admin/redactor/langs/es.js +0 -76
- data/lib/generators/redde/layout/templates/assets/images/admin/redactor/langs/fr.js +0 -74
- data/lib/generators/redde/layout/templates/assets/images/admin/redactor/langs/hu.js +0 -76
- data/lib/generators/redde/layout/templates/assets/images/admin/redactor/langs/it.js +0 -76
- data/lib/generators/redde/layout/templates/assets/images/admin/redactor/langs/ja.js +0 -76
- data/lib/generators/redde/layout/templates/assets/images/admin/redactor/langs/lv.js +0 -74
- data/lib/generators/redde/layout/templates/assets/images/admin/redactor/langs/nl.js +0 -76
- data/lib/generators/redde/layout/templates/assets/images/admin/redactor/langs/pl.js +0 -75
- data/lib/generators/redde/layout/templates/assets/images/admin/redactor/langs/pt_br.js +0 -81
- data/lib/generators/redde/layout/templates/assets/images/admin/redactor/langs/sq.js +0 -76
- data/lib/generators/redde/layout/templates/assets/images/admin/redactor/langs/tr.js +0 -76
- data/lib/generators/redde/layout/templates/assets/images/admin/redactor/langs/ua.js +0 -75
- data/lib/generators/redde/layout/templates/assets/images/admin/redactor/langs/zh_cn.js +0 -77
- data/lib/generators/redde/layout/templates/assets/images/admin/redactor/redactor.min.js +0 -1
- data/lib/generators/redde/layout/templates/assets/images/admin/redactor/toolbars/mini.js +0 -103
- data/lib/generators/redde/layout/templates/assets/images/admin/reddebox/_jquery.reddebox.js.erb +0 -214
- data/lib/generators/redde/layout/templates/assets/images/admin/reddebox/close.png +0 -0
- data/lib/generators/redde/layout/templates/assets/images/admin/reddebox/jquery.reddebox.js.erb +0 -246
- data/lib/generators/redde/layout/templates/assets/images/admin/reddebox/jquery.reddebox.scss +0 -31
- data/lib/generators/redde/layout/templates/assets/images/admin/reddebox/next.png +0 -0
- data/lib/generators/redde/layout/templates/assets/images/admin/reddebox/prev.png +0 -0
- data/lib/generators/redde/layout/templates/assets/images/admin/uploadifive/change-log.txt +0 -19
- data/lib/generators/redde/layout/templates/assets/images/admin/uploadifive/check-exists.php +0 -15
- data/lib/generators/redde/layout/templates/assets/images/admin/uploadifive/index.php +0 -50
- data/lib/generators/redde/layout/templates/assets/images/admin/uploadifive/jquery.uploadifive.js +0 -888
- data/lib/generators/redde/layout/templates/assets/images/admin/uploadifive/jquery.uploadifive.min.js +0 -6
- data/lib/generators/redde/layout/templates/assets/images/admin/uploadifive/license-standard.txt +0 -71
- data/lib/generators/redde/layout/templates/assets/images/admin/uploadifive/uploadifive-cancel.png +0 -0
- data/lib/generators/redde/layout/templates/assets/images/admin/uploadifive/uploadifive-image-only.php +0 -66
- data/lib/generators/redde/layout/templates/assets/images/admin/uploadifive/uploadifive.css +0 -100
- data/lib/generators/redde/layout/templates/assets/images/admin/uploadifive/uploadifive.php +0 -33
- data/lib/generators/redde/layout/templates/assets/images/admin/uploadify/#swfobject.js +0 -4
- data/lib/generators/redde/layout/templates/assets/images/admin/uploadify/cancel.png +0 -0
- data/lib/generators/redde/layout/templates/assets/images/admin/uploadify/jquery.uploadify.min.js +0 -315
- data/lib/generators/redde/layout/templates/assets/images/admin/uploadify/uploadify-cancel.png +0 -0
- data/lib/generators/redde/layout/templates/assets/images/admin/uploadify/uploadify.css +0 -66
- data/lib/generators/redde/layout/templates/assets/images/admin/uploadify/uploadify.swf +0 -0
- data/lib/generators/redde/layout/templates/assets/javascripts/admin/swfobject.js +0 -4
- data/lib/generators/redde/layout/templates/assets/javascripts/admin/zen_textarea.min.js +0 -17
- data/lib/generators/redde/layout/templates/assets/stylesheets/admin/_reset.scss +0 -32
- data/lib/generators/redde/layout/templates/assets/stylesheets/admin/defaults/_input.scss +0 -43
- data/lib/generators/redde/layout/templates/assets/stylesheets/admin/layouts/_header.scss +0 -57
- data/lib/generators/redde/layout/templates/assets/stylesheets/admin/layouts/_launchbar.scss +0 -35
- data/lib/generators/redde/layout/templates/assets/stylesheets/admin/layouts/_main.scss +0 -59
- data/lib/generators/redde/layout/templates/assets/stylesheets/admin/layouts/_sidebar.scss +0 -35
- data/lib/generators/redde/layout/templates/shared/_header.html.haml +0 -13
- data/lib/generators/redde/layout/templates/shared/_launchbar.html.haml +0 -9
- data/lib/generators/redde/layout/templates/shared/_sidebar.html.haml +0 -9
- data/spec/scaffold_generator_spec.rb +0 -25
- /data/lib/generators/redde/layout/templates/assets/{images/admin → redactor/images}/redactor/plugins/file.html +0 -0
- /data/lib/generators/redde/layout/templates/assets/{images/admin → redactor/images}/redactor/plugins/image.html +0 -0
- /data/lib/generators/redde/layout/templates/assets/{images/admin → redactor/images}/redactor/plugins/image_edit.html +0 -0
- /data/lib/generators/redde/layout/templates/assets/{images/admin → redactor/images}/redactor/plugins/link.html +0 -0
- /data/lib/generators/redde/layout/templates/assets/{images/admin → redactor/images}/redactor/plugins/table.html +0 -0
- /data/lib/generators/redde/layout/templates/assets/{images/admin → redactor/images}/redactor/plugins/video.html +0 -0
- /data/lib/generators/redde/layout/templates/assets/{images/admin → redactor/javascripts}/redactor/langs/en.js +0 -0
- /data/lib/generators/redde/layout/templates/assets/{images/admin → redactor/javascripts}/redactor/langs/ru.js +0 -0
- /data/lib/generators/redde/layout/templates/assets/{images/admin → redactor/javascripts}/redactor/toolbars/default.js +0 -0
- /data/lib/generators/redde/layout/templates/assets/{images/admin/redactor/css → redactor/stylesheets/redactor}/wym.css +0 -0
- /data/lib/generators/redde/layout/templates/assets/stylesheets/admin/blocks/{_list.scss → list.scss} +0 -0
- /data/lib/generators/redde/layout/templates/assets/stylesheets/admin/blocks/{_notice.scss → notice.scss} +0 -0
- /data/lib/generators/redde/layout/templates/assets/stylesheets/admin/blocks/{_orders.scss → orders.scss} +0 -0
- /data/lib/generators/redde/layout/templates/assets/stylesheets/admin/blocks/{_partners.scss → partners.scss} +0 -0
- /data/lib/generators/redde/layout/templates/assets/stylesheets/admin/blocks/{_photos.scss → photos.scss} +0 -0
- /data/lib/generators/redde/layout/templates/assets/stylesheets/admin/blocks/{_sortable.scss → sortable.scss} +0 -0
- /data/lib/generators/redde/layout/templates/assets/stylesheets/admin/defaults/{_table.scss → table.scss} +0 -0
- /data/lib/generators/redde/layout/templates/assets/stylesheets/admin/layouts/{_login.scss → login.scss} +0 -0
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>The page you were looking for doesn't exist (404)</title>
|
|
5
|
+
<style>
|
|
6
|
+
body {
|
|
7
|
+
background-color: #EFEFEF;
|
|
8
|
+
color: #2E2F30;
|
|
9
|
+
text-align: center;
|
|
10
|
+
font-family: arial, sans-serif;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
div.dialog {
|
|
14
|
+
width: 25em;
|
|
15
|
+
margin: 4em auto 0 auto;
|
|
16
|
+
border: 1px solid #CCC;
|
|
17
|
+
border-right-color: #999;
|
|
18
|
+
border-left-color: #999;
|
|
19
|
+
border-bottom-color: #BBB;
|
|
20
|
+
border-top: #B00100 solid 4px;
|
|
21
|
+
border-top-left-radius: 9px;
|
|
22
|
+
border-top-right-radius: 9px;
|
|
23
|
+
background-color: white;
|
|
24
|
+
padding: 7px 4em 0 4em;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
h1 {
|
|
28
|
+
font-size: 100%;
|
|
29
|
+
color: #730E15;
|
|
30
|
+
line-height: 1.5em;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
body > p {
|
|
34
|
+
width: 33em;
|
|
35
|
+
margin: 0 auto 1em;
|
|
36
|
+
padding: 1em 0;
|
|
37
|
+
background-color: #F7F7F7;
|
|
38
|
+
border: 1px solid #CCC;
|
|
39
|
+
border-right-color: #999;
|
|
40
|
+
border-bottom-color: #999;
|
|
41
|
+
border-bottom-left-radius: 4px;
|
|
42
|
+
border-bottom-right-radius: 4px;
|
|
43
|
+
border-top-color: #DADADA;
|
|
44
|
+
color: #666;
|
|
45
|
+
box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
|
|
46
|
+
}
|
|
47
|
+
</style>
|
|
48
|
+
</head>
|
|
49
|
+
|
|
50
|
+
<body>
|
|
51
|
+
<!-- This file lives in public/404.html -->
|
|
52
|
+
<div class="dialog">
|
|
53
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
|
54
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
|
55
|
+
</div>
|
|
56
|
+
<p>If you are the application owner check the logs for more information.</p>
|
|
57
|
+
</body>
|
|
58
|
+
</html>
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>The change you wanted was rejected (422)</title>
|
|
5
|
+
<style>
|
|
6
|
+
body {
|
|
7
|
+
background-color: #EFEFEF;
|
|
8
|
+
color: #2E2F30;
|
|
9
|
+
text-align: center;
|
|
10
|
+
font-family: arial, sans-serif;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
div.dialog {
|
|
14
|
+
width: 25em;
|
|
15
|
+
margin: 4em auto 0 auto;
|
|
16
|
+
border: 1px solid #CCC;
|
|
17
|
+
border-right-color: #999;
|
|
18
|
+
border-left-color: #999;
|
|
19
|
+
border-bottom-color: #BBB;
|
|
20
|
+
border-top: #B00100 solid 4px;
|
|
21
|
+
border-top-left-radius: 9px;
|
|
22
|
+
border-top-right-radius: 9px;
|
|
23
|
+
background-color: white;
|
|
24
|
+
padding: 7px 4em 0 4em;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
h1 {
|
|
28
|
+
font-size: 100%;
|
|
29
|
+
color: #730E15;
|
|
30
|
+
line-height: 1.5em;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
body > p {
|
|
34
|
+
width: 33em;
|
|
35
|
+
margin: 0 auto 1em;
|
|
36
|
+
padding: 1em 0;
|
|
37
|
+
background-color: #F7F7F7;
|
|
38
|
+
border: 1px solid #CCC;
|
|
39
|
+
border-right-color: #999;
|
|
40
|
+
border-bottom-color: #999;
|
|
41
|
+
border-bottom-left-radius: 4px;
|
|
42
|
+
border-bottom-right-radius: 4px;
|
|
43
|
+
border-top-color: #DADADA;
|
|
44
|
+
color: #666;
|
|
45
|
+
box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
|
|
46
|
+
}
|
|
47
|
+
</style>
|
|
48
|
+
</head>
|
|
49
|
+
|
|
50
|
+
<body>
|
|
51
|
+
<!-- This file lives in public/422.html -->
|
|
52
|
+
<div class="dialog">
|
|
53
|
+
<h1>The change you wanted was rejected.</h1>
|
|
54
|
+
<p>Maybe you tried to change something you didn't have access to.</p>
|
|
55
|
+
</div>
|
|
56
|
+
<p>If you are the application owner check the logs for more information.</p>
|
|
57
|
+
</body>
|
|
58
|
+
</html>
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>We're sorry, but something went wrong (500)</title>
|
|
5
|
+
<style>
|
|
6
|
+
body {
|
|
7
|
+
background-color: #EFEFEF;
|
|
8
|
+
color: #2E2F30;
|
|
9
|
+
text-align: center;
|
|
10
|
+
font-family: arial, sans-serif;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
div.dialog {
|
|
14
|
+
width: 25em;
|
|
15
|
+
margin: 4em auto 0 auto;
|
|
16
|
+
border: 1px solid #CCC;
|
|
17
|
+
border-right-color: #999;
|
|
18
|
+
border-left-color: #999;
|
|
19
|
+
border-bottom-color: #BBB;
|
|
20
|
+
border-top: #B00100 solid 4px;
|
|
21
|
+
border-top-left-radius: 9px;
|
|
22
|
+
border-top-right-radius: 9px;
|
|
23
|
+
background-color: white;
|
|
24
|
+
padding: 7px 4em 0 4em;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
h1 {
|
|
28
|
+
font-size: 100%;
|
|
29
|
+
color: #730E15;
|
|
30
|
+
line-height: 1.5em;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
body > p {
|
|
34
|
+
width: 33em;
|
|
35
|
+
margin: 0 auto 1em;
|
|
36
|
+
padding: 1em 0;
|
|
37
|
+
background-color: #F7F7F7;
|
|
38
|
+
border: 1px solid #CCC;
|
|
39
|
+
border-right-color: #999;
|
|
40
|
+
border-bottom-color: #999;
|
|
41
|
+
border-bottom-left-radius: 4px;
|
|
42
|
+
border-bottom-right-radius: 4px;
|
|
43
|
+
border-top-color: #DADADA;
|
|
44
|
+
color: #666;
|
|
45
|
+
box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
|
|
46
|
+
}
|
|
47
|
+
</style>
|
|
48
|
+
</head>
|
|
49
|
+
|
|
50
|
+
<body>
|
|
51
|
+
<!-- This file lives in public/500.html -->
|
|
52
|
+
<div class="dialog">
|
|
53
|
+
<h1>We're sorry, but something went wrong.</h1>
|
|
54
|
+
</div>
|
|
55
|
+
<p>If you are the application owner check the logs for more information.</p>
|
|
56
|
+
</body>
|
|
57
|
+
</html>
|
|
File without changes
|
|
@@ -2,7 +2,7 @@ require 'spec_helper'
|
|
|
2
2
|
|
|
3
3
|
describe Redde::Generators::DeployGenerator do
|
|
4
4
|
include GeneratorSpec::TestCase
|
|
5
|
-
destination File.expand_path("
|
|
5
|
+
destination File.expand_path("../../../tmp", __FILE__)
|
|
6
6
|
arguments %w(127.0.0.1 redde.ru)
|
|
7
7
|
|
|
8
8
|
before(:all) do
|
|
@@ -2,7 +2,7 @@ require 'spec_helper'
|
|
|
2
2
|
|
|
3
3
|
describe Redde::Generators::LayoutGenerator do
|
|
4
4
|
include GeneratorSpec::TestCase
|
|
5
|
-
destination File.expand_path("
|
|
5
|
+
destination File.expand_path("../../../tmp", __FILE__)
|
|
6
6
|
arguments %w(something)
|
|
7
7
|
|
|
8
8
|
before(:all) do
|
|
@@ -16,15 +16,15 @@ describe Redde::Generators::LayoutGenerator do
|
|
|
16
16
|
|
|
17
17
|
describe "layout" do
|
|
18
18
|
|
|
19
|
-
it "
|
|
19
|
+
it "Generates admin and login layouts with js and css" do
|
|
20
20
|
# check layouts
|
|
21
21
|
assert_file "app/views/layouts/admin.html.haml"
|
|
22
22
|
assert_file "app/views/layouts/login.html.haml"
|
|
23
23
|
|
|
24
24
|
# check shared
|
|
25
|
-
assert_file "app/views/admin/
|
|
26
|
-
assert_file "app/views/admin/
|
|
27
|
-
assert_file "app/views/admin/
|
|
25
|
+
assert_file "app/views/admin/base/_launchbar.html.haml"
|
|
26
|
+
assert_file "app/views/admin/base/_sidebar.html.haml"
|
|
27
|
+
assert_file "app/views/admin/base/_header.html.haml"
|
|
28
28
|
|
|
29
29
|
# check js and css
|
|
30
30
|
assert_file "app/assets/javascripts/admin.js"
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
require 'spec_helper'
|
|
2
|
+
|
|
3
|
+
describe Redde::Generators::ScaffoldGenerator do
|
|
4
|
+
include GeneratorSpec::TestCase
|
|
5
|
+
destination File.expand_path("../../../tmp", __FILE__)
|
|
6
|
+
arguments ['Articles']
|
|
7
|
+
|
|
8
|
+
before(:all) do
|
|
9
|
+
prepare_destination
|
|
10
|
+
run_generator
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
after(:all) do
|
|
14
|
+
FileUtils.rm_rf 'tmp'
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
let(:args) { ["ArticleCategory"] }
|
|
18
|
+
let(:generator) { Redde::Generators::ScaffoldGenerator.new(args) }
|
|
19
|
+
|
|
20
|
+
context "METHODS" do
|
|
21
|
+
it "gets controller_routing_path" do
|
|
22
|
+
expect(generator.send(:controller_routing_path)).to eq "article_category"
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
it "gets singular_controller_routing_path" do
|
|
26
|
+
expect(generator.send(:singular_controller_routing_path)).to eq "article_category"
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
it "gets model_name" do
|
|
30
|
+
expect(generator.send(:model_name)).to eq "::ArticleCategory"
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
it "gets plural_model_name" do
|
|
34
|
+
expect(generator.send(:plural_model_name)).to eq "::ArticleCategories"
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
it "gets resource_name" do
|
|
38
|
+
expect(generator.send(:resource_name)).to eq "article_category"
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
it "gets plural_resource_name" do
|
|
42
|
+
expect(generator.send(:plural_resource_name)).to eq "article_categories"
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
it "gets index header" do
|
|
46
|
+
expect(generator.send(:index_header)).to eq "Article categories"
|
|
47
|
+
end
|
|
48
|
+
end # end context "METHODS"
|
|
49
|
+
|
|
50
|
+
context "INTEGRATION" do
|
|
51
|
+
|
|
52
|
+
it "Generates admin views" do
|
|
53
|
+
assert_file "app/views/admin/articles/index.html.haml"
|
|
54
|
+
assert_file "app/views/admin/articles/edit.html.haml"
|
|
55
|
+
end
|
|
56
|
+
|
|
57
|
+
end # end describe "VIEWS"
|
|
58
|
+
|
|
59
|
+
end
|
data/spec/spec_helper.rb
CHANGED
|
@@ -1,10 +1,59 @@
|
|
|
1
|
+
ENV["RAILS_ENV"] ||= 'test'
|
|
2
|
+
require File.expand_path("../dummy/config/environment", __FILE__)
|
|
3
|
+
|
|
1
4
|
require 'bundler/setup'
|
|
2
5
|
require 'rails/all'
|
|
3
6
|
require 'active_record'
|
|
4
|
-
|
|
7
|
+
|
|
8
|
+
require 'rspec/rails'
|
|
9
|
+
require 'rspec/autorun'
|
|
10
|
+
|
|
11
|
+
require 'factory_girl'
|
|
12
|
+
|
|
13
|
+
|
|
5
14
|
require 'generator_spec/test_case'
|
|
6
|
-
require '
|
|
7
|
-
require 'generators/redde/scaffold/scaffold_generator'
|
|
8
|
-
require 'generators/redde/deploy/deploy_generator'
|
|
15
|
+
require 'redde'
|
|
9
16
|
Dir[Pathname.new(File.expand_path('../', __FILE__)).join('support/**/*.rb')].each {|f| require f}
|
|
10
17
|
|
|
18
|
+
# Requires supporting ruby files with custom matchers and macros, etc,
|
|
19
|
+
# in spec/support/ and its subdirectories.
|
|
20
|
+
Dir[Rails.root.join("spec/support/**/*.rb")].each { |f| require f }
|
|
21
|
+
|
|
22
|
+
# Checks for pending migrations before tests are run.
|
|
23
|
+
# If you are not using ActiveRecord, you can remove this line.
|
|
24
|
+
ActiveRecord::Migration.check_pending! if defined?(ActiveRecord::Migration)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
RSpec.configure do |config|
|
|
28
|
+
# ## Mock Framework
|
|
29
|
+
#
|
|
30
|
+
# If you prefer to use mocha, flexmock or RR, uncomment the appropriate line:
|
|
31
|
+
#
|
|
32
|
+
# config.mock_with :mocha
|
|
33
|
+
# config.mock_with :flexmock
|
|
34
|
+
# config.mock_with :rr
|
|
35
|
+
|
|
36
|
+
# config.after(:all) do
|
|
37
|
+
# if Rails.env.test?
|
|
38
|
+
# FileUtils.rm_rf(Dir["#{Rails.root}/public/uploads"])
|
|
39
|
+
# end
|
|
40
|
+
# end
|
|
41
|
+
|
|
42
|
+
config.include FactoryGirl::Syntax::Methods
|
|
43
|
+
|
|
44
|
+
# If you're not using ActiveRecord, or you'd prefer not to run each of your
|
|
45
|
+
# examples within a transaction, remove the following line or assign false
|
|
46
|
+
# instead of true.
|
|
47
|
+
config.use_transactional_fixtures = false
|
|
48
|
+
|
|
49
|
+
# If true, the base class of anonymous controllers will be inferred
|
|
50
|
+
# automatically. This will be the default behavior in future versions of
|
|
51
|
+
# rspec-rails.
|
|
52
|
+
config.infer_base_class_for_anonymous_controllers = false
|
|
53
|
+
|
|
54
|
+
# Run specs in random order to surface order dependencies. If you find an
|
|
55
|
+
# order dependency and want to debug it, you can fix the order by providing
|
|
56
|
+
# the seed, which is printed after each run.
|
|
57
|
+
# --seed 1234
|
|
58
|
+
config.order = "random"
|
|
59
|
+
end
|