rsyslibs 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +14 -0
- data/.rspec +2 -0
- data/.rubocop.yml +6 -0
- data/.travis.yml +5 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +73 -0
- data/LICENSE.txt +21 -0
- data/README.md +87 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/exe/rsyslibs +4 -0
- data/lib/rsyslibs.rb +69 -0
- data/lib/rsyslibs/cli.rb +23 -0
- data/lib/rsyslibs/operating_system_info.rb +24 -0
- data/lib/rsyslibs/request.rb +12 -0
- data/lib/rsyslibs/version.rb +3 -0
- data/rsyslibs.gemspec +44 -0
- metadata +186 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 3392c2f37b64465d61bbf31af3ccb46da5e3059d
|
4
|
+
data.tar.gz: caee22f8f535eb259cccd991c62df38c0a0b18b3
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 0920aaa7c0864a7e1a13af3f8fa69f680e896a8966422508da87f2b51beaa858cd5f7ba086fb4c68706d39492a9ed24d131844f2e7463c8592a5060099906f69
|
7
|
+
data.tar.gz: 33a68a2efc1cd1370f45cf6495ae374495101675aab8c052d3515e0540c4f19a0d60310d0d550682e4fa34c06ac11778b2664c181deccca31035345aa0d518b0
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.rubocop.yml
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 amrrbakry17@gmail.com. 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/Gemfile.lock
ADDED
@@ -0,0 +1,73 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
rsyslibs (0.2.0)
|
5
|
+
os (~> 1.0)
|
6
|
+
rest-client (~> 2.0, >= 2.0.2)
|
7
|
+
thor (~> 0.20.0)
|
8
|
+
|
9
|
+
GEM
|
10
|
+
remote: https://rubygems.org/
|
11
|
+
specs:
|
12
|
+
ast (2.3.0)
|
13
|
+
byebug (9.1.0)
|
14
|
+
diff-lcs (1.3)
|
15
|
+
domain_name (0.5.20170404)
|
16
|
+
unf (>= 0.0.5, < 1.0.0)
|
17
|
+
http-cookie (1.0.3)
|
18
|
+
domain_name (~> 0.5)
|
19
|
+
mime-types (3.1)
|
20
|
+
mime-types-data (~> 3.2015)
|
21
|
+
mime-types-data (3.2016.0521)
|
22
|
+
netrc (0.11.0)
|
23
|
+
os (1.0.0)
|
24
|
+
parallel (1.12.1)
|
25
|
+
parser (2.4.0.2)
|
26
|
+
ast (~> 2.3)
|
27
|
+
powerpack (0.1.1)
|
28
|
+
rainbow (3.0.0)
|
29
|
+
rake (10.5.0)
|
30
|
+
rest-client (2.0.2)
|
31
|
+
http-cookie (>= 1.0.2, < 2.0)
|
32
|
+
mime-types (>= 1.16, < 4.0)
|
33
|
+
netrc (~> 0.8)
|
34
|
+
rspec (3.7.0)
|
35
|
+
rspec-core (~> 3.7.0)
|
36
|
+
rspec-expectations (~> 3.7.0)
|
37
|
+
rspec-mocks (~> 3.7.0)
|
38
|
+
rspec-core (3.7.0)
|
39
|
+
rspec-support (~> 3.7.0)
|
40
|
+
rspec-expectations (3.7.0)
|
41
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
42
|
+
rspec-support (~> 3.7.0)
|
43
|
+
rspec-mocks (3.7.0)
|
44
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
45
|
+
rspec-support (~> 3.7.0)
|
46
|
+
rspec-support (3.7.0)
|
47
|
+
rubocop (0.52.0)
|
48
|
+
parallel (~> 1.10)
|
49
|
+
parser (>= 2.4.0.2, < 3.0)
|
50
|
+
powerpack (~> 0.1)
|
51
|
+
rainbow (>= 2.2.2, < 4.0)
|
52
|
+
ruby-progressbar (~> 1.7)
|
53
|
+
unicode-display_width (~> 1.0, >= 1.0.1)
|
54
|
+
ruby-progressbar (1.9.0)
|
55
|
+
thor (0.20.0)
|
56
|
+
unf (0.1.4)
|
57
|
+
unf_ext
|
58
|
+
unf_ext (0.0.7.4)
|
59
|
+
unicode-display_width (1.3.0)
|
60
|
+
|
61
|
+
PLATFORMS
|
62
|
+
ruby
|
63
|
+
|
64
|
+
DEPENDENCIES
|
65
|
+
bundler (~> 1.15)
|
66
|
+
byebug (~> 9.1)
|
67
|
+
rake (~> 10.0)
|
68
|
+
rspec (~> 3.0)
|
69
|
+
rsyslibs!
|
70
|
+
rubocop (~> 0.52.0)
|
71
|
+
|
72
|
+
BUNDLED WITH
|
73
|
+
1.15.1
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2017 Amr El-Bakry
|
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,87 @@
|
|
1
|
+
# Rsyslibs
|
2
|
+
|
3
|
+
A simple ruby library to determine the required system-level packages for your project dependencies.
|
4
|
+
|
5
|
+
## Overview
|
6
|
+
|
7
|
+
The Ruby Gem package manager ‘bundler’ and NodeJS ‘npm’ are excellent tools to install
|
8
|
+
project-specific dependencies.
|
9
|
+
However, they both share a major flaw, the ability to determine system-level packages required
|
10
|
+
to build native extensions.
|
11
|
+
|
12
|
+
For example, when you want to install a Ruby gem such as ‘nokogiri’, and if you don’t know
|
13
|
+
upfront, you will be hit with an exception about a missing system library. Only when you check
|
14
|
+
Nokogiri’s website, you will find out that you need to install ‘zlib1g-dev’ and ‘liblzma-dev’.
|
15
|
+
|
16
|
+
**Rsyslibs** collects all gems in your project along with operating system info and sends them to a database-driven RESTful API which looks up and returns the system-level libraries required to install your local gems.
|
17
|
+
|
18
|
+
*contribute to the API [here](https://github.com/Amrrbakry/rsyslibs_api).*
|
19
|
+
|
20
|
+
## Installation
|
21
|
+
|
22
|
+
Add this line to your application's Gemfile:
|
23
|
+
|
24
|
+
```ruby
|
25
|
+
gem 'rsyslibs'
|
26
|
+
```
|
27
|
+
|
28
|
+
And then execute:
|
29
|
+
|
30
|
+
$ bundle
|
31
|
+
|
32
|
+
Or install it yourself as:
|
33
|
+
|
34
|
+
$ gem install rsyslibs
|
35
|
+
|
36
|
+
## Usage
|
37
|
+
|
38
|
+
To look up the system-level libraries you need for your project dependencies, simpley run:
|
39
|
+
|
40
|
+
```ruby
|
41
|
+
$ rsyslibs system_dependencies
|
42
|
+
```
|
43
|
+
|
44
|
+
|
45
|
+
or use:
|
46
|
+
|
47
|
+
```ruby
|
48
|
+
Rsyslibs::Dependencies.system_dependencies
|
49
|
+
```
|
50
|
+
|
51
|
+
|
52
|
+
To get a formatted human-readable output from the API, run:
|
53
|
+
|
54
|
+
```ruby
|
55
|
+
$ rsyslibs print_friendly_syslibs
|
56
|
+
```
|
57
|
+
|
58
|
+
or
|
59
|
+
|
60
|
+
```ruby
|
61
|
+
Rsyslibs::Dependencies.print_friendly_syslibs
|
62
|
+
```
|
63
|
+
|
64
|
+
To fetch all required system-level libraries and **install them**:
|
65
|
+
|
66
|
+
```ruby
|
67
|
+
$ rsyslibs install_syslibs # MacOS and Linux only
|
68
|
+
```
|
69
|
+
|
70
|
+
|
71
|
+
## Development
|
72
|
+
|
73
|
+
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.
|
74
|
+
|
75
|
+
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).
|
76
|
+
|
77
|
+
## Contributing
|
78
|
+
|
79
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/amrrbakry/rsyslibs. 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.
|
80
|
+
|
81
|
+
## License
|
82
|
+
|
83
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
84
|
+
|
85
|
+
## Code of Conduct
|
86
|
+
|
87
|
+
Everyone interacting in the Rsyslibs project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/amrrbakry/rsyslibs/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 'rsyslibs'
|
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/rsyslibs
ADDED
data/lib/rsyslibs.rb
ADDED
@@ -0,0 +1,69 @@
|
|
1
|
+
require 'rsyslibs/version'
|
2
|
+
require 'rsyslibs/operating_system_info'
|
3
|
+
require 'rsyslibs/request'
|
4
|
+
require 'bundler'
|
5
|
+
require 'json'
|
6
|
+
|
7
|
+
module Rsyslibs
|
8
|
+
class Dependencies
|
9
|
+
class << self
|
10
|
+
def system_dependencies
|
11
|
+
payload = {
|
12
|
+
project_dependencies: project_dependencies,
|
13
|
+
os_info: os_info
|
14
|
+
}.to_json
|
15
|
+
parse_response(api(:post, '/lookup_syslibs', payload))
|
16
|
+
end
|
17
|
+
|
18
|
+
def project_dependencies
|
19
|
+
Bundler.definition.dependencies.map(&:name)
|
20
|
+
end
|
21
|
+
|
22
|
+
def print_friendly_syslibs
|
23
|
+
syslibs = JSON.parse(system_dependencies)
|
24
|
+
return 'No libraries found.' if syslibs.empty?
|
25
|
+
|
26
|
+
puts "#{syslibs.size} system libraries found..."
|
27
|
+
puts ''
|
28
|
+
syslibs.each_with_index do |lib, index|
|
29
|
+
project_dependencies = lib['project_dependencies'].collect { |v| v['name'] }.join(', ')
|
30
|
+
puts "#{index + 1}- #{lib['name']} for gems (#{project_dependencies}) on operating system #{lib['os']}."
|
31
|
+
end
|
32
|
+
puts ''
|
33
|
+
puts "Run 'sudo apt-get install LIBRARY NAME' to install on Ubuntu and Debian-based distros."
|
34
|
+
puts "Run 'brew install LIBRARY NAME' to install on macOS."
|
35
|
+
syslibs
|
36
|
+
end
|
37
|
+
|
38
|
+
def install_syslibs
|
39
|
+
syslibs = JSON.parse(system_dependencies)
|
40
|
+
return 'No libraries found.' if syslibs.empty?
|
41
|
+
|
42
|
+
os_name = Rsyslibs::OperatingSystemInfo.os_name
|
43
|
+
case os_name
|
44
|
+
when 'MacOS' then syslibs.each { |lib| `brew install #{lib['name']}` }
|
45
|
+
when 'Linux' then syslibs.each { |lib| `apt-get install #{lib['name']}` }
|
46
|
+
else "I don't know how to install these libraries on this operating system :("
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
private
|
51
|
+
|
52
|
+
def parse_response(response)
|
53
|
+
if response.code == 200
|
54
|
+
response.body
|
55
|
+
else
|
56
|
+
'Request failed. Please try again.'
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
def os_info
|
61
|
+
Rsyslibs::OperatingSystemInfo.os_info
|
62
|
+
end
|
63
|
+
|
64
|
+
def api(method, path, payload, headers = { content_type: :json, accpet: :json })
|
65
|
+
Rsyslibs::Request.api(method, path, payload, headers)
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
data/lib/rsyslibs/cli.rb
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
require 'thor'
|
2
|
+
require 'rsyslibs'
|
3
|
+
|
4
|
+
module Rsyslibs
|
5
|
+
class CLI < Thor
|
6
|
+
desc 'system_dependencies', 'Fetches all required system-level libraries for your project dependencies'
|
7
|
+
def system_dependencies
|
8
|
+
puts Rsyslibs::Dependencies.system_dependencies
|
9
|
+
end
|
10
|
+
|
11
|
+
desc 'print_friendly_syslibs', 'Fetches all required system-level libraries for your project dependencies
|
12
|
+
and prints them in a formatted friendly way'
|
13
|
+
def print_friendly_syslibs
|
14
|
+
puts Rsyslibs::Dependencies.print_friendly_syslibs
|
15
|
+
end
|
16
|
+
|
17
|
+
desc 'install_syslibs', 'Fetches all required system-level libraries for your project dependencies
|
18
|
+
and installs them.'
|
19
|
+
def install_syslibs
|
20
|
+
puts Rsyslibs::Dependencies.install_syslibs
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
require 'os'
|
2
|
+
require 'yaml'
|
3
|
+
|
4
|
+
module Rsyslibs
|
5
|
+
class OperatingSystemInfo
|
6
|
+
def self.os_info
|
7
|
+
os_report = YAML.safe_load(OS.report)
|
8
|
+
{
|
9
|
+
os: os_report['target_os'],
|
10
|
+
os_vendor: os_report['target_vendor'],
|
11
|
+
os_bits: OS.bits,
|
12
|
+
ruby_platform: os_report['RUBY_PLATFORM']
|
13
|
+
}
|
14
|
+
end
|
15
|
+
|
16
|
+
def self.os_name
|
17
|
+
return 'MacOS' if OS.mac?
|
18
|
+
|
19
|
+
return 'Linux' if OS.linux?
|
20
|
+
|
21
|
+
'Unknown OS'
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
require 'rest-client'
|
2
|
+
|
3
|
+
module Rsyslibs
|
4
|
+
class Request
|
5
|
+
API_BASE_URL = 'https://rsyslibsapi.herokuapp.com'.freeze
|
6
|
+
|
7
|
+
def self.api(method, path, payload, headers)
|
8
|
+
url = "#{API_BASE_URL}#{path}"
|
9
|
+
RestClient::Request.execute(method: method, url: url, payload: payload, headers: headers)
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
data/rsyslibs.gemspec
ADDED
@@ -0,0 +1,44 @@
|
|
1
|
+
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'rsyslibs/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'rsyslibs'
|
8
|
+
spec.version = Rsyslibs::VERSION
|
9
|
+
spec.authors = ['Amr El-Bakry']
|
10
|
+
spec.email = ['amrrbakry17@gmail.com']
|
11
|
+
|
12
|
+
spec.summary = 'A simple ruby library to determine the required system-level packages for your
|
13
|
+
project dependencies.'
|
14
|
+
spec.description = 'Rsyslibs collects all local gems in your project and sends them to a web server to determine
|
15
|
+
the system libraries you need to install.'
|
16
|
+
spec.homepage = 'https://github.com/amrrbakry/rsyslibs'
|
17
|
+
spec.license = 'MIT'
|
18
|
+
|
19
|
+
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
20
|
+
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
21
|
+
if spec.respond_to?(:metadata)
|
22
|
+
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
|
23
|
+
else
|
24
|
+
raise 'RubyGems 2.0 or newer is required to protect against ' \
|
25
|
+
'public gem pushes.'
|
26
|
+
end
|
27
|
+
|
28
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
29
|
+
f.match(%r{^(test|spec|features)/})
|
30
|
+
end
|
31
|
+
spec.bindir = 'exe'
|
32
|
+
spec.executables = ['rsyslibs']
|
33
|
+
spec.require_paths = ['lib']
|
34
|
+
|
35
|
+
spec.add_development_dependency 'bundler', '~> 1.15'
|
36
|
+
spec.add_development_dependency 'byebug', '~> 9.1'
|
37
|
+
spec.add_development_dependency 'rake', '~> 10.0'
|
38
|
+
spec.add_development_dependency 'rspec', '~> 3.0'
|
39
|
+
spec.add_development_dependency 'rubocop', '~> 0.52.0'
|
40
|
+
|
41
|
+
spec.add_dependency 'os', '~> 1.0'
|
42
|
+
spec.add_dependency 'rest-client', '~> 2.0', '>= 2.0.2'
|
43
|
+
spec.add_dependency 'thor', '~> 0.20.0'
|
44
|
+
end
|
metadata
ADDED
@@ -0,0 +1,186 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rsyslibs
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.2.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Amr El-Bakry
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-12-22 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.15'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.15'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: byebug
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '9.1'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '9.1'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '10.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '10.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rspec
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '3.0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '3.0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rubocop
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 0.52.0
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 0.52.0
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: os
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '1.0'
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '1.0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rest-client
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '2.0'
|
104
|
+
- - ">="
|
105
|
+
- !ruby/object:Gem::Version
|
106
|
+
version: 2.0.2
|
107
|
+
type: :runtime
|
108
|
+
prerelease: false
|
109
|
+
version_requirements: !ruby/object:Gem::Requirement
|
110
|
+
requirements:
|
111
|
+
- - "~>"
|
112
|
+
- !ruby/object:Gem::Version
|
113
|
+
version: '2.0'
|
114
|
+
- - ">="
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
version: 2.0.2
|
117
|
+
- !ruby/object:Gem::Dependency
|
118
|
+
name: thor
|
119
|
+
requirement: !ruby/object:Gem::Requirement
|
120
|
+
requirements:
|
121
|
+
- - "~>"
|
122
|
+
- !ruby/object:Gem::Version
|
123
|
+
version: 0.20.0
|
124
|
+
type: :runtime
|
125
|
+
prerelease: false
|
126
|
+
version_requirements: !ruby/object:Gem::Requirement
|
127
|
+
requirements:
|
128
|
+
- - "~>"
|
129
|
+
- !ruby/object:Gem::Version
|
130
|
+
version: 0.20.0
|
131
|
+
description: |-
|
132
|
+
Rsyslibs collects all local gems in your project and sends them to a web server to determine
|
133
|
+
the system libraries you need to install.
|
134
|
+
email:
|
135
|
+
- amrrbakry17@gmail.com
|
136
|
+
executables:
|
137
|
+
- rsyslibs
|
138
|
+
extensions: []
|
139
|
+
extra_rdoc_files: []
|
140
|
+
files:
|
141
|
+
- ".gitignore"
|
142
|
+
- ".rspec"
|
143
|
+
- ".rubocop.yml"
|
144
|
+
- ".travis.yml"
|
145
|
+
- CODE_OF_CONDUCT.md
|
146
|
+
- Gemfile
|
147
|
+
- Gemfile.lock
|
148
|
+
- LICENSE.txt
|
149
|
+
- README.md
|
150
|
+
- Rakefile
|
151
|
+
- bin/console
|
152
|
+
- bin/setup
|
153
|
+
- exe/rsyslibs
|
154
|
+
- lib/rsyslibs.rb
|
155
|
+
- lib/rsyslibs/cli.rb
|
156
|
+
- lib/rsyslibs/operating_system_info.rb
|
157
|
+
- lib/rsyslibs/request.rb
|
158
|
+
- lib/rsyslibs/version.rb
|
159
|
+
- rsyslibs.gemspec
|
160
|
+
homepage: https://github.com/amrrbakry/rsyslibs
|
161
|
+
licenses:
|
162
|
+
- MIT
|
163
|
+
metadata:
|
164
|
+
allowed_push_host: https://rubygems.org
|
165
|
+
post_install_message:
|
166
|
+
rdoc_options: []
|
167
|
+
require_paths:
|
168
|
+
- lib
|
169
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
170
|
+
requirements:
|
171
|
+
- - ">="
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: '0'
|
174
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
175
|
+
requirements:
|
176
|
+
- - ">="
|
177
|
+
- !ruby/object:Gem::Version
|
178
|
+
version: '0'
|
179
|
+
requirements: []
|
180
|
+
rubyforge_project:
|
181
|
+
rubygems_version: 2.6.12
|
182
|
+
signing_key:
|
183
|
+
specification_version: 4
|
184
|
+
summary: A simple ruby library to determine the required system-level packages for
|
185
|
+
your project dependencies.
|
186
|
+
test_files: []
|