ucpengine 0.0.1

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 (83) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +37 -0
  5. data/app/assets/javascripts/ucpengine/application.js +13 -0
  6. data/app/assets/javascripts/ucpengine/entries.js +46 -0
  7. data/app/assets/javascripts/ucpengine/live-preview.js +0 -0
  8. data/app/assets/stylesheets/ucpengine/application.scss +61 -0
  9. data/app/assets/stylesheets/ucpengine/entries.css +4 -0
  10. data/app/controllers/ucpengine/application_controller.rb +41 -0
  11. data/app/controllers/ucpengine/dashboard_controller.rb +8 -0
  12. data/app/controllers/ucpengine/entries_controller.rb +62 -0
  13. data/app/controllers/ucpengine/previews_controller.rb +9 -0
  14. data/app/helpers/ucpengine/application_helper.rb +4 -0
  15. data/app/helpers/ucpengine/entries_helper.rb +4 -0
  16. data/app/helpers/ucpengine/markdown_helper.rb +27 -0
  17. data/app/models/ucpengine/concerns/searchable.rb +34 -0
  18. data/app/models/ucpengine/entry.rb +23 -0
  19. data/app/models/ucpengine/entry_search_data.rb +19 -0
  20. data/app/views/layouts/ucpengine/application.html.erb +39 -0
  21. data/app/views/ucpengine/dashboard/index.html.erb +3 -0
  22. data/app/views/ucpengine/entries/_form.html.erb +25 -0
  23. data/app/views/ucpengine/entries/edit.html.erb +6 -0
  24. data/app/views/ucpengine/entries/index.html.erb +15 -0
  25. data/app/views/ucpengine/entries/new.html.erb +7 -0
  26. data/app/views/ucpengine/entries/show.html.erb +21 -0
  27. data/app/views/ucpengine/previews/shot.html.erb +1 -0
  28. data/config/locales/simple_form.en.yml +31 -0
  29. data/config/routes.rb +9 -0
  30. data/db/migrate/20161028170915_create_ucpengine_entries.rb +13 -0
  31. data/db/migrate/20161028204606_create_ucpengine_entry_search_data.rb +14 -0
  32. data/db/migrate/20161102192430_add_slug_to_ucpengine_entries.rb +5 -0
  33. data/db/migrate/20161102192856_add_published_at_to_ucpengine_entries.rb +5 -0
  34. data/lib/tasks/ucpengine_tasks.rake +4 -0
  35. data/lib/templates/erb/scaffold/_form.html.erb +13 -0
  36. data/lib/ucpengine/configuration.rb +29 -0
  37. data/lib/ucpengine/engine.rb +10 -0
  38. data/lib/ucpengine/simple_form_config.rb +21 -0
  39. data/lib/ucpengine/version.rb +3 -0
  40. data/lib/ucpengine.rb +6 -0
  41. data/test/controllers/ucpengine/entries_controller_test.rb +13 -0
  42. data/test/dummy/README.rdoc +28 -0
  43. data/test/dummy/Rakefile +6 -0
  44. data/test/dummy/app/assets/javascripts/application.js +13 -0
  45. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  46. data/test/dummy/app/controllers/application_controller.rb +5 -0
  47. data/test/dummy/app/helpers/application_helper.rb +2 -0
  48. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  49. data/test/dummy/bin/bundle +3 -0
  50. data/test/dummy/bin/rails +4 -0
  51. data/test/dummy/bin/rake +4 -0
  52. data/test/dummy/bin/setup +29 -0
  53. data/test/dummy/config/application.rb +26 -0
  54. data/test/dummy/config/boot.rb +5 -0
  55. data/test/dummy/config/database.yml +85 -0
  56. data/test/dummy/config/environment.rb +5 -0
  57. data/test/dummy/config/environments/development.rb +41 -0
  58. data/test/dummy/config/environments/production.rb +79 -0
  59. data/test/dummy/config/environments/test.rb +42 -0
  60. data/test/dummy/config/initializers/assets.rb +11 -0
  61. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  62. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  63. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  64. data/test/dummy/config/initializers/inflections.rb +16 -0
  65. data/test/dummy/config/initializers/mime_types.rb +4 -0
  66. data/test/dummy/config/initializers/session_store.rb +3 -0
  67. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  68. data/test/dummy/config/locales/en.yml +23 -0
  69. data/test/dummy/config/routes.rb +4 -0
  70. data/test/dummy/config/secrets.yml +22 -0
  71. data/test/dummy/config.ru +4 -0
  72. data/test/dummy/public/404.html +67 -0
  73. data/test/dummy/public/422.html +67 -0
  74. data/test/dummy/public/500.html +66 -0
  75. data/test/dummy/public/favicon.ico +0 -0
  76. data/test/fixtures/ucpengine/entries.yml +11 -0
  77. data/test/fixtures/ucpengine/entry_search_data.yml +13 -0
  78. data/test/integration/navigation_test.rb +8 -0
  79. data/test/models/ucpengine/entry_search_data_test.rb +9 -0
  80. data/test/models/ucpengine/entry_test.rb +9 -0
  81. data/test/test_helper.rb +21 -0
  82. data/test/ucpengine_test.rb +7 -0
  83. metadata +335 -0
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: 4132ac006d7b0b8b5b7866317b0fb71aa8c603a37cbb7372cd8a87301eea7846eb4b75ee4813f02f0841e232bf6449bb8932bb04119d230a87918790c4843220
15
+
16
+ test:
17
+ secret_key_base: 659722b4b7ad6a30af103afb0c29568b3d203a8711d3880b16390cb0938ac2cd8a651057cd1507344c3ca585471d915ac5e9d2f7d64c5b8fce98da9c5db0aaec
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Rails.application
@@ -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,11 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
+
3
+ # This model initially had no columns defined. If you add columns to the
4
+ # model remove the '{}' from the fixture names and add the columns immediately
5
+ # below each fixture, per the syntax in the comments below
6
+ #
7
+ one: {}
8
+ # column: value
9
+ #
10
+ two: {}
11
+ # column: value
@@ -0,0 +1,13 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
+
3
+ one:
4
+ entry_id: 1
5
+ attr_name: MyString
6
+ search_data:
7
+ raw_data: MyText
8
+
9
+ two:
10
+ entry_id: 1
11
+ attr_name: MyString
12
+ search_data:
13
+ raw_data: MyText
@@ -0,0 +1,8 @@
1
+ require 'test_helper'
2
+
3
+ class NavigationTest < ActionDispatch::IntegrationTest
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
8
+
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ module Ucpengine
4
+ class EntrySearchDataTest < 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 Ucpengine
4
+ class EntryTest < ActiveSupport::TestCase
5
+ # test "the truth" do
6
+ # assert true
7
+ # end
8
+ end
9
+ end
@@ -0,0 +1,21 @@
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
+ ActionDispatch::IntegrationTest.fixture_path = ActiveSupport::TestCase.fixture_path
20
+ ActiveSupport::TestCase.fixtures :all
21
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class UcpengineTest < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, Ucpengine
6
+ end
7
+ end
metadata ADDED
@@ -0,0 +1,335 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ucpengine
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - johnvehr
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-11-04 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.2.7.1
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 4.2.7.1
27
+ - !ruby/object:Gem::Dependency
28
+ name: bcrypt
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 3.1.7
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 3.1.7
41
+ - !ruby/object:Gem::Dependency
42
+ name: sass-rails
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '5.0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '5.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: jquery-rails
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: jquery-ui-rails
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: font-awesome-rails
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: autoprefixer-rails
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: simple_form
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: 3.1.0
118
+ type: :runtime
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: 3.1.0
125
+ - !ruby/object:Gem::Dependency
126
+ name: materialize-sass
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :runtime
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ - !ruby/object:Gem::Dependency
140
+ name: pygments.rb
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - ">="
144
+ - !ruby/object:Gem::Version
145
+ version: '0'
146
+ type: :runtime
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ version: '0'
153
+ - !ruby/object:Gem::Dependency
154
+ name: redcarpet
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - ">="
158
+ - !ruby/object:Gem::Version
159
+ version: '0'
160
+ type: :runtime
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - ">="
165
+ - !ruby/object:Gem::Version
166
+ version: '0'
167
+ - !ruby/object:Gem::Dependency
168
+ name: pg
169
+ requirement: !ruby/object:Gem::Requirement
170
+ requirements:
171
+ - - ">="
172
+ - !ruby/object:Gem::Version
173
+ version: '0'
174
+ type: :development
175
+ prerelease: false
176
+ version_requirements: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - ">="
179
+ - !ruby/object:Gem::Version
180
+ version: '0'
181
+ description: Description of Ucpengine.
182
+ email:
183
+ - johnvehr@yahoo.com
184
+ executables: []
185
+ extensions: []
186
+ extra_rdoc_files: []
187
+ files:
188
+ - MIT-LICENSE
189
+ - README.rdoc
190
+ - Rakefile
191
+ - app/assets/javascripts/ucpengine/application.js
192
+ - app/assets/javascripts/ucpengine/entries.js
193
+ - app/assets/javascripts/ucpengine/live-preview.js
194
+ - app/assets/stylesheets/ucpengine/application.scss
195
+ - app/assets/stylesheets/ucpengine/entries.css
196
+ - app/controllers/ucpengine/application_controller.rb
197
+ - app/controllers/ucpengine/dashboard_controller.rb
198
+ - app/controllers/ucpengine/entries_controller.rb
199
+ - app/controllers/ucpengine/previews_controller.rb
200
+ - app/helpers/ucpengine/application_helper.rb
201
+ - app/helpers/ucpengine/entries_helper.rb
202
+ - app/helpers/ucpengine/markdown_helper.rb
203
+ - app/models/ucpengine/concerns/searchable.rb
204
+ - app/models/ucpengine/entry.rb
205
+ - app/models/ucpengine/entry_search_data.rb
206
+ - app/views/layouts/ucpengine/application.html.erb
207
+ - app/views/ucpengine/dashboard/index.html.erb
208
+ - app/views/ucpengine/entries/_form.html.erb
209
+ - app/views/ucpengine/entries/edit.html.erb
210
+ - app/views/ucpengine/entries/index.html.erb
211
+ - app/views/ucpengine/entries/new.html.erb
212
+ - app/views/ucpengine/entries/show.html.erb
213
+ - app/views/ucpengine/previews/shot.html.erb
214
+ - config/locales/simple_form.en.yml
215
+ - config/routes.rb
216
+ - db/migrate/20161028170915_create_ucpengine_entries.rb
217
+ - db/migrate/20161028204606_create_ucpengine_entry_search_data.rb
218
+ - db/migrate/20161102192430_add_slug_to_ucpengine_entries.rb
219
+ - db/migrate/20161102192856_add_published_at_to_ucpengine_entries.rb
220
+ - lib/tasks/ucpengine_tasks.rake
221
+ - lib/templates/erb/scaffold/_form.html.erb
222
+ - lib/ucpengine.rb
223
+ - lib/ucpengine/configuration.rb
224
+ - lib/ucpengine/engine.rb
225
+ - lib/ucpengine/simple_form_config.rb
226
+ - lib/ucpengine/version.rb
227
+ - test/controllers/ucpengine/entries_controller_test.rb
228
+ - test/dummy/README.rdoc
229
+ - test/dummy/Rakefile
230
+ - test/dummy/app/assets/javascripts/application.js
231
+ - test/dummy/app/assets/stylesheets/application.css
232
+ - test/dummy/app/controllers/application_controller.rb
233
+ - test/dummy/app/helpers/application_helper.rb
234
+ - test/dummy/app/views/layouts/application.html.erb
235
+ - test/dummy/bin/bundle
236
+ - test/dummy/bin/rails
237
+ - test/dummy/bin/rake
238
+ - test/dummy/bin/setup
239
+ - test/dummy/config.ru
240
+ - test/dummy/config/application.rb
241
+ - test/dummy/config/boot.rb
242
+ - test/dummy/config/database.yml
243
+ - test/dummy/config/environment.rb
244
+ - test/dummy/config/environments/development.rb
245
+ - test/dummy/config/environments/production.rb
246
+ - test/dummy/config/environments/test.rb
247
+ - test/dummy/config/initializers/assets.rb
248
+ - test/dummy/config/initializers/backtrace_silencers.rb
249
+ - test/dummy/config/initializers/cookies_serializer.rb
250
+ - test/dummy/config/initializers/filter_parameter_logging.rb
251
+ - test/dummy/config/initializers/inflections.rb
252
+ - test/dummy/config/initializers/mime_types.rb
253
+ - test/dummy/config/initializers/session_store.rb
254
+ - test/dummy/config/initializers/wrap_parameters.rb
255
+ - test/dummy/config/locales/en.yml
256
+ - test/dummy/config/routes.rb
257
+ - test/dummy/config/secrets.yml
258
+ - test/dummy/public/404.html
259
+ - test/dummy/public/422.html
260
+ - test/dummy/public/500.html
261
+ - test/dummy/public/favicon.ico
262
+ - test/fixtures/ucpengine/entries.yml
263
+ - test/fixtures/ucpengine/entry_search_data.yml
264
+ - test/integration/navigation_test.rb
265
+ - test/models/ucpengine/entry_search_data_test.rb
266
+ - test/models/ucpengine/entry_test.rb
267
+ - test/test_helper.rb
268
+ - test/ucpengine_test.rb
269
+ homepage: ''
270
+ licenses:
271
+ - MIT
272
+ metadata: {}
273
+ post_install_message:
274
+ rdoc_options: []
275
+ require_paths:
276
+ - lib
277
+ required_ruby_version: !ruby/object:Gem::Requirement
278
+ requirements:
279
+ - - ">="
280
+ - !ruby/object:Gem::Version
281
+ version: '0'
282
+ required_rubygems_version: !ruby/object:Gem::Requirement
283
+ requirements:
284
+ - - ">="
285
+ - !ruby/object:Gem::Version
286
+ version: '0'
287
+ requirements: []
288
+ rubyforge_project:
289
+ rubygems_version: 2.4.7
290
+ signing_key:
291
+ specification_version: 4
292
+ summary: Summary of Ucpengine.
293
+ test_files:
294
+ - test/controllers/ucpengine/entries_controller_test.rb
295
+ - test/dummy/app/assets/javascripts/application.js
296
+ - test/dummy/app/assets/stylesheets/application.css
297
+ - test/dummy/app/controllers/application_controller.rb
298
+ - test/dummy/app/helpers/application_helper.rb
299
+ - test/dummy/app/views/layouts/application.html.erb
300
+ - test/dummy/bin/bundle
301
+ - test/dummy/bin/rails
302
+ - test/dummy/bin/rake
303
+ - test/dummy/bin/setup
304
+ - test/dummy/config/application.rb
305
+ - test/dummy/config/boot.rb
306
+ - test/dummy/config/database.yml
307
+ - test/dummy/config/environment.rb
308
+ - test/dummy/config/environments/development.rb
309
+ - test/dummy/config/environments/production.rb
310
+ - test/dummy/config/environments/test.rb
311
+ - test/dummy/config/initializers/assets.rb
312
+ - test/dummy/config/initializers/backtrace_silencers.rb
313
+ - test/dummy/config/initializers/cookies_serializer.rb
314
+ - test/dummy/config/initializers/filter_parameter_logging.rb
315
+ - test/dummy/config/initializers/inflections.rb
316
+ - test/dummy/config/initializers/mime_types.rb
317
+ - test/dummy/config/initializers/session_store.rb
318
+ - test/dummy/config/initializers/wrap_parameters.rb
319
+ - test/dummy/config/locales/en.yml
320
+ - test/dummy/config/routes.rb
321
+ - test/dummy/config/secrets.yml
322
+ - test/dummy/config.ru
323
+ - test/dummy/public/404.html
324
+ - test/dummy/public/422.html
325
+ - test/dummy/public/500.html
326
+ - test/dummy/public/favicon.ico
327
+ - test/dummy/Rakefile
328
+ - test/dummy/README.rdoc
329
+ - test/fixtures/ucpengine/entries.yml
330
+ - test/fixtures/ucpengine/entry_search_data.yml
331
+ - test/integration/navigation_test.rb
332
+ - test/models/ucpengine/entry_search_data_test.rb
333
+ - test/models/ucpengine/entry_test.rb
334
+ - test/test_helper.rb
335
+ - test/ucpengine_test.rb