spring_standalone-commands-answersengine 0.1.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: c454a773b10f9b9ce9b477be03ad1480396995bb18d893d3c1765ef279207063
4
+ data.tar.gz: 8534422ace68bf3bc2c1a8cf56b7d02807d58d97bcf4e95be8d76ee05e07ae0f
5
+ SHA512:
6
+ metadata.gz: 63f8b1a6772b2113147f6df1ff297baeaa92aecc98b8a277c085c894d461bf7e18878e0c60a6f8dc9cc77ee27d64ffb49cf176e4d7a4a08132464a911840ed90
7
+ data.tar.gz: 6c17252660d29f08e540493b6a93c66372ba8e640d8cde00eeeadc3bdd66194c47b7228ccaa755aec812da6281da2f9d41688158b53fc51cb02501b7e470c768
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/answersengine'
3
+ end
@@ -0,0 +1,9 @@
1
+ require 'spring_standalone/commands/answersengine/cli'
2
+ require 'spring_standalone/commands/answersengine/version'
3
+
4
+ module SpringStandalone
5
+ module Commands
6
+ module AnswersEngine
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,21 @@
1
+ module SpringStandalone
2
+ module Commands
3
+ module AnswersEngine
4
+ class CLI
5
+ # def env(*)
6
+ # nil
7
+ # end
8
+
9
+ def gem_name
10
+ "answersengine"
11
+ end
12
+
13
+ def exec_name
14
+ 'answersengine'
15
+ end
16
+ end
17
+
18
+ SpringStandalone.register_command 'answersengine', ::SpringStandalone::Commands::AnswersEngine::CLI.new
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,7 @@
1
+ module SpringStandalone
2
+ module Commands
3
+ module AnswersEngine
4
+ VERSION = "0.1.1"
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/answersengine/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "spring_standalone-commands-answersengine"
8
+ spec.version = SpringStandalone::Commands::AnswersEngine::VERSION
9
+ spec.authors = ["Eduardo Rosales"]
10
+ spec.email = ["eduardo@datahen.com"]
11
+ spec.description = %q{answersengine command for spring_standalone}
12
+ spec.summary = %q{answersengine command for spring_standalone}
13
+ spec.homepage = "https://github.com/colorfulsing/spring_standalone-commands-answersengine"
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-answersengine
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Eduardo Rosales
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2021-04-23 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: answersengine 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-answersengine.rb
52
+ - lib/spring_standalone/commands/answersengine.rb
53
+ - lib/spring_standalone/commands/answersengine/cli.rb
54
+ - lib/spring_standalone/commands/answersengine/version.rb
55
+ - spring_standalone-commands-answersengine.gemspec
56
+ homepage: https://github.com/colorfulsing/spring_standalone-commands-answersengine
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: answersengine command for spring_standalone
79
+ test_files: []