get_set_go 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.
- checksums.yaml +7 -0
- data/bin/get_set_go +18 -0
- metadata +59 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 92f57e8fd8f01da4eb6a5bb9dd58f8da34c1256f
|
4
|
+
data.tar.gz: e9e1cf03fd1cbd6fbaeaa2f1f2727aad0b961b5a
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: f9cc590a6cbf7c07ecdadb77af545c4ee594c0929801ffabc655ccb9d02eb4eb28b27ec00b09da5b143c1c2accd2fbcfb02395489b3631c452aa489f6ea73d72
|
7
|
+
data.tar.gz: 52c64d2df51a3d3c970d62c5b7ad45e5243b21b6ebb4ead6d6e2786f94bcf075a11601bcca2a64039fb5814f3f3f74a3aa611a9ac0a73e5162177042e9b4c16c
|
data/bin/get_set_go
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require 'rubygems'
|
4
|
+
require "bundler/setup"
|
5
|
+
require 'commander/import'
|
6
|
+
|
7
|
+
program :name, "Get Set Go"
|
8
|
+
program :version, '0.0.0'
|
9
|
+
program :description, 'A simple CLI that fasten development'
|
10
|
+
|
11
|
+
command :config do |c|
|
12
|
+
c.syntax = 'get_set_go config'
|
13
|
+
c.description = 'Analyze and generate the Docker configs for your Rails project'
|
14
|
+
c.action do |args, options|
|
15
|
+
puts 'Analyzing..'
|
16
|
+
puts "Creating required files.."
|
17
|
+
end
|
18
|
+
end
|
metadata
ADDED
@@ -0,0 +1,59 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: get_set_go
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Logesh Mohanasundaram
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2020-07-15 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: commander
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
description: A gem to make development faster and easier with templates
|
28
|
+
email: logesh_kar@yahoo.co.in
|
29
|
+
executables:
|
30
|
+
- get_set_go
|
31
|
+
extensions: []
|
32
|
+
extra_rdoc_files: []
|
33
|
+
files:
|
34
|
+
- bin/get_set_go
|
35
|
+
homepage: https://rubygems.org/gems/get_set_go
|
36
|
+
licenses:
|
37
|
+
- MIT
|
38
|
+
metadata: {}
|
39
|
+
post_install_message:
|
40
|
+
rdoc_options: []
|
41
|
+
require_paths:
|
42
|
+
- lib
|
43
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
49
|
+
requirements:
|
50
|
+
- - ">="
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: '0'
|
53
|
+
requirements: []
|
54
|
+
rubyforge_project:
|
55
|
+
rubygems_version: 2.6.14
|
56
|
+
signing_key:
|
57
|
+
specification_version: 4
|
58
|
+
summary: Get Set Go!
|
59
|
+
test_files: []
|