routingo 0.1.2 → 0.1.3
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
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 7acfdba54e84896d3679eaa756d97a92890f99d7da29c087ad04f8ec03f0ddbc
|
|
4
|
+
data.tar.gz: fcaa466998ea662c1b0f06a9addd5eeb3bdc4a37aba2ce2bcc06dded1f1bb7ad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ec93be43c59e09046a030e1e243319da28433fc0687d6de4623207cbf5c68ef1ecc8c7177c7b6f41f6fdc5efdeb944abeb21c101a20d3c927c3b34a90126b7a5
|
|
7
|
+
data.tar.gz: 4c61faeaf0b4787c40fff72862543f0b33d79b6c603bd2ff0f178adc0cd92a2334428c5a12480ad37a0cdc7b6e4e6d9ab1537813149edda9fb6667b9b62a13b5
|
|
@@ -2,15 +2,11 @@ require 'rails/generators'
|
|
|
2
2
|
module Routingo
|
|
3
3
|
module Generators
|
|
4
4
|
class Install < Rails::Generators::Base
|
|
5
|
-
|
|
6
|
-
desc "Creates active_admin initializer, routes and copy locale files to your application."
|
|
7
|
-
|
|
8
5
|
def insert_path
|
|
9
6
|
insert_into_file "config/application.rb", :after => "class Application < Rails::Application\n" do
|
|
10
|
-
"
|
|
7
|
+
"config.paths['config/routes.rb'].concat(Dir[Rails.root.join('config/routes/*.rb')])\n"
|
|
11
8
|
end
|
|
12
9
|
end
|
|
13
|
-
|
|
14
10
|
end
|
|
15
11
|
end
|
|
16
12
|
end
|
data/lib/routingo/version.rb
CHANGED
data/routingo.gemspec
CHANGED
|
@@ -7,12 +7,13 @@ Gem::Specification.new do |spec|
|
|
|
7
7
|
spec.name = "routingo"
|
|
8
8
|
spec.version = Routingo::VERSION
|
|
9
9
|
spec.authors = ["popac"]
|
|
10
|
-
spec.email = ["
|
|
10
|
+
spec.email = ["aleksandar.popovic.popac@gmail.com"]
|
|
11
11
|
|
|
12
12
|
spec.summary = %q{Routingo}
|
|
13
13
|
spec.description = %q{Gem that split routes.rb into smaller parts}
|
|
14
14
|
spec.homepage = "https://github.com/popac/routingo"
|
|
15
15
|
spec.license = "MIT"
|
|
16
|
+
spec.post_install_message = "Thanks for installing Routingo!"
|
|
16
17
|
|
|
17
18
|
if spec.respond_to?(:metadata)
|
|
18
19
|
spec.metadata['allowed_push_host'] = "https://rubygems.org"
|
|
@@ -25,8 +26,6 @@ Gem::Specification.new do |spec|
|
|
|
25
26
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
26
27
|
spec.require_paths = ["lib"]
|
|
27
28
|
|
|
28
|
-
spec.add_dependency "rails", ">= 5"
|
|
29
|
-
|
|
30
29
|
spec.add_development_dependency 'bundler', '~> 1.13', '>= 1.13.1'
|
|
31
30
|
spec.add_development_dependency 'rake', '~> 11.3'
|
|
32
31
|
spec.add_development_dependency 'rspec', '~> 3.5'
|
metadata
CHANGED
|
@@ -1,29 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: routingo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- popac
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-02-13 00:00:00.000000000 Z
|
|
12
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: '5'
|
|
20
|
-
type: :runtime
|
|
21
|
-
prerelease: false
|
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
-
requirements:
|
|
24
|
-
- - ">="
|
|
25
|
-
- !ruby/object:Gem::Version
|
|
26
|
-
version: '5'
|
|
27
13
|
- !ruby/object:Gem::Dependency
|
|
28
14
|
name: bundler
|
|
29
15
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -74,7 +60,7 @@ dependencies:
|
|
|
74
60
|
version: '3.5'
|
|
75
61
|
description: Gem that split routes.rb into smaller parts
|
|
76
62
|
email:
|
|
77
|
-
-
|
|
63
|
+
- aleksandar.popovic.popac@gmail.com
|
|
78
64
|
executables: []
|
|
79
65
|
extensions: []
|
|
80
66
|
extra_rdoc_files: []
|
|
@@ -99,7 +85,7 @@ licenses:
|
|
|
99
85
|
- MIT
|
|
100
86
|
metadata:
|
|
101
87
|
allowed_push_host: https://rubygems.org
|
|
102
|
-
post_install_message:
|
|
88
|
+
post_install_message: Thanks for installing Routingo!
|
|
103
89
|
rdoc_options: []
|
|
104
90
|
require_paths:
|
|
105
91
|
- lib
|
|
@@ -115,7 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
115
101
|
version: '0'
|
|
116
102
|
requirements: []
|
|
117
103
|
rubyforge_project:
|
|
118
|
-
rubygems_version: 2.
|
|
104
|
+
rubygems_version: 2.7.3
|
|
119
105
|
signing_key:
|
|
120
106
|
specification_version: 4
|
|
121
107
|
summary: Routingo
|