routingo 0.1.2 → 0.1.3

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
- SHA1:
3
- metadata.gz: e4cc5c557d6d2955ba494c70336dfe8cf251cca1
4
- data.tar.gz: 334085fa336fca951332ef92e21c5023e2ff3545
2
+ SHA256:
3
+ metadata.gz: 7acfdba54e84896d3679eaa756d97a92890f99d7da29c087ad04f8ec03f0ddbc
4
+ data.tar.gz: fcaa466998ea662c1b0f06a9addd5eeb3bdc4a37aba2ce2bcc06dded1f1bb7ad
5
5
  SHA512:
6
- metadata.gz: 8c370595707cef0e4f79bdf35ce8253cc9c35804d295eb3bb2374f3cd7278d82a97708ecd72ead5524d72584e41bfd04b81d03d56c168f30a5416ae342042e81
7
- data.tar.gz: ab4849abb7fc9f62f5bb89be529167e59695bcab4010b6dad0b163b4a6736859e7e7739d2d85d3e43479d5f4a2405d0af4fe73d79052a184e3477d18bddf90bb
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
- " config.paths['config/routes.rb'].concat(Dir[Rails.root.join('config/routes/*.rb')])\n"
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
@@ -2,9 +2,9 @@ module Routingo
2
2
  class Routingo < Rails::Generators::NamedBase
3
3
  def create_helper_file
4
4
  create_file "config/routes/#{file_name}.rb", <<-FILE
5
- Rails.application.routes.draw do
6
-
7
- end
5
+ Rails.application.routes.draw do
6
+
7
+ end
8
8
  FILE
9
9
  end
10
10
  end
@@ -1,3 +1,3 @@
1
1
  module Routingo
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
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 = ["web.guru.serbia@gmail.com"]
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.2
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: 2016-09-23 00:00:00.000000000 Z
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
- - web.guru.serbia@gmail.com
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.6.6
104
+ rubygems_version: 2.7.3
119
105
  signing_key:
120
106
  specification_version: 4
121
107
  summary: Routingo