phcdevworks_portfolio 0.3.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 06ac663c4bf3aa9e874e7e83fe6ed4767a49e379ccdfec9b0b4ee4e070743a7d
4
- data.tar.gz: e5797d9ed1661c68bf9290045c204704c4d48575cef19f168f54d4ee8e373dbd
3
+ metadata.gz: 6fbcfdf16e24a5d5261db1e23907f304247d9457fdc23d3c3d1fdb62188000d3
4
+ data.tar.gz: 453913543f633d7d7b4efae94b3225aa06a868e2e0561e5f12d816b40354d25d
5
5
  SHA512:
6
- metadata.gz: d4e21e4c59ba23897c2958e3e6a35e7751c9005d6703c7f5fa1029d3b2ed7fd6a288e1c09c4afd8347bbd60f19a020b049f2cd2f0c5dbd6ebbdc5bb01b9ace3c
7
- data.tar.gz: af9c941c4352fcdc5702ef77c197b8dc375e7b6a9a7950e01c5628ee392ec6dcce8f0c0a57ed7fb4419a958c9350d787fd64acffef9c52716cdbe5b2e049b192
6
+ metadata.gz: 1193865c9c545941a90d1b43093d2885ad2a9be350dabb49b5d60ee78420d15ad60ab43a01a7a34579cd60c7ec1dfa12a25c8e2bbefbac621972a41486c3b697
7
+ data.tar.gz: 0a47502090ac87e3d27dada756e902290314758b7970bef649024a5b9ddb38add96a8573dbf271328471e83335ee65b76182838daac8c458680f3aa55ec66fe0
@@ -1,3 +1,3 @@
1
- // Place all the styles related to the website/pages controller here.
1
+ // Place all the styles related to the project/pages controller here.
2
2
  // They will automatically be included in application.css.
3
3
  // You can use Sass (SCSS) here: https://sass-lang.com/
@@ -1,7 +1,7 @@
1
1
  require_dependency "phcdevworks_portfolio/application_controller"
2
2
 
3
3
  module PhcdevworksPortfolio
4
- class Website::PagesController < ApplicationController
4
+ class Project::PagesController < ApplicationController
5
5
 
6
6
  # Layout
7
7
  layout 'phcdevworks_portfolio/frontend'
@@ -1,4 +1,4 @@
1
1
  module PhcdevworksPortfolio
2
- module Website::PagesHelper
2
+ module Project::PagesHelper
3
3
  end
4
4
  end
data/config/routes.rb CHANGED
@@ -3,10 +3,6 @@ PhcdevworksPortfolio::Engine.routes.draw do
3
3
  # Project Routes
4
4
  namespace :project do
5
5
  resources :posts, class_name: "Project::Post"
6
- end
7
-
8
- # Frontend Routes
9
- namespace :website do
10
6
  resources :pages, only: [:index, :show]
11
7
  end
12
8
 
@@ -1,3 +1,3 @@
1
1
  module PhcdevworksPortfolio
2
- VERSION = '0.3.0'
2
+ VERSION = '0.4.0'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: phcdevworks_portfolio
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - PHCDevworks
@@ -252,17 +252,17 @@ files:
252
252
  - Rakefile
253
253
  - app/assets/config/phcdevworks_portfolio_manifest.js
254
254
  - app/assets/javascripts/phcdevworks_portfolio/application.js
255
+ - app/assets/javascripts/phcdevworks_portfolio/project/pages.coffee
255
256
  - app/assets/javascripts/phcdevworks_portfolio/project/posts.coffee
256
- - app/assets/javascripts/phcdevworks_portfolio/website/pages.coffee
257
257
  - app/assets/stylesheets/phcdevworks_portfolio/application.scss
258
+ - app/assets/stylesheets/phcdevworks_portfolio/project/pages.scss
258
259
  - app/assets/stylesheets/phcdevworks_portfolio/project/posts.scss
259
- - app/assets/stylesheets/phcdevworks_portfolio/website/pages.scss
260
260
  - app/controllers/phcdevworks_portfolio/application_controller.rb
261
+ - app/controllers/phcdevworks_portfolio/project/pages_controller.rb
261
262
  - app/controllers/phcdevworks_portfolio/project/posts_controller.rb
262
- - app/controllers/phcdevworks_portfolio/website/pages_controller.rb
263
263
  - app/helpers/phcdevworks_portfolio/application_helper.rb
264
+ - app/helpers/phcdevworks_portfolio/project/pages_helper.rb
264
265
  - app/helpers/phcdevworks_portfolio/project/posts_helper.rb
265
- - app/helpers/phcdevworks_portfolio/website/pages_helper.rb
266
266
  - app/jobs/phcdevworks_portfolio/application_job.rb
267
267
  - app/mailers/phcdevworks_portfolio/application_mailer.rb
268
268
  - app/models/phcdevworks_portfolio/application_record.rb
@@ -273,13 +273,13 @@ files:
273
273
  - app/views/layouts/phcdevworks_portfolio/components/backend/navigation/_top_menu.html.erb
274
274
  - app/views/layouts/phcdevworks_portfolio/components/backend/sidebars/_side_menu.html.erb
275
275
  - app/views/layouts/phcdevworks_portfolio/frontend.html.erb
276
+ - app/views/phcdevworks_portfolio/project/pages/index.html.erb
277
+ - app/views/phcdevworks_portfolio/project/pages/show.html.erb
276
278
  - app/views/phcdevworks_portfolio/project/posts/_form.html.erb
277
279
  - app/views/phcdevworks_portfolio/project/posts/edit.html.erb
278
280
  - app/views/phcdevworks_portfolio/project/posts/index.html.erb
279
281
  - app/views/phcdevworks_portfolio/project/posts/new.html.erb
280
282
  - app/views/phcdevworks_portfolio/project/posts/show.html.erb
281
- - app/views/phcdevworks_portfolio/website/pages/index.html.erb
282
- - app/views/phcdevworks_portfolio/website/pages/show.html.erb
283
283
  - config/routes.rb
284
284
  - db/migrate/20191014112330_create_phcdevworks_portfolio_project_posts.rb
285
285
  - lib/phcdevworks_portfolio.rb