3scale_toolbox_supercool_plugin 1.0.0

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: b5be582ccad97b9b4a6ef8a3b8a8d3289b4d4474c79032cd165217c609f18572
4
+ data.tar.gz: b96b0e30269be1d3d146350dfa42e43c02a5af1c9bc5bda011ed564b73ba0092
5
+ SHA512:
6
+ metadata.gz: 4c4f2df717fec3d0af86e21b0020e0b9b091e1724c29b6e795c3e1924217035394834eb794a7eededca7b83de531df0aa5fd4970f65b90a0144fb5b8b36dafa3
7
+ data.tar.gz: 052265bb8b34049b164d34e4b48158be8d6b196f3f3ba9799de9608fa8607e076b3db4be476fd3e4aaba20fc70b270dc2d14745f02b09be409f86f32ec532b9b
@@ -0,0 +1,2 @@
1
+ # 3scale_toolbox_plugin_demo
2
+ Plugin Demo
@@ -0,0 +1,18 @@
1
+ class SupercoolCommand < Cri::CommandRunner
2
+ include ThreeScaleToolbox::Command
3
+
4
+ def self.command
5
+ Cri::Command.define do
6
+ name 'foo'
7
+ usage 'foo [options]'
8
+ summary '3scale foo'
9
+ description '3scale foo command'
10
+ runner SupercoolCommand
11
+ end
12
+ end
13
+
14
+ def run
15
+ puts 'Doing lots of things!'
16
+ end
17
+ end
18
+ ThreeScaleToolbox::CLI.add_command(SupercoolCommand)
metadata ADDED
@@ -0,0 +1,74 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: 3scale_toolbox_supercool_plugin
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Eguzki Astiz Lezaun
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-12-12 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rake
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '10.0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '10.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: 3scale_toolbox
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: Supercool plugin does lots of things
42
+ email:
43
+ - eastizle@redhat.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - README.md
49
+ - lib/3scale_toolbox_plugin.rb
50
+ homepage: https://github.com/eguzki/3scale_toolbox_plugin_demo
51
+ licenses:
52
+ - MIT
53
+ metadata: {}
54
+ post_install_message:
55
+ rdoc_options: []
56
+ require_paths:
57
+ - lib
58
+ required_ruby_version: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: '0'
63
+ required_rubygems_version: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ version: '0'
68
+ requirements: []
69
+ rubyforge_project:
70
+ rubygems_version: 2.7.6
71
+ signing_key:
72
+ specification_version: 4
73
+ summary: 3scale Toolbox Supercool Plugin
74
+ test_files: []