Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace handmade router with rails-routes gem 🎱 #17

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ gem 'bootsnap', '>= 1.1.0', require: false
gem 'mysql2', '>= 0.3.18', '< 0.5'
gem 'puma', '~> 3.11'
gem 'rails', '~> 5.1.5'
gem 'rails-routes'
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]

# === FEATURES ===
Expand Down
4 changes: 3 additions & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ GEM
nokogiri (>= 1.6)
rails-html-sanitizer (1.0.4)
loofah (~> 2.2, >= 2.2.2)
rails-routes (0.1.2)
railties (5.1.5)
actionpack (= 5.1.5)
activesupport (= 5.1.5)
Expand Down Expand Up @@ -243,6 +244,7 @@ DEPENDENCIES
puma (~> 3.11)
pundit
rails (~> 5.1.5)
rails-routes
rspec-rails (~> 3.6)
rubocop (~> 0.52.1)
shoulda-matchers (~> 3.1)
Expand All @@ -256,4 +258,4 @@ RUBY VERSION
ruby 2.5.0p0

BUNDLED WITH
1.16.1
1.17.3
2 changes: 0 additions & 2 deletions config/application.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
require_relative 'boot'

require_relative 'router'

require 'rails'
require 'active_model/railtie'
require 'active_job/railtie'
Expand Down
7 changes: 0 additions & 7 deletions config/initializers/router.rb

This file was deleted.

33 changes: 0 additions & 33 deletions config/router.rb

This file was deleted.

11 changes: 0 additions & 11 deletions config/routes.rb
Original file line number Diff line number Diff line change
@@ -1,13 +1,2 @@
Rails.application.routes.draw do
scope :v1, module: :v1, defaults: { format: :json } do
specify :articles
end

scope :v2, module: :v2 do
scope :admin, module: :admin do
specify :articles
end
end

specify :articles
end
8 changes: 2 additions & 6 deletions config/routes/articles.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
module Routes
module Articles
def call
resources :articles, only: %i[show]
end
end
Rails.application.routes.draw do
resources :articles, only: %i[show]
end
10 changes: 3 additions & 7 deletions config/routes/v1/articles.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
module Routes
module V1
module Articles
def call
resources :articles, only: %i[index]
end
end
Rails.application.routes.draw do
scope :v1, module: :v1, defaults: { format: :json } do
resources :articles, only: %i[index]
end
end
11 changes: 0 additions & 11 deletions config/routes/v2/admin/articles.rb

This file was deleted.