notee 0.1.0 → 0.2.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.
Files changed (106) hide show
  1. checksums.yaml +4 -4
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +44 -4
  4. data/app/assets/javascripts/application.js +14 -0
  5. data/app/assets/javascripts/notee/application.js +47366 -0
  6. data/app/assets/stylesheets/notee/application.css +15 -0
  7. data/app/assets/stylesheets/notee/images.css +4 -0
  8. data/app/assets/stylesheets/notee/posts.css +4 -0
  9. data/app/assets/stylesheets/notee/preview.scss +214 -0
  10. data/app/assets/stylesheets/scaffold.css +56 -0
  11. data/app/controllers/notee/application_controller.rb +24 -0
  12. data/app/controllers/notee/categories_controller.rb +55 -0
  13. data/app/controllers/notee/images_controller.rb +48 -0
  14. data/app/controllers/notee/posts_controller.rb +75 -0
  15. data/app/controllers/notee/tokens_controller.rb +30 -0
  16. data/app/helpers/notee/application_helper.rb +4 -0
  17. data/app/helpers/notee/categories_helper.rb +4 -0
  18. data/app/helpers/notee/images_helper.rb +4 -0
  19. data/app/helpers/notee/posts_helper.rb +4 -0
  20. data/app/models/notee/category.rb +4 -0
  21. data/app/models/notee/image.rb +24 -0
  22. data/app/models/notee/post.rb +4 -0
  23. data/app/models/notee/token.rb +18 -0
  24. data/app/views/layouts/notee/application.html.erb +14 -0
  25. data/app/views/notee/posts/notee.html.erb +1 -0
  26. data/app/views/notee/tokens/new.html.erb +5 -0
  27. data/config/routes.rb +12 -0
  28. data/db/migrate/20160605141437_create_notee_posts.rb +29 -0
  29. data/db/migrate/20160605141510_create_notee_categories.rb +15 -0
  30. data/db/migrate/20160605141547_create_notee_images.rb +14 -0
  31. data/db/migrate/20160608102012_create_notee_tokens.rb +12 -0
  32. data/lib/notee.rb +4 -2
  33. data/lib/notee/configuration.rb +28 -0
  34. data/lib/notee/engine.rb +13 -0
  35. data/lib/notee/version.rb +1 -1
  36. data/lib/tasks/notee_tasks.rake +71 -0
  37. data/test/controllers/notee/categories_controller_test.rb +52 -0
  38. data/test/controllers/notee/images_controller_test.rb +52 -0
  39. data/test/controllers/notee/posts_controller_test.rb +52 -0
  40. data/test/dummy/README.rdoc +28 -0
  41. data/test/dummy/Rakefile +6 -0
  42. data/test/dummy/app/assets/javascripts/application.js +13 -0
  43. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  44. data/test/dummy/app/controllers/application_controller.rb +5 -0
  45. data/test/dummy/app/helpers/application_helper.rb +2 -0
  46. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  47. data/test/dummy/bin/bundle +3 -0
  48. data/test/dummy/bin/rails +4 -0
  49. data/test/dummy/bin/rake +4 -0
  50. data/test/dummy/bin/setup +29 -0
  51. data/test/dummy/config.ru +4 -0
  52. data/test/dummy/config/application.rb +26 -0
  53. data/test/dummy/config/boot.rb +5 -0
  54. data/test/dummy/config/database.yml +25 -0
  55. data/test/dummy/config/environment.rb +5 -0
  56. data/test/dummy/config/environments/development.rb +41 -0
  57. data/test/dummy/config/environments/production.rb +79 -0
  58. data/test/dummy/config/environments/test.rb +42 -0
  59. data/test/dummy/config/initializers/assets.rb +11 -0
  60. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  61. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  62. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  63. data/test/dummy/config/initializers/inflections.rb +16 -0
  64. data/test/dummy/config/initializers/mime_types.rb +4 -0
  65. data/test/dummy/config/initializers/session_store.rb +3 -0
  66. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  67. data/test/dummy/config/locales/en.yml +23 -0
  68. data/test/dummy/config/routes.rb +4 -0
  69. data/test/dummy/config/secrets.yml +23 -0
  70. data/test/dummy/db/development.sqlite3 +0 -0
  71. data/test/dummy/db/schema.rb +16 -0
  72. data/test/dummy/db/test.sqlite3 +0 -0
  73. data/test/dummy/log/development.log +3259 -0
  74. data/test/dummy/public/404.html +67 -0
  75. data/test/dummy/public/422.html +67 -0
  76. data/test/dummy/public/500.html +66 -0
  77. data/test/dummy/public/favicon.ico +0 -0
  78. data/test/fixtures/notee/categories.yml +13 -0
  79. data/test/fixtures/notee/images.yml +7 -0
  80. data/test/fixtures/notee/posts.yml +23 -0
  81. data/test/fixtures/notee/tokens.yml +9 -0
  82. data/test/integration/navigation_test.rb +10 -0
  83. data/test/models/notee/category_test.rb +9 -0
  84. data/test/models/notee/image_test.rb +9 -0
  85. data/test/models/notee/post_test.rb +9 -0
  86. data/test/models/notee/token_test.rb +9 -0
  87. data/test/notee_test.rb +7 -0
  88. data/test/test_helper.rb +20 -0
  89. metadata +195 -33
  90. data/.gitignore +0 -10
  91. data/.idea/.name +0 -1
  92. data/.idea/misc.xml +0 -14
  93. data/.idea/modules.xml +0 -8
  94. data/.idea/notee.iml +0 -17
  95. data/.idea/vcs.xml +0 -6
  96. data/.idea/workspace.xml +0 -335
  97. data/.rspec +0 -2
  98. data/.travis.yml +0 -4
  99. data/CODE_OF_CONDUCT.md +0 -13
  100. data/Gemfile +0 -4
  101. data/LICENSE.txt +0 -21
  102. data/README.md +0 -41
  103. data/bin/console +0 -14
  104. data/bin/setup +0 -7
  105. data/lib/generators/notee/install/install_generator.rb +0 -17
  106. data/notee.gemspec +0 -28
@@ -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
@@ -0,0 +1,13 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
+
3
+ one:
4
+ name: MyString
5
+ slug: MyString
6
+ parent_id: 1
7
+ status: 1
8
+
9
+ two:
10
+ name: MyString
11
+ slug: MyString
12
+ parent_id: 1
13
+ status: 1
@@ -0,0 +1,7 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
+
3
+ one:
4
+ content: MyString
5
+
6
+ two:
7
+ content: MyString
@@ -0,0 +1,23 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
+
3
+ one:
4
+ title: MyString
5
+ content: MyText
6
+ slug: MyString
7
+ status: 1
8
+ category_id: 1
9
+ thumbnail_id: 1
10
+ published_at: 2016-06-05 23:14:37
11
+ seo_keyword: MyString
12
+ seo_description: MyString
13
+
14
+ two:
15
+ title: MyString
16
+ content: MyText
17
+ slug: MyString
18
+ status: 1
19
+ category_id: 1
20
+ thumbnail_id: 1
21
+ published_at: 2016-06-05 23:14:37
22
+ seo_keyword: MyString
23
+ seo_description: MyString
@@ -0,0 +1,9 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
+
3
+ one:
4
+ api_key: MyString
5
+ expires_at: MyString
6
+
7
+ two:
8
+ api_key: MyString
9
+ expires_at: MyString
@@ -0,0 +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
+
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ module Notee
4
+ class CategoryTest < ActiveSupport::TestCase
5
+ # test "the truth" do
6
+ # assert true
7
+ # end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ module Notee
4
+ class ImageTest < ActiveSupport::TestCase
5
+ # test "the truth" do
6
+ # assert true
7
+ # end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ module Notee
4
+ class PostTest < ActiveSupport::TestCase
5
+ # test "the truth" do
6
+ # assert true
7
+ # end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ module Notee
4
+ class TokenTest < ActiveSupport::TestCase
5
+ # test "the truth" do
6
+ # assert true
7
+ # end
8
+ end
9
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class NoteeTest < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, Notee
6
+ end
7
+ end
@@ -0,0 +1,20 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../../test/dummy/config/environment.rb", __FILE__)
5
+ ActiveRecord::Migrator.migrations_paths = [File.expand_path("../../test/dummy/db/migrate", __FILE__)]
6
+ ActiveRecord::Migrator.migrations_paths << File.expand_path('../../db/migrate', __FILE__)
7
+ require "rails/test_help"
8
+
9
+ # Filter out Minitest backtrace while allowing backtrace from other libraries
10
+ # to be shown.
11
+ Minitest.backtrace_filter = Minitest::BacktraceFilter.new
12
+
13
+ # Load support files
14
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
15
+
16
+ # Load fixtures from the engine
17
+ if ActiveSupport::TestCase.respond_to?(:fixture_path=)
18
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
19
+ ActiveSupport::TestCase.fixtures :all
20
+ end
metadata CHANGED
@@ -1,45 +1,87 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: notee
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - takujifunao
8
8
  autorequire:
9
- bindir: exe
9
+ bindir: bin
10
10
  cert_chain: []
11
- date: 2016-04-24 00:00:00.000000000 Z
11
+ date: 2016-07-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: bundler
14
+ name: rails
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '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
+ - !ruby/object:Gem::Dependency
42
+ name: pry-rails
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
18
46
  - !ruby/object:Gem::Version
19
- version: '1.10'
47
+ version: '0'
20
48
  type: :development
21
49
  prerelease: false
22
50
  version_requirements: !ruby/object:Gem::Requirement
23
51
  requirements:
24
- - - "~>"
52
+ - - ">="
25
53
  - !ruby/object:Gem::Version
26
- version: '1.10'
54
+ version: '0'
27
55
  - !ruby/object:Gem::Dependency
28
- name: rake
56
+ name: pry-doc
29
57
  requirement: !ruby/object:Gem::Requirement
30
58
  requirements:
31
- - - "~>"
59
+ - - ">="
32
60
  - !ruby/object:Gem::Version
33
- version: '10.0'
61
+ version: '0'
34
62
  type: :development
35
63
  prerelease: false
36
64
  version_requirements: !ruby/object:Gem::Requirement
37
65
  requirements:
38
- - - "~>"
66
+ - - ">="
39
67
  - !ruby/object:Gem::Version
40
- version: '10.0'
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: pry-byebug
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
41
83
  - !ruby/object:Gem::Dependency
42
- name: rspec
84
+ name: pry-stack_explorer
43
85
  requirement: !ruby/object:Gem::Requirement
44
86
  requirements:
45
87
  - - ">="
@@ -59,26 +101,93 @@ executables: []
59
101
  extensions: []
60
102
  extra_rdoc_files: []
61
103
  files:
62
- - ".gitignore"
63
- - ".idea/.name"
64
- - ".idea/misc.xml"
65
- - ".idea/modules.xml"
66
- - ".idea/notee.iml"
67
- - ".idea/vcs.xml"
68
- - ".idea/workspace.xml"
69
- - ".rspec"
70
- - ".travis.yml"
71
- - CODE_OF_CONDUCT.md
72
- - Gemfile
73
- - LICENSE.txt
74
- - README.md
104
+ - MIT-LICENSE
75
105
  - Rakefile
76
- - bin/console
77
- - bin/setup
78
- - lib/generators/notee/install/install_generator.rb
106
+ - app/assets/javascripts/application.js
107
+ - app/assets/javascripts/notee/application.js
108
+ - app/assets/stylesheets/notee/application.css
109
+ - app/assets/stylesheets/notee/images.css
110
+ - app/assets/stylesheets/notee/posts.css
111
+ - app/assets/stylesheets/notee/preview.scss
112
+ - app/assets/stylesheets/scaffold.css
113
+ - app/controllers/notee/application_controller.rb
114
+ - app/controllers/notee/categories_controller.rb
115
+ - app/controllers/notee/images_controller.rb
116
+ - app/controllers/notee/posts_controller.rb
117
+ - app/controllers/notee/tokens_controller.rb
118
+ - app/helpers/notee/application_helper.rb
119
+ - app/helpers/notee/categories_helper.rb
120
+ - app/helpers/notee/images_helper.rb
121
+ - app/helpers/notee/posts_helper.rb
122
+ - app/models/notee/category.rb
123
+ - app/models/notee/image.rb
124
+ - app/models/notee/post.rb
125
+ - app/models/notee/token.rb
126
+ - app/views/layouts/notee/application.html.erb
127
+ - app/views/notee/posts/notee.html.erb
128
+ - app/views/notee/tokens/new.html.erb
129
+ - config/routes.rb
130
+ - db/migrate/20160605141437_create_notee_posts.rb
131
+ - db/migrate/20160605141510_create_notee_categories.rb
132
+ - db/migrate/20160605141547_create_notee_images.rb
133
+ - db/migrate/20160608102012_create_notee_tokens.rb
79
134
  - lib/notee.rb
135
+ - lib/notee/configuration.rb
136
+ - lib/notee/engine.rb
80
137
  - lib/notee/version.rb
81
- - notee.gemspec
138
+ - lib/tasks/notee_tasks.rake
139
+ - test/controllers/notee/categories_controller_test.rb
140
+ - test/controllers/notee/images_controller_test.rb
141
+ - test/controllers/notee/posts_controller_test.rb
142
+ - test/dummy/README.rdoc
143
+ - test/dummy/Rakefile
144
+ - test/dummy/app/assets/javascripts/application.js
145
+ - test/dummy/app/assets/stylesheets/application.css
146
+ - test/dummy/app/controllers/application_controller.rb
147
+ - test/dummy/app/helpers/application_helper.rb
148
+ - test/dummy/app/views/layouts/application.html.erb
149
+ - test/dummy/bin/bundle
150
+ - test/dummy/bin/rails
151
+ - test/dummy/bin/rake
152
+ - test/dummy/bin/setup
153
+ - test/dummy/config.ru
154
+ - test/dummy/config/application.rb
155
+ - test/dummy/config/boot.rb
156
+ - test/dummy/config/database.yml
157
+ - test/dummy/config/environment.rb
158
+ - test/dummy/config/environments/development.rb
159
+ - test/dummy/config/environments/production.rb
160
+ - test/dummy/config/environments/test.rb
161
+ - test/dummy/config/initializers/assets.rb
162
+ - test/dummy/config/initializers/backtrace_silencers.rb
163
+ - test/dummy/config/initializers/cookies_serializer.rb
164
+ - test/dummy/config/initializers/filter_parameter_logging.rb
165
+ - test/dummy/config/initializers/inflections.rb
166
+ - test/dummy/config/initializers/mime_types.rb
167
+ - test/dummy/config/initializers/session_store.rb
168
+ - test/dummy/config/initializers/wrap_parameters.rb
169
+ - test/dummy/config/locales/en.yml
170
+ - test/dummy/config/routes.rb
171
+ - test/dummy/config/secrets.yml
172
+ - test/dummy/db/development.sqlite3
173
+ - test/dummy/db/schema.rb
174
+ - test/dummy/db/test.sqlite3
175
+ - test/dummy/log/development.log
176
+ - test/dummy/public/404.html
177
+ - test/dummy/public/422.html
178
+ - test/dummy/public/500.html
179
+ - test/dummy/public/favicon.ico
180
+ - test/fixtures/notee/categories.yml
181
+ - test/fixtures/notee/images.yml
182
+ - test/fixtures/notee/posts.yml
183
+ - test/fixtures/notee/tokens.yml
184
+ - test/integration/navigation_test.rb
185
+ - test/models/notee/category_test.rb
186
+ - test/models/notee/image_test.rb
187
+ - test/models/notee/post_test.rb
188
+ - test/models/notee/token_test.rb
189
+ - test/notee_test.rb
190
+ - test/test_helper.rb
82
191
  homepage: https://github.com/maru-3/notee.git
83
192
  licenses:
84
193
  - MIT
@@ -99,8 +208,61 @@ required_rubygems_version: !ruby/object:Gem::Requirement
99
208
  version: '0'
100
209
  requirements: []
101
210
  rubyforge_project:
102
- rubygems_version: 2.4.5
211
+ rubygems_version: 2.5.1
103
212
  signing_key:
104
213
  specification_version: 4
105
214
  summary: notee is very simple blogging gem.
106
- test_files: []
215
+ test_files:
216
+ - test/controllers/notee/categories_controller_test.rb
217
+ - test/controllers/notee/images_controller_test.rb
218
+ - test/controllers/notee/posts_controller_test.rb
219
+ - test/dummy/app/assets/javascripts/application.js
220
+ - test/dummy/app/assets/stylesheets/application.css
221
+ - test/dummy/app/controllers/application_controller.rb
222
+ - test/dummy/app/helpers/application_helper.rb
223
+ - test/dummy/app/views/layouts/application.html.erb
224
+ - test/dummy/bin/bundle
225
+ - test/dummy/bin/rails
226
+ - test/dummy/bin/rake
227
+ - test/dummy/bin/setup
228
+ - test/dummy/config/application.rb
229
+ - test/dummy/config/boot.rb
230
+ - test/dummy/config/database.yml
231
+ - test/dummy/config/environment.rb
232
+ - test/dummy/config/environments/development.rb
233
+ - test/dummy/config/environments/production.rb
234
+ - test/dummy/config/environments/test.rb
235
+ - test/dummy/config/initializers/assets.rb
236
+ - test/dummy/config/initializers/backtrace_silencers.rb
237
+ - test/dummy/config/initializers/cookies_serializer.rb
238
+ - test/dummy/config/initializers/filter_parameter_logging.rb
239
+ - test/dummy/config/initializers/inflections.rb
240
+ - test/dummy/config/initializers/mime_types.rb
241
+ - test/dummy/config/initializers/session_store.rb
242
+ - test/dummy/config/initializers/wrap_parameters.rb
243
+ - test/dummy/config/locales/en.yml
244
+ - test/dummy/config/routes.rb
245
+ - test/dummy/config/secrets.yml
246
+ - test/dummy/config.ru
247
+ - test/dummy/db/development.sqlite3
248
+ - test/dummy/db/schema.rb
249
+ - test/dummy/db/test.sqlite3
250
+ - test/dummy/log/development.log
251
+ - test/dummy/public/404.html
252
+ - test/dummy/public/422.html
253
+ - test/dummy/public/500.html
254
+ - test/dummy/public/favicon.ico
255
+ - test/dummy/Rakefile
256
+ - test/dummy/README.rdoc
257
+ - test/fixtures/notee/categories.yml
258
+ - test/fixtures/notee/images.yml
259
+ - test/fixtures/notee/posts.yml
260
+ - test/fixtures/notee/tokens.yml
261
+ - test/integration/navigation_test.rb
262
+ - test/models/notee/category_test.rb
263
+ - test/models/notee/image_test.rb
264
+ - test/models/notee/post_test.rb
265
+ - test/models/notee/token_test.rb
266
+ - test/notee_test.rb
267
+ - test/test_helper.rb
268
+ has_rdoc: