mnoe_cli 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +11 -0
- data/.rspec +3 -0
- data/.travis.yml +5 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +21 -0
- data/README.md +43 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/exe/mnoe_cli +6 -0
- data/lib/mnoe_cli.rb +6 -0
- data/lib/mnoe_cli/cli.rb +34 -0
- data/lib/mnoe_cli/commands.rb +9 -0
- data/lib/mnoe_cli/commands/generate_version_log.rb +161 -0
- data/lib/mnoe_cli/version.rb +3 -0
- data/mnoe_cli.gemspec +32 -0
- metadata +160 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: c6e252cf8acfb2cc496ca91a5b00ffec47f8543c
|
4
|
+
data.tar.gz: bbb66f7591d01a789868f41bacff6f61258338b6
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 919319bc14f16273441f799861793806e9e21f5fe3c4f0e20786928b84fa2e2321057af6a1ef79d8669aec76b5fd20a97ea0c270f6b1382dbeb082183e9cf68c
|
7
|
+
data.tar.gz: 05e046f9356bd8929cb68e52d7de2ceae2ac9f7578eacad4341e749c87a1660b994bb843730e27f70821d9dab2fad0df23ea7051e8479915169fda036fefa7e8
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at ouranos@donarproject.org. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2018 Olivier Brisse
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
# MnoeCli
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/mnoe_cli`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'mnoe_cli'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install mnoe_cli
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
TODO: Write usage instructions here
|
26
|
+
|
27
|
+
## Development
|
28
|
+
|
29
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
|
+
|
31
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
32
|
+
|
33
|
+
## Contributing
|
34
|
+
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/ouranos/mnoe_cli. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
36
|
+
|
37
|
+
## License
|
38
|
+
|
39
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
40
|
+
|
41
|
+
## Code of Conduct
|
42
|
+
|
43
|
+
Everyone interacting in the MnoeCli project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/ouranos/mnoe_cli/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "mnoe_cli"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/exe/mnoe_cli
ADDED
data/lib/mnoe_cli.rb
ADDED
data/lib/mnoe_cli/cli.rb
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'commander'
|
3
|
+
require 'mnoe_cli'
|
4
|
+
require 'mnoe_cli/commands'
|
5
|
+
|
6
|
+
module MnoeCli
|
7
|
+
class Cli
|
8
|
+
include Commander::Methods
|
9
|
+
|
10
|
+
def run
|
11
|
+
program :name, 'mnoe_cli'
|
12
|
+
program :version, MnoeCli::VERSION
|
13
|
+
program :description, 'Mnoe CLI toolbelt'
|
14
|
+
default_command :help
|
15
|
+
|
16
|
+
command :generate_version_log do |c|
|
17
|
+
c.syntax = 'mnoe_cli generate_version_log [OPTIONS]'
|
18
|
+
c.summary = 'Generate a frontend changelog'
|
19
|
+
c.example 'Generate a version log', 'generate_version_log'
|
20
|
+
c.example 'Generate a version log with specific branches', 'generate_version_log --current origin/master --next origin/develop'
|
21
|
+
c.option '--current STRING', String, 'Current version (default: @{u}'
|
22
|
+
c.option '--next STRING', String, 'Next version (default: HEAD)'
|
23
|
+
c.option '--format STRING', String, 'Output format (only supporting Github at the moment)'
|
24
|
+
c.action do |args, options|
|
25
|
+
options.default current: '@{u}',
|
26
|
+
next: 'HEAD'
|
27
|
+
MnoeCli::Commands::GenerateVersionLog.run(args, options)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
run!
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
@@ -0,0 +1,161 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'octokit'
|
3
|
+
require 'active_support'
|
4
|
+
require 'faraday-http-cache'
|
5
|
+
|
6
|
+
module MnoeCli
|
7
|
+
module Commands
|
8
|
+
# Generate a changelog of different components for an enterprise project
|
9
|
+
# TODO:
|
10
|
+
# * https://github.com/sumoheavy/jira-ruby
|
11
|
+
# * dynamic config (in progress)
|
12
|
+
# * ARGS commits or default to HEAD/UPSTREAM
|
13
|
+
module GenerateVersionLog
|
14
|
+
# CURRENT="@{u}"
|
15
|
+
# NEXT="HEAD"
|
16
|
+
# UPSTREAM="upstream/develop"
|
17
|
+
# CURRENT="21e3a29"
|
18
|
+
# NEXT="988009e"
|
19
|
+
|
20
|
+
# CURRENT="feature/docker-img"
|
21
|
+
# NEXT="feature/update"
|
22
|
+
|
23
|
+
# CURRENT="upstream/develop"
|
24
|
+
# NEXT="origin/develop"
|
25
|
+
|
26
|
+
# CURRENT="upstream/feature/api-v2"
|
27
|
+
# NEXT="feature/api-v2"
|
28
|
+
|
29
|
+
# EY
|
30
|
+
# CURRENT="v1.0.0-rc10"
|
31
|
+
# NEXT="upstream/develop"
|
32
|
+
|
33
|
+
# SME
|
34
|
+
# CURRENT="master"
|
35
|
+
# NEXT="develop"
|
36
|
+
|
37
|
+
# Constants
|
38
|
+
GEMFILE_LOCK = 'Gemfile.lock'
|
39
|
+
YARN_LOCK = 'yarn.lock'
|
40
|
+
YARN_PKGS = %w(mno-enterprise-angular mnoe-admin-panel impac-angular)
|
41
|
+
|
42
|
+
NO_TOKEN_PROVIDED = "Warning: No token provided. Please set the $CHANGELOG_GITHUB_TOKEN variable."
|
43
|
+
|
44
|
+
def self.run(args, opts)
|
45
|
+
self.configure
|
46
|
+
|
47
|
+
@current = opts.current
|
48
|
+
@next = opts.next
|
49
|
+
|
50
|
+
workdir = Dir.getwd
|
51
|
+
project = File.basename(workdir)
|
52
|
+
current_branch = %x(git rev-parse --abbrev-ref HEAD).chomp!
|
53
|
+
|
54
|
+
# say "Generating change for '#{project}##{current_branch}'"
|
55
|
+
say "Generating change for #{project} #{@current} -> #{@next}"
|
56
|
+
|
57
|
+
say "https://github.com/maestrano/#{project}/compare/#{@current}...#{@next}"
|
58
|
+
begin
|
59
|
+
self.compare("maestrano/#{project}", @current.gsub(%r{(origin|upstream)/}, ''), @next.gsub(%r{(origin|upstream)/}, ''))
|
60
|
+
rescue
|
61
|
+
say "Cannot find branches"
|
62
|
+
end
|
63
|
+
|
64
|
+
log = %x(git diff #{@current}...#{@next} -- #{YARN_LOCK})
|
65
|
+
YARN_PKGS.each do |pkg|
|
66
|
+
self.diff_yarn_package(log, pkg)
|
67
|
+
end
|
68
|
+
|
69
|
+
log = %x(git diff #{@current}...#{@next} -- #{GEMFILE_LOCK})
|
70
|
+
self.diff_gem(log, 'mno-enteprise')
|
71
|
+
end
|
72
|
+
|
73
|
+
# Configure Octokit and the faraday middleware
|
74
|
+
def self.configure
|
75
|
+
# Github Authentication Token
|
76
|
+
Octokit.configure do |client|
|
77
|
+
client.access_token = ENV.fetch('CHANGELOG_GITHUB_TOKEN', nil)
|
78
|
+
say(NO_TOKEN_PROVIDED) unless client.access_token
|
79
|
+
end
|
80
|
+
|
81
|
+
# Add some cache
|
82
|
+
middleware_opts = {
|
83
|
+
serializer: Marshal,
|
84
|
+
store: ActiveSupport::Cache::FileStore.new("/tmp/mno-changelog-http-cache"),
|
85
|
+
logger: Logger.new("/tmp/mno-changelog-logger.log"),
|
86
|
+
shared_cache: false
|
87
|
+
}
|
88
|
+
|
89
|
+
Octokit.middleware = Faraday::RackBuilder.new do |builder|
|
90
|
+
builder.use Faraday::HttpCache, middleware_opts
|
91
|
+
builder.use Octokit::Response::RaiseError
|
92
|
+
builder.adapter Faraday.default_adapter
|
93
|
+
# builder.response :logger
|
94
|
+
end
|
95
|
+
end
|
96
|
+
|
97
|
+
def self.compare(repo, old, new)
|
98
|
+
log = Octokit.compare(repo, old, new)
|
99
|
+
|
100
|
+
log.commits.each do |c|
|
101
|
+
msg = c.commit.message
|
102
|
+
next unless msg =~ /Merge pull request/
|
103
|
+
puts "* #{msg.lines.last}"
|
104
|
+
end
|
105
|
+
end
|
106
|
+
|
107
|
+
# Return compare URL for the given package
|
108
|
+
def self.diff_yarn_package(log, package)
|
109
|
+
pattern = %r{\s*resolved "git\+https://git@github.com/maestrano/#{package}.git#(\S*)"}
|
110
|
+
|
111
|
+
puts "\n# #{package}:"
|
112
|
+
if log =~ %r{-#{pattern}}
|
113
|
+
old_version = Regexp.last_match(1)[0..8]
|
114
|
+
log =~ %r{\+#{pattern}}
|
115
|
+
new_version = Regexp.last_match(1)[0..8]
|
116
|
+
puts "https://github.com/maestrano/#{package}/compare/#{old_version}...#{new_version}"
|
117
|
+
compare("maestrano/#{package}", old_version, new_version)
|
118
|
+
else
|
119
|
+
puts "No change"
|
120
|
+
end
|
121
|
+
end
|
122
|
+
|
123
|
+
def self.diff_gem(log, gem)
|
124
|
+
pattern = %r{
|
125
|
+
remote:\s+https://github.com/maestrano/mno-enterprise(?:.git)?\s+
|
126
|
+
-\s+revision:\s+(\S*)\s+
|
127
|
+
\+\s+revision:\s+(\S*)
|
128
|
+
}x
|
129
|
+
|
130
|
+
puts "\n# mno-enterprise"
|
131
|
+
|
132
|
+
if log =~ pattern
|
133
|
+
old_version = Regexp.last_match(1)[0..8]
|
134
|
+
new_version = Regexp.last_match(2)[0..8]
|
135
|
+
puts "https://github.com/maestrano/mno-enterprise/compare/#{old_version}...#{new_version}"
|
136
|
+
compare('maestrano/mno-enterprise', old_version, new_version)
|
137
|
+
else
|
138
|
+
puts "No changes"
|
139
|
+
end
|
140
|
+
end
|
141
|
+
end
|
142
|
+
end
|
143
|
+
end
|
144
|
+
|
145
|
+
# Dir.chdir PROJECT do
|
146
|
+
# # puts "- #{REPO}"
|
147
|
+
# # compare(REPO, OLD, NEW)
|
148
|
+
#
|
149
|
+
# log = %x(git diff #{OLD}...#{NEW} -- #{YARN_LOCK})
|
150
|
+
# YARN_PKGS.each do |pkg|
|
151
|
+
# diff_yarn_package(log, pkg)
|
152
|
+
# end
|
153
|
+
#
|
154
|
+
# log = %x(git diff #{OLD}...#{NEW} -- #{GEMFILE_LOCK})
|
155
|
+
# diff_gem(log, 'mno-enteprise')
|
156
|
+
# end
|
157
|
+
|
158
|
+
|
159
|
+
|
160
|
+
|
161
|
+
|
data/mnoe_cli.gemspec
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require "mnoe_cli/version"
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "mnoe_cli"
|
8
|
+
spec.version = MnoeCli::VERSION
|
9
|
+
spec.authors = ["Olivier Brisse"]
|
10
|
+
spec.email = ["olivier.brisse@maestrano.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{Maestrano Enterprise CLI toolbelt}
|
13
|
+
spec.description = %q{CLI toolbelt for the Maestrano Enterprise framework}
|
14
|
+
spec.homepage = "https://github.com/maestrano/mnoe_cli"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
18
|
+
f.match(%r{^(test|spec|features)/})
|
19
|
+
end
|
20
|
+
spec.bindir = "exe"
|
21
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
22
|
+
spec.require_paths = ["lib"]
|
23
|
+
|
24
|
+
spec.add_runtime_dependency 'commander'
|
25
|
+
spec.add_runtime_dependency 'octokit', '~> 4.0'
|
26
|
+
spec.add_runtime_dependency 'activesupport', '>= 4.2.10'
|
27
|
+
spec.add_runtime_dependency 'faraday-http-cache'
|
28
|
+
|
29
|
+
spec.add_development_dependency "bundler", "~> 1.16"
|
30
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
31
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
32
|
+
end
|
metadata
ADDED
@@ -0,0 +1,160 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: mnoe_cli
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Olivier Brisse
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-01-24 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
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: octokit
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '4.0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '4.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: activesupport
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 4.2.10
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 4.2.10
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: faraday-http-cache
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: bundler
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '1.16'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '1.16'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rake
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '10.0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '10.0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rspec
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '3.0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '3.0'
|
111
|
+
description: CLI toolbelt for the Maestrano Enterprise framework
|
112
|
+
email:
|
113
|
+
- olivier.brisse@maestrano.com
|
114
|
+
executables:
|
115
|
+
- mnoe_cli
|
116
|
+
extensions: []
|
117
|
+
extra_rdoc_files: []
|
118
|
+
files:
|
119
|
+
- ".gitignore"
|
120
|
+
- ".rspec"
|
121
|
+
- ".travis.yml"
|
122
|
+
- CODE_OF_CONDUCT.md
|
123
|
+
- Gemfile
|
124
|
+
- LICENSE.txt
|
125
|
+
- README.md
|
126
|
+
- Rakefile
|
127
|
+
- bin/console
|
128
|
+
- bin/setup
|
129
|
+
- exe/mnoe_cli
|
130
|
+
- lib/mnoe_cli.rb
|
131
|
+
- lib/mnoe_cli/cli.rb
|
132
|
+
- lib/mnoe_cli/commands.rb
|
133
|
+
- lib/mnoe_cli/commands/generate_version_log.rb
|
134
|
+
- lib/mnoe_cli/version.rb
|
135
|
+
- mnoe_cli.gemspec
|
136
|
+
homepage: https://github.com/maestrano/mnoe_cli
|
137
|
+
licenses:
|
138
|
+
- MIT
|
139
|
+
metadata: {}
|
140
|
+
post_install_message:
|
141
|
+
rdoc_options: []
|
142
|
+
require_paths:
|
143
|
+
- lib
|
144
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
145
|
+
requirements:
|
146
|
+
- - ">="
|
147
|
+
- !ruby/object:Gem::Version
|
148
|
+
version: '0'
|
149
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
150
|
+
requirements:
|
151
|
+
- - ">="
|
152
|
+
- !ruby/object:Gem::Version
|
153
|
+
version: '0'
|
154
|
+
requirements: []
|
155
|
+
rubyforge_project:
|
156
|
+
rubygems_version: 2.6.8
|
157
|
+
signing_key:
|
158
|
+
specification_version: 4
|
159
|
+
summary: Maestrano Enterprise CLI toolbelt
|
160
|
+
test_files: []
|