rails_app_generator 0.2.10 → 0.2.11

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e595153d8d04b113b8c54db0d8571752deaa017ae6b0cdefa401999ea85d9853
4
- data.tar.gz: 36fec67777c02fb9c6f7d9c1fe3fd2dd84e67404b52b19bfffef13e9d09e20a1
3
+ metadata.gz: e6c154de84c08fa40c02064d9521397096c1bdf33c4180a143b874aac3fc241d
4
+ data.tar.gz: 8a002deb836d4d51c2f18248d0798f47109db7dce25e72eb725d1a697ed3a081
5
5
  SHA512:
6
- metadata.gz: bba13cc58a961de6af36ce8f7bd4f1d42bb3457c63a9f5cec283bd1cea7fda8f1ab6d8e30eb6a216653a986aadd4b4dd0b74964c7952001523bbc624844ff4cc
7
- data.tar.gz: ebe4c29f6d73c47de6568a2687bedd9648fc828e29befe7481517af22e7d07417ef715b4b578d9fd527d215e32b4ca94439c154b170ddb366cb7b70beb412ef1
6
+ metadata.gz: f59e8acec1a8e1c6dae728c316901ca75320f205bf4b8c562d9608d1c2f00b5a5ca5e264760da2a26cc41d832a8137e8215ce3fea2d121276fb04fdf366afe90
7
+ data.tar.gz: e63dde420822b9612ecfe98140e846eb20af617851be18a00a0018d25f943d5a7dfca92582e264d1de0e948058ce9654f1600dddb4d94a05d10238eaf75c8248
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [0.2.10](https://github.com/klueless-io/rails_app_generator/compare/v0.2.9...v0.2.10) (2022-08-11)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * add administrate addon ([330ce3c](https://github.com/klueless-io/rails_app_generator/commit/330ce3c0db2148ccb34585eb7fb45dae8b267884))
7
+
1
8
  ## [0.2.9](https://github.com/klueless-io/rails_app_generator/compare/v0.2.8...v0.2.9) (2022-08-11)
2
9
 
3
10
 
@@ -0,0 +1,45 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Administrate is inspired by Rails Admin and ActiveAdmin, but aims to provide a better developer/user experience.
4
+ #
5
+ # exe/rag addons/administrate
6
+
7
+ self.local_template_path = File.dirname(__FILE__)
8
+
9
+ gac 'base rails 7 image created'
10
+
11
+ bundle_install
12
+
13
+ add_controller('home', 'index')
14
+
15
+ route("root 'home#index'")
16
+
17
+ force_copy
18
+
19
+ directory "app/controllers"
20
+ directory "app/views/home"
21
+ directory "app/views/layouts"
22
+ template 'app/views/layouts/application.html.erb' , 'app/views/layouts/application.html.erb'
23
+
24
+ template 'db/seeds.rb' , 'db/seeds.rb'
25
+
26
+ after_bundle do
27
+ setup_db
28
+
29
+ generate('administrate:install')
30
+
31
+ directory "app/dashboards"
32
+
33
+ rubocop
34
+ end
35
+
36
+ def setup_db
37
+ add_scaffold('author', 'name:string email:string bio:text')
38
+ add_scaffold('post', 'title:string content:text published:boolean author:references')
39
+ add_scaffold('product', 'name', 'quantity:integer', 'price:decimal')
40
+
41
+ directory "app/models"
42
+
43
+ db_migrate
44
+ db_seed
45
+ end
@@ -0,0 +1,4 @@
1
+ class HomeController < ApplicationController
2
+ def index
3
+ end
4
+ end
@@ -0,0 +1,74 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'administrate/base_dashboard'
4
+
5
+ class AuthorDashboard < Administrate::BaseDashboard
6
+ # ATTRIBUTE_TYPES
7
+ # a hash that describes the type of each of the model's fields.
8
+ #
9
+ # Each different type represents an Administrate::Field object,
10
+ # which determines how the attribute is displayed
11
+ # on pages throughout the dashboard.
12
+ ATTRIBUTE_TYPES = {
13
+ id: Field::Number,
14
+ name: Field::String,
15
+ email: Field::String,
16
+ bio: Field::Text,
17
+ posts: Field::HasMany,
18
+ created_at: Field::DateTime,
19
+ updated_at: Field::DateTime
20
+ }.freeze
21
+
22
+ # COLLECTION_ATTRIBUTES
23
+ # an array of attributes that will be displayed on the model's index page.
24
+ #
25
+ # By default, it's limited to four items to reduce clutter on index pages.
26
+ # Feel free to add, remove, or rearrange items.
27
+ COLLECTION_ATTRIBUTES = %i[
28
+ id
29
+ name
30
+ email
31
+ posts
32
+ ].freeze
33
+
34
+ # SHOW_PAGE_ATTRIBUTES
35
+ # an array of attributes that will be displayed on the model's show page.
36
+ SHOW_PAGE_ATTRIBUTES = %i[
37
+ id
38
+ name
39
+ email
40
+ bio
41
+ posts
42
+ created_at
43
+ updated_at
44
+ ].freeze
45
+
46
+ # FORM_ATTRIBUTES
47
+ # an array of attributes that will be displayed
48
+ # on the model's form (`new` and `edit`) pages.
49
+ FORM_ATTRIBUTES = %i[
50
+ name
51
+ email
52
+ bio
53
+ posts
54
+ ].freeze
55
+
56
+ # COLLECTION_FILTERS
57
+ # a hash that defines filters that can be used while searching via the search
58
+ # field of the dashboard.
59
+ #
60
+ # For example to add an option to search for open resources by typing "open:"
61
+ # in the search field:
62
+ #
63
+ # COLLECTION_FILTERS = {
64
+ # open: ->(resources) { resources.where(open: true) }
65
+ # }.freeze
66
+ COLLECTION_FILTERS = {}.freeze
67
+
68
+ # Overwrite this method to customize how authors are displayed
69
+ # across all pages of the admin dashboard.
70
+ #
71
+ # def display_resource(author)
72
+ # "Author ##{author.id}"
73
+ # end
74
+ end
@@ -0,0 +1,74 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'administrate/base_dashboard'
4
+
5
+ class PostDashboard < Administrate::BaseDashboard
6
+ # ATTRIBUTE_TYPES
7
+ # a hash that describes the type of each of the model's fields.
8
+ #
9
+ # Each different type represents an Administrate::Field object,
10
+ # which determines how the attribute is displayed
11
+ # on pages throughout the dashboard.
12
+ ATTRIBUTE_TYPES = {
13
+ author: Field::BelongsTo,
14
+ id: Field::Number,
15
+ title: Field::String,
16
+ content: Field::Text,
17
+ published: Field::Boolean,
18
+ created_at: Field::DateTime,
19
+ updated_at: Field::DateTime
20
+ }.freeze
21
+
22
+ # COLLECTION_ATTRIBUTES
23
+ # an array of attributes that will be displayed on the model's index page.
24
+ #
25
+ # By default, it's limited to four items to reduce clutter on index pages.
26
+ # Feel free to add, remove, or rearrange items.
27
+ COLLECTION_ATTRIBUTES = %i[
28
+ author
29
+ id
30
+ title
31
+ content
32
+ ].freeze
33
+
34
+ # SHOW_PAGE_ATTRIBUTES
35
+ # an array of attributes that will be displayed on the model's show page.
36
+ SHOW_PAGE_ATTRIBUTES = %i[
37
+ author
38
+ id
39
+ title
40
+ content
41
+ published
42
+ created_at
43
+ updated_at
44
+ ].freeze
45
+
46
+ # FORM_ATTRIBUTES
47
+ # an array of attributes that will be displayed
48
+ # on the model's form (`new` and `edit`) pages.
49
+ FORM_ATTRIBUTES = %i[
50
+ author
51
+ title
52
+ content
53
+ published
54
+ ].freeze
55
+
56
+ # COLLECTION_FILTERS
57
+ # a hash that defines filters that can be used while searching via the search
58
+ # field of the dashboard.
59
+ #
60
+ # For example to add an option to search for open resources by typing "open:"
61
+ # in the search field:
62
+ #
63
+ # COLLECTION_FILTERS = {
64
+ # open: ->(resources) { resources.where(open: true) }
65
+ # }.freeze
66
+ COLLECTION_FILTERS = {}.freeze
67
+
68
+ # Overwrite this method to customize how posts are displayed
69
+ # across all pages of the admin dashboard.
70
+ #
71
+ # def display_resource(post)
72
+ # "Post ##{post.id}"
73
+ # end
74
+ end
@@ -0,0 +1,71 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'administrate/base_dashboard'
4
+
5
+ class ProductDashboard < Administrate::BaseDashboard
6
+ # ATTRIBUTE_TYPES
7
+ # a hash that describes the type of each of the model's fields.
8
+ #
9
+ # Each different type represents an Administrate::Field object,
10
+ # which determines how the attribute is displayed
11
+ # on pages throughout the dashboard.
12
+ ATTRIBUTE_TYPES = {
13
+ id: Field::Number,
14
+ name: Field::String,
15
+ quantity: Field::Number,
16
+ price: Field::String.with_options(searchable: false),
17
+ created_at: Field::DateTime,
18
+ updated_at: Field::DateTime
19
+ }.freeze
20
+
21
+ # COLLECTION_ATTRIBUTES
22
+ # an array of attributes that will be displayed on the model's index page.
23
+ #
24
+ # By default, it's limited to four items to reduce clutter on index pages.
25
+ # Feel free to add, remove, or rearrange items.
26
+ COLLECTION_ATTRIBUTES = %i[
27
+ id
28
+ name
29
+ quantity
30
+ price
31
+ ].freeze
32
+
33
+ # SHOW_PAGE_ATTRIBUTES
34
+ # an array of attributes that will be displayed on the model's show page.
35
+ SHOW_PAGE_ATTRIBUTES = %i[
36
+ id
37
+ name
38
+ quantity
39
+ price
40
+ created_at
41
+ updated_at
42
+ ].freeze
43
+
44
+ # FORM_ATTRIBUTES
45
+ # an array of attributes that will be displayed
46
+ # on the model's form (`new` and `edit`) pages.
47
+ FORM_ATTRIBUTES = %i[
48
+ name
49
+ quantity
50
+ price
51
+ ].freeze
52
+
53
+ # COLLECTION_FILTERS
54
+ # a hash that defines filters that can be used while searching via the search
55
+ # field of the dashboard.
56
+ #
57
+ # For example to add an option to search for open resources by typing "open:"
58
+ # in the search field:
59
+ #
60
+ # COLLECTION_FILTERS = {
61
+ # open: ->(resources) { resources.where(open: true) }
62
+ # }.freeze
63
+ COLLECTION_FILTERS = {}.freeze
64
+
65
+ # Overwrite this method to customize how products are displayed
66
+ # across all pages of the admin dashboard.
67
+ #
68
+ # def display_resource(product)
69
+ # "Product ##{product.id}"
70
+ # end
71
+ end
@@ -0,0 +1,6 @@
1
+ class Author < ApplicationRecord
2
+ has_many :posts
3
+
4
+ validates :name, presence: true
5
+ validates :bio, length: { maximum: 100 }
6
+ end
@@ -0,0 +1,5 @@
1
+ class Post < ApplicationRecord
2
+ belongs_to :author, required: true
3
+
4
+ validates :title, presence: true, format: { with: /\A[a-zA-Z &0-9+!]+\z/, message: "only allows letters, numbers plus &!+" }
5
+ end
@@ -0,0 +1,3 @@
1
+ <h1>Administrate</h1>
2
+
3
+ <p>Administrate is inspired by Rails Admin and ActiveAdmin, but aims to provide a better developer/user experience.</p>
@@ -0,0 +1,3 @@
1
+ <footer>
2
+ <hr />
3
+ </footer>
@@ -0,0 +1,5 @@
1
+ <header>
2
+ <%= link_to 'Home', root_path %> |
3
+ <%= link_to 'Admin', admin_root_path %>
4
+ <hr />
5
+ </header>
@@ -0,0 +1,23 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title><%= camelized %></title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <%%= csrf_meta_tags %>
7
+ <%%= csp_meta_tag %>
8
+
9
+ <%- if options[:skip_hotwire] || options[:skip_javascript] -%>
10
+ <%%= stylesheet_link_tag "application" %>
11
+ <%- else -%>
12
+ <%%= stylesheet_link_tag "application", "data-turbo-track": "reload" %>
13
+ <%- end -%>
14
+ </head>
15
+
16
+ <body>
17
+ <%%= render 'layouts/navbar' %>
18
+ <main>
19
+ <%%= yield %>
20
+ </main>
21
+ <%%= render 'layouts/footer' %>
22
+ </body>
23
+ </html>
@@ -0,0 +1,116 @@
1
+ def fake_title
2
+ [
3
+ 'Fundamentals of Wavelets',
4
+ 'Data Smart',
5
+ 'God Created the Integers',
6
+ 'Superfreakonomics',
7
+ 'Orientalism',
8
+ 'Nature of Statistical Learning Theory',
9
+ 'Integration of the Indian States',
10
+ 'Image Processing & Mathematical Morphology',
11
+ 'How to Think Like Sherlock Holmes',
12
+ 'Data Scientists at Work',
13
+ 'Slaughterhouse Five',
14
+ 'Birth of a Theorem',
15
+ 'Structure & Interpretation of Computer Programs',
16
+ 'Age of Wrath',
17
+ 'Trial',
18
+ 'Data Mining Handbook',
19
+ 'New Machiavelli',
20
+ 'Physics & Philosophy',
21
+ 'Making Software',
22
+ 'Analysis',
23
+ 'Machine Learning for Hackers',
24
+ 'Signal and the Noise',
25
+ 'Python for Data Analysis',
26
+ 'Introduction to Algorithms',
27
+ 'Beautiful and the Damned',
28
+ 'Outsider',
29
+ 'Complete Sherlock Holmes',
30
+ 'Complete Sherlock Holmes',
31
+ 'Wealth of Nations',
32
+ 'Pillars of the Earth',
33
+ 'Mein Kampf',
34
+ 'Tao of Physics',
35
+ 'Farewell to Arms',
36
+ 'Veteran',
37
+ 'False Impressions',
38
+ 'Last Lecture',
39
+ 'Return of the Primitive',
40
+ 'Jurassic Park',
41
+ 'Russian Journal',
42
+ 'Tales of Mystery and Imagination',
43
+ 'Freakonomics',
44
+ 'Hidden Connections',
45
+ 'Story of Philosophy',
46
+ 'Asami Asami',
47
+ 'Journal of a Novel',
48
+ 'Once There Was a War',
49
+ 'Moon is Down',
50
+ 'Brethren',
51
+ 'In a Free State',
52
+ 'Catch 22',
53
+ 'Complete Mastermind',
54
+ 'Dylan on Dylan',
55
+ 'Soft Computing & Intelligent Systems',
56
+ 'Textbook of Economic Theory',
57
+ 'Econometric Analysis',
58
+ 'Learning OpenCV',
59
+ 'Data Structures Using C & C++',
60
+ 'Computer Vision',
61
+ 'Principles of Communication Systems',
62
+ 'Let Us C',
63
+ 'Amulet of Samarkand',
64
+ 'Crime and Punishment',
65
+ 'Angels & Demons',
66
+ 'Argumentative Indian',
67
+ 'Sea of Poppies',
68
+ 'Idea of Justice',
69
+ 'Raisin in the Sun',
70
+ 'Prisoner of Birth',
71
+ 'Scoop!',
72
+ 'Ahe Manohar Tari',
73
+ 'Last Mughal',
74
+ 'Social Choice & Welfare',
75
+ 'Radiowaril Bhashane & Shrutika',
76
+ 'Gun Gayin Awadi',
77
+ 'Aghal Paghal',
78
+ 'Beyond Degrees',
79
+ 'Manasa',
80
+ 'India from Midnight to Milennium',
81
+ 'Great Indian Novel',
82
+ 'O Jerusalem!',
83
+ 'City of Joy',
84
+ 'Freedom at Midnight',
85
+ 'Winter of Our Discontent',
86
+ 'On Education',
87
+ 'Free Will',
88
+ 'Bookless in Baghdad',
89
+ 'Case of the Lame Canary',
90
+ 'Theory of Everything',
91
+ 'New Markets & Other Essays',
92
+ 'Electric Universe',
93
+ 'Hunchback of Notre Dame',
94
+ 'Burning Bright',
95
+ 'Age of Discontuinity'
96
+ ].sample
97
+ end
98
+
99
+ 60.times do
100
+ Author.create!(name: Faker::Name.name, bio: Faker::Lorem.words(number: 5).join(' '), email: Faker::Internet.email)
101
+ end
102
+
103
+ 100.times do |i|
104
+ Post.create!(title: fake_title,
105
+ content: "This is the body of post #{i}",
106
+ published: Faker::Boolean.boolean(true_ratio: 0.6),
107
+ author: Author.all.sample)
108
+ end
109
+
110
+ 200.times do
111
+ Product.create!(
112
+ name: Faker::Name.name,
113
+ quantity: Faker::Number.number(digits: 2),
114
+ price: Faker::Number.decimal(l_digits: 4)
115
+ )
116
+ end
@@ -46,6 +46,7 @@
46
46
  "add_annotate",
47
47
  "add_lograge",
48
48
  "add_acts_as_list",
49
+ "add_administrate",
49
50
  "add_browser",
50
51
  "add_bcrypt_ruby",
51
52
  "add_chartkick",
@@ -384,6 +385,13 @@
384
385
  "default": false,
385
386
  "required": false
386
387
  },
388
+ {
389
+ "name": "add_administrate",
390
+ "description": "Indicates when to generate add administrate",
391
+ "type": "boolean",
392
+ "default": false,
393
+ "required": false
394
+ },
387
395
  {
388
396
  "name": "add_browser",
389
397
  "description": "Indicates when to generate add browser",
@@ -32,14 +32,15 @@
32
32
  "test": "rspec",
33
33
  "add_devise": false,
34
34
  "add_dotenv": false,
35
- "add_rubocop": false,
36
- "add_annotate": false,
35
+ "add_rubocop": true,
36
+ "add_annotate": true,
37
37
  "add_lograge": false,
38
38
  "add_acts_as_list": false,
39
+ "add_administrate": true,
39
40
  "add_browser": false,
40
41
  "add_bcrypt_ruby": false,
41
42
  "add_chartkick": false,
42
- "add_faker": false,
43
+ "add_faker": true,
43
44
  "add_groupdate": false,
44
45
  "add_hexapdf": false,
45
46
  "add_httparty": false,
@@ -48,8 +49,8 @@
48
49
  "add_phony_rails": false,
49
50
  "add_public_suffix": false,
50
51
  "add_rails_html_sanitizer": false,
51
- "add_redcarpet": true,
52
+ "add_redcarpet": false,
52
53
  "add_twilio_ruby": false,
53
- "template": "/Users/davidcruwys/dev/kgems/rails_app_generator/after_templates/addons/redcarpet/_.rb"
54
+ "template": "/Users/davidcruwys/dev/kgems/rails_app_generator/after_templates/addons/administrate/_.rb"
54
55
  }
55
56
  }
@@ -46,6 +46,7 @@
46
46
  "add_annotate",
47
47
  "add_lograge",
48
48
  "add_acts_as_list",
49
+ "add_administrate",
49
50
  "add_browser",
50
51
  "add_bcrypt_ruby",
51
52
  "add_chartkick",
@@ -384,6 +385,13 @@
384
385
  "default": false,
385
386
  "required": false
386
387
  },
388
+ {
389
+ "name": "add_administrate",
390
+ "description": "",
391
+ "type": "boolean",
392
+ "default": false,
393
+ "required": false
394
+ },
387
395
  {
388
396
  "name": "add_browser",
389
397
  "description": "",
@@ -7,7 +7,7 @@
7
7
  "quiet": false,
8
8
  "skip": false,
9
9
  "ruby": "/Users/davidcruwys/.asdf/installs/ruby/2.7.6/bin/ruby",
10
- "template": "/Users/davidcruwys/dev/kgems/rails_app_generator/after_templates/addons/redcarpet/_.rb",
10
+ "template": "/Users/davidcruwys/dev/kgems/rails_app_generator/after_templates/addons/administrate/_.rb",
11
11
  "database": "sqlite3",
12
12
  "skip_git": true,
13
13
  "skip_keeps": false,
@@ -42,14 +42,15 @@
42
42
  "test": "rspec",
43
43
  "add_devise": false,
44
44
  "add_dotenv": false,
45
- "add_rubocop": false,
46
- "add_annotate": false,
45
+ "add_rubocop": true,
46
+ "add_annotate": true,
47
47
  "add_lograge": false,
48
48
  "add_acts_as_list": false,
49
+ "add_administrate": true,
49
50
  "add_browser": false,
50
51
  "add_bcrypt_ruby": false,
51
52
  "add_chartkick": false,
52
- "add_faker": false,
53
+ "add_faker": true,
53
54
  "add_groupdate": false,
54
55
  "add_hexapdf": false,
55
56
  "add_httparty": false,
@@ -58,7 +59,7 @@
58
59
  "add_phony_rails": false,
59
60
  "add_public_suffix": false,
60
61
  "add_rails_html_sanitizer": false,
61
- "add_redcarpet": true,
62
+ "add_redcarpet": false,
62
63
  "add_twilio_ruby": false
63
64
  }
64
65
  }
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RailsAppGenerator
4
- VERSION = '0.2.10'
4
+ VERSION = '0.2.11'
5
5
  end
data/package-lock.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "rails_app_generator",
3
- "version": "0.2.10",
3
+ "version": "0.2.11",
4
4
  "lockfileVersion": 2,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "rails_app_generator",
9
- "version": "0.2.10",
9
+ "version": "0.2.11",
10
10
  "dependencies": {
11
11
  "daisyui": "^2.20.0"
12
12
  },
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rails_app_generator",
3
- "version": "0.2.10",
3
+ "version": "0.2.11",
4
4
  "description": "Create new Rails Application with custom opinions",
5
5
  "scripts": {
6
6
  "release": "semantic-release"
@@ -0,0 +1,15 @@
1
+ {
2
+ "args": {
3
+ "app_path": "administrate",
4
+ "destination_root": "/Users/davidcruwys/dev/kgems/rails_app_generator/a/addons"
5
+ },
6
+ "opts": {
7
+ "skip_git": true,
8
+ "skip_test": true,
9
+ "template": "/Users/davidcruwys/dev/kgems/rails_app_generator/after_templates/addons/administrate/_.rb",
10
+ "add_annotate": true,
11
+ "add_administrate": true,
12
+ "add_faker": true,
13
+ "add_rubocop": true
14
+ }
15
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_app_generator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.10
4
+ version: 0.2.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Cruwys
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-08-11 00:00:00.000000000 Z
11
+ date: 2022-08-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bootsnap
@@ -189,6 +189,18 @@ files:
189
189
  - after_templates/addons/acts_as_list/app/views/todo_items/index.html.erb
190
190
  - after_templates/addons/acts_as_list/config/routes.rb
191
191
  - after_templates/addons/acts_as_list/db/seeds.rb
192
+ - after_templates/addons/administrate/_.rb
193
+ - after_templates/addons/administrate/app/controllers/home_controller.rb
194
+ - after_templates/addons/administrate/app/dashboards/author_dashboard.rb
195
+ - after_templates/addons/administrate/app/dashboards/post_dashboard.rb
196
+ - after_templates/addons/administrate/app/dashboards/product_dashboard.rb
197
+ - after_templates/addons/administrate/app/models/author.rb
198
+ - after_templates/addons/administrate/app/models/post.rb
199
+ - after_templates/addons/administrate/app/views/home/index.html.erb
200
+ - after_templates/addons/administrate/app/views/layouts/_footer.html.erb
201
+ - after_templates/addons/administrate/app/views/layouts/_navbar.html.erb
202
+ - after_templates/addons/administrate/app/views/layouts/application.html.erb
203
+ - after_templates/addons/administrate/db/seeds.rb
192
204
  - after_templates/addons/bcrypt_ruby/_.rb
193
205
  - after_templates/addons/bcrypt_ruby/app/controllers/home_controller.rb
194
206
  - after_templates/addons/bcrypt_ruby/app/models/user.rb
@@ -559,6 +571,7 @@ files:
559
571
  - package-lock.json
560
572
  - package.json
561
573
  - profiles/addons/acts_as_list.json
574
+ - profiles/addons/administrate.json
562
575
  - profiles/addons/bcrypt_ruby.json
563
576
  - profiles/addons/browser.json
564
577
  - profiles/addons/chartkick.json