spring_standalone-commands-hen 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 2b6724b783842cf6727b46b82242ed721686632185354995949262a2a163e048
4
+ data.tar.gz: 2beca85772ffc2536ef724c7916d82740a7243c6f5d3812390d2fc2265a5fee5
5
+ SHA512:
6
+ metadata.gz: fdced7a8b96a72d6da32c1d6922ddf749d53c3606b506b2b5d8fd6151bca758bb21cfc70501ff8dcd6d9b165d1abce1f1f488f9c2dad88ad0fd14910dc338928
7
+ data.tar.gz: 73e23f6abe8c2abca35954ef6204fa701eac3acdb1ea038ed0486d45a2b5292136c23a1159c52e606886e5755ce587e2188b28a06d8c848701d18af86b74fc94
data/.gitignore ADDED
@@ -0,0 +1,2 @@
1
+ Gemfile.lock
2
+ pkg
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in ae_easy-router.gemspec
6
+ gemspec
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/setup"
2
+ require "bundler/gem_tasks"
@@ -0,0 +1,3 @@
1
+ if defined?(SpringStandalone.register_command)
2
+ require 'spring_standalone/commands/hen'
3
+ end
@@ -0,0 +1,9 @@
1
+ require 'spring_standalone/commands/hen/cli'
2
+ require 'spring_standalone/commands/hen/version'
3
+
4
+ module SpringStandalone
5
+ module Commands
6
+ module Hen
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,21 @@
1
+ module SpringStandalone
2
+ module Commands
3
+ module Hen
4
+ class CLI
5
+ # def env(*)
6
+ # nil
7
+ # end
8
+
9
+ def gem_name
10
+ "datahen"
11
+ end
12
+
13
+ def exec_name
14
+ 'hen'
15
+ end
16
+ end
17
+
18
+ SpringStandalone.register_command 'hen', ::SpringStandalone::Commands::Hen::CLI.new
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,7 @@
1
+ module SpringStandalone
2
+ module Commands
3
+ module Hen
4
+ VERSION = "0.1.2"
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'spring_standalone/commands/hen/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "spring_standalone-commands-hen"
8
+ spec.version = SpringStandalone::Commands::Hen::VERSION
9
+ spec.authors = ["Eduardo Rosales"]
10
+ spec.email = ["eduardo@datahen.com"]
11
+ spec.description = %q{hen command for spring_standalone}
12
+ spec.summary = %q{hen command for spring_standalone}
13
+ spec.homepage = "https://github.com/colorfulsing/spring_standalone-commands-hen"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_dependency "spring_standalone", ">= 0.1.0"
22
+ spec.add_development_dependency "rake"
23
+ end
metadata ADDED
@@ -0,0 +1,79 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: spring_standalone-commands-hen
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.2
5
+ platform: ruby
6
+ authors:
7
+ - Eduardo Rosales
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2021-04-19 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: spring_standalone
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 0.1.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.1.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: hen command for spring_standalone
42
+ email:
43
+ - eduardo@datahen.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".gitignore"
49
+ - Gemfile
50
+ - Rakefile
51
+ - lib/spring_standalone-commands-hen.rb
52
+ - lib/spring_standalone/commands/hen.rb
53
+ - lib/spring_standalone/commands/hen/cli.rb
54
+ - lib/spring_standalone/commands/hen/version.rb
55
+ - spring_standalone-commands-hen.gemspec
56
+ homepage: https://github.com/colorfulsing/spring_standalone-commands-hen
57
+ licenses:
58
+ - MIT
59
+ metadata: {}
60
+ post_install_message:
61
+ rdoc_options: []
62
+ require_paths:
63
+ - lib
64
+ required_ruby_version: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ required_rubygems_version: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - ">="
72
+ - !ruby/object:Gem::Version
73
+ version: '0'
74
+ requirements: []
75
+ rubygems_version: 3.0.3
76
+ signing_key:
77
+ specification_version: 4
78
+ summary: hen command for spring_standalone
79
+ test_files: []