montalvo_setup 0.0.1

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: f5a0ba5fbc8ae91539f88a1611fe4ad6f2e4e0f8531326f842452aca9b69a1b5
4
+ data.tar.gz: d687eb9aa966070b7e3a96a365be778e5f23dc3327ce82bd4593807c79dfa60c
5
+ SHA512:
6
+ metadata.gz: 69523b6340296942ea3114f416fb9eac492456fd00bb57ce20a7bd64bc0916aad386ae01913a5ceae46b75d9ace6a11f5f6a25fd0e9744ca17db534eee7a0a69
7
+ data.tar.gz: bd782300443df494fc9314dea90094382b34effa9212d3a252b76cdba63a31362d0cc0eceff29ae6654dd26726d54e422184c23b1646a55761acd5e57ff5d517
@@ -0,0 +1,2 @@
1
+ Gemfile.lock
2
+ *.gem
data/Gemfile ADDED
@@ -0,0 +1,2 @@
1
+ source "http://rubygems.org"
2
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,9 @@
1
+ Copyright (c) 2019 Carlos Montalvo.
2
+ All rights reserved.
3
+
4
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
5
+
6
+ Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
7
+ Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
8
+
9
+ THIS SOFTWARE IS PROVIDED BY <COPYRIGHT HOLDER> “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,10 @@
1
+ module MontalvoSetup
2
+ module Rails
3
+ class Railtie < ::Rails::Railtie
4
+ config.app_generators.test_framework :false
5
+ config.app_generators.helper false
6
+ config.app_generators.assets false
7
+ config.app_generators.view_specs false
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,21 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "montalvo_setup/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = %q{montalvo_setup}
7
+ s.version = MontalvoSetup::VERSION
8
+ s.summary = %q{Gem montalvo_setup is the best}
9
+ s.license = "BSD-2-Clause"
10
+ s.platform = Gem::Platform::RUBY
11
+ s.authors = ["Carlos Montalvo"]
12
+ s.email = ["carlosmontalvo@zetanova.com"]
13
+ s.homepage = "https://github.com/CarlangasGO/montalvo_setup"
14
+ s.files = `git ls-files`.split("\n")
15
+
16
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
17
+ s.require_paths = ["lib"]
18
+
19
+ s.add_dependency('has_tokenable', '~> 0.1')
20
+
21
+ end
metadata ADDED
@@ -0,0 +1,63 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: montalvo_setup
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Carlos Montalvo
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-04-30 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: has_tokenable
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '0.1'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '0.1'
27
+ description:
28
+ email:
29
+ - carlosmontalvo@zetanova.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - ".gitignore"
35
+ - Gemfile
36
+ - LICENSE
37
+ - lib/montalvo_setup.rb
38
+ - montalvo_setup.gemspec
39
+ homepage: https://github.com/CarlangasGO/montalvo_setup
40
+ licenses:
41
+ - BSD-2-Clause
42
+ metadata: {}
43
+ post_install_message:
44
+ rdoc_options: []
45
+ require_paths:
46
+ - lib
47
+ required_ruby_version: !ruby/object:Gem::Requirement
48
+ requirements:
49
+ - - ">="
50
+ - !ruby/object:Gem::Version
51
+ version: '0'
52
+ required_rubygems_version: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ version: '0'
57
+ requirements: []
58
+ rubyforge_project:
59
+ rubygems_version: 2.7.6.2
60
+ signing_key:
61
+ specification_version: 4
62
+ summary: Gem montalvo_setup is the best
63
+ test_files: []