rails_page_comment 0.0.3 → 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 +4 -4
- data/MIT-LICENSE +20 -20
- data/Rakefile +34 -34
- data/app/assets/javascripts/rails_page_comment/application.js +13 -13
- data/app/assets/javascripts/rails_page_comment/page_comments.js +2 -2
- data/app/assets/stylesheets/rails_page_comment/application.css +15 -15
- data/app/assets/stylesheets/rails_page_comment/page_comments.css +4 -4
- data/app/assets/stylesheets/scaffold.css +56 -56
- data/app/controllers/rails_page_comment/application_controller.rb +11 -4
- data/app/controllers/rails_page_comment/page_comments_controller.rb +69 -62
- data/app/helpers/rails_page_comment/application_helper.rb +4 -4
- data/app/helpers/rails_page_comment/page_comments_helper.rb +4 -4
- data/app/mailers/rails_page_comment/notify_changes.rb +15 -0
- data/app/models/rails_page_comment/page_comment.rb +4 -4
- data/app/views/layouts/rails_page_comment/application.html.erb +14 -14
- data/app/views/rails_page_comment/notify_changes/notice_changes.html.erb +2 -0
- data/app/views/rails_page_comment/page_comments/_form.html.erb +13 -13
- data/app/views/rails_page_comment/page_comments/index.html.erb +27 -27
- data/app/views/rails_page_comment/page_comments/show.html.erb +14 -14
- data/config/routes.rb +5 -5
- data/db/migrate/20141105030748_create_rails_page_comment_page_comments.rb +10 -10
- data/lib/generators/rails_page_comment/install_generator.rb +51 -51
- data/lib/generators/rails_page_comment/mailer_views_generator.rb +36 -0
- data/lib/generators/rails_page_comment/templates/active_record/rails_page_comment/page_comment.rb +3 -3
- data/lib/generators/rails_page_comment/templates/mailer/notice_changes.html.erb +2 -0
- data/lib/generators/rails_page_comment/templates/rails_page_comment.rb +20 -7
- data/lib/rails_page_comment.rb +38 -20
- data/lib/rails_page_comment/controller_additions.rb +38 -34
- data/lib/rails_page_comment/controller_resource.rb +52 -52
- data/lib/rails_page_comment/engine.rb +10 -10
- data/lib/rails_page_comment/version.rb +3 -3
- data/lib/tasks/rails_page_comment_tasks.rake +4 -4
- data/test/controllers/rails_page_comment/page_comments_controller_test.rb +51 -51
- data/test/dummy/README.rdoc +28 -28
- data/test/dummy/Rakefile +6 -6
- data/test/dummy/app/assets/javascripts/application.js +13 -13
- data/test/dummy/app/assets/stylesheets/application.css +15 -15
- data/test/dummy/app/controllers/application_controller.rb +5 -5
- data/test/dummy/app/helpers/application_helper.rb +2 -2
- data/test/dummy/app/views/layouts/application.html.erb +14 -14
- data/test/dummy/bin/bundle +3 -3
- data/test/dummy/bin/rails +4 -4
- data/test/dummy/bin/rake +4 -4
- data/test/dummy/config.ru +4 -4
- data/test/dummy/config/application.rb +23 -23
- data/test/dummy/config/boot.rb +5 -5
- data/test/dummy/config/database.yml +25 -25
- data/test/dummy/config/environment.rb +5 -5
- data/test/dummy/config/environments/development.rb +37 -37
- data/test/dummy/config/environments/production.rb +82 -82
- data/test/dummy/config/environments/test.rb +39 -39
- data/test/dummy/config/initializers/assets.rb +8 -8
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -7
- data/test/dummy/config/initializers/cookies_serializer.rb +2 -2
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -4
- data/test/dummy/config/initializers/inflections.rb +16 -16
- data/test/dummy/config/initializers/mime_types.rb +4 -4
- data/test/dummy/config/initializers/session_store.rb +3 -3
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -14
- data/test/dummy/config/locales/en.yml +23 -23
- data/test/dummy/config/routes.rb +4 -4
- data/test/dummy/config/secrets.yml +22 -22
- data/test/dummy/public/404.html +67 -67
- data/test/dummy/public/422.html +67 -67
- data/test/dummy/public/500.html +66 -66
- data/test/fixtures/rails_page_comment/page_comments.yml +9 -9
- data/test/helpers/rails_page_comment/page_comments_helper_test.rb +6 -6
- data/test/integration/navigation_test.rb +10 -10
- data/test/mailers/previews/rails_page_comment/notify_changes_preview.rb +6 -0
- data/test/mailers/rails_page_comment/notify_changes_test.rb +9 -0
- data/test/models/rails_page_comment/page_comment_test.rb +9 -9
- data/test/rails_page_comment_test.rb +7 -7
- data/test/test_helper.rb +15 -15
- metadata +11 -4
- data/README.rdoc +0 -45
data/test/dummy/public/422.html
CHANGED
@@ -1,67 +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>
|
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>
|
data/test/dummy/public/500.html
CHANGED
@@ -1,66 +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>
|
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>
|
@@ -1,9 +1,9 @@
|
|
1
|
-
# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
|
2
|
-
|
3
|
-
one:
|
4
|
-
requst_uri: MyString
|
5
|
-
content: MyText
|
6
|
-
|
7
|
-
two:
|
8
|
-
requst_uri: MyString
|
9
|
-
content: MyText
|
1
|
+
# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
|
2
|
+
|
3
|
+
one:
|
4
|
+
requst_uri: MyString
|
5
|
+
content: MyText
|
6
|
+
|
7
|
+
two:
|
8
|
+
requst_uri: MyString
|
9
|
+
content: MyText
|
@@ -1,6 +1,6 @@
|
|
1
|
-
require 'test_helper'
|
2
|
-
|
3
|
-
module RailsPageComment
|
4
|
-
class PageCommentsHelperTest < ActionView::TestCase
|
5
|
-
end
|
6
|
-
end
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
module RailsPageComment
|
4
|
+
class PageCommentsHelperTest < ActionView::TestCase
|
5
|
+
end
|
6
|
+
end
|
@@ -1,10 +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
|
-
|
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
|
+
|
@@ -1,9 +1,9 @@
|
|
1
|
-
require 'test_helper'
|
2
|
-
|
3
|
-
module RailsPageComment
|
4
|
-
class PageCommentTest < ActiveSupport::TestCase
|
5
|
-
# test "the truth" do
|
6
|
-
# assert true
|
7
|
-
# end
|
8
|
-
end
|
9
|
-
end
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
module RailsPageComment
|
4
|
+
class PageCommentTest < ActiveSupport::TestCase
|
5
|
+
# test "the truth" do
|
6
|
+
# assert true
|
7
|
+
# end
|
8
|
+
end
|
9
|
+
end
|
@@ -1,7 +1,7 @@
|
|
1
|
-
require 'test_helper'
|
2
|
-
|
3
|
-
class RailsPageCommentTest < ActiveSupport::TestCase
|
4
|
-
test "truth" do
|
5
|
-
assert_kind_of Module, RailsPageComment
|
6
|
-
end
|
7
|
-
end
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
class RailsPageCommentTest < ActiveSupport::TestCase
|
4
|
+
test "truth" do
|
5
|
+
assert_kind_of Module, RailsPageComment
|
6
|
+
end
|
7
|
+
end
|
data/test/test_helper.rb
CHANGED
@@ -1,15 +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
|
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
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails_page_comment
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- xuzh
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-11-
|
11
|
+
date: 2014-11-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -24,7 +24,7 @@ dependencies:
|
|
24
24
|
- - ~>
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: 4.1.2
|
27
|
-
description: Comment Rails Page.
|
27
|
+
description: Comment Rails Page. Send email when page's comment changed.
|
28
28
|
email:
|
29
29
|
- xuzh86@gmail.com
|
30
30
|
executables: []
|
@@ -40,8 +40,10 @@ files:
|
|
40
40
|
- app/controllers/rails_page_comment/page_comments_controller.rb
|
41
41
|
- app/helpers/rails_page_comment/application_helper.rb
|
42
42
|
- app/helpers/rails_page_comment/page_comments_helper.rb
|
43
|
+
- app/mailers/rails_page_comment/notify_changes.rb
|
43
44
|
- app/models/rails_page_comment/page_comment.rb
|
44
45
|
- app/views/layouts/rails_page_comment/application.html.erb
|
46
|
+
- app/views/rails_page_comment/notify_changes/notice_changes.html.erb
|
45
47
|
- app/views/rails_page_comment/page_comments/edit.html.erb
|
46
48
|
- app/views/rails_page_comment/page_comments/edit.js.erb
|
47
49
|
- app/views/rails_page_comment/page_comments/index.html.erb
|
@@ -51,8 +53,10 @@ files:
|
|
51
53
|
- config/routes.rb
|
52
54
|
- db/migrate/20141105030748_create_rails_page_comment_page_comments.rb
|
53
55
|
- lib/generators/rails_page_comment/install_generator.rb
|
56
|
+
- lib/generators/rails_page_comment/mailer_views_generator.rb
|
54
57
|
- lib/generators/rails_page_comment/templates/active_record/migration.rb
|
55
58
|
- lib/generators/rails_page_comment/templates/active_record/rails_page_comment/page_comment.rb
|
59
|
+
- lib/generators/rails_page_comment/templates/mailer/notice_changes.html.erb
|
56
60
|
- lib/generators/rails_page_comment/templates/rails_page_comment.rb
|
57
61
|
- lib/rails_page_comment/controller_additions.rb
|
58
62
|
- lib/rails_page_comment/controller_resource.rb
|
@@ -62,7 +66,6 @@ files:
|
|
62
66
|
- lib/tasks/rails_page_comment_tasks.rake
|
63
67
|
- MIT-LICENSE
|
64
68
|
- Rakefile
|
65
|
-
- README.rdoc
|
66
69
|
- test/controllers/rails_page_comment/page_comments_controller_test.rb
|
67
70
|
- test/dummy/app/assets/javascripts/application.js
|
68
71
|
- test/dummy/app/assets/stylesheets/application.css
|
@@ -101,6 +104,8 @@ files:
|
|
101
104
|
- test/fixtures/rails_page_comment/page_comments.yml
|
102
105
|
- test/helpers/rails_page_comment/page_comments_helper_test.rb
|
103
106
|
- test/integration/navigation_test.rb
|
107
|
+
- test/mailers/previews/rails_page_comment/notify_changes_preview.rb
|
108
|
+
- test/mailers/rails_page_comment/notify_changes_test.rb
|
104
109
|
- test/models/rails_page_comment/page_comment_test.rb
|
105
110
|
- test/rails_page_comment_test.rb
|
106
111
|
- test/test_helper.rb
|
@@ -167,6 +172,8 @@ test_files:
|
|
167
172
|
- test/fixtures/rails_page_comment/page_comments.yml
|
168
173
|
- test/helpers/rails_page_comment/page_comments_helper_test.rb
|
169
174
|
- test/integration/navigation_test.rb
|
175
|
+
- test/mailers/previews/rails_page_comment/notify_changes_preview.rb
|
176
|
+
- test/mailers/rails_page_comment/notify_changes_test.rb
|
170
177
|
- test/models/rails_page_comment/page_comment_test.rb
|
171
178
|
- test/rails_page_comment_test.rb
|
172
179
|
- test/test_helper.rb
|