deplist 0.5.23 → 0.5.24

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cf7f0d364f2762c4402a752ad09f36f7da3e2b3b
4
- data.tar.gz: c292908171bf9f0f647a6f8b829e1a5d55af8045
3
+ metadata.gz: 9763d8e85bd7cf9c6c2dee1ba391f54b68512063
4
+ data.tar.gz: 7b234ce2e4831461a2baae3d0661d1d215e56888
5
5
  SHA512:
6
- metadata.gz: 898e14fdb99d4c5583ac7729dfe4a2f6a74219e46b9e24eaed5fd443c1184ca4b7959278716703da55f4e6bdc3729c5a28b673827e725967916fa92131e88626
7
- data.tar.gz: 0085eb92d5b96476390ddf36e71255fa61b813df88ebab8b152cbb7d4289339daaddbebb98bdad47c88e2d132c93ecb4f7e8c0d8276046009c5af5c7dff0d85e
6
+ metadata.gz: e7afcd94d9b7148c5ca359cc68e17ea4581f312094bb65d07bdda7bee56854296344b5954e175d88efe0340fabe6d2c5f90d97286fc8651c3afb2bf89bac0a70
7
+ data.tar.gz: c4e27d309826da20c847b01ade14c66229798710dd2c27fd68cbb13ad128797ab60d51626ad9e90bcc610a65f64faa9267360d382aa90e08b4d4b4a4e29a5ce1
data/README.md CHANGED
@@ -6,7 +6,11 @@ Collects the project dependencies and operating system information, sends them t
6
6
 
7
7
  DepList detects missing system dependencies of gems you are using in your Rails project. It sends them to an external API which responds with a list of dependencies that your system needs to be able to run your project. DepList also asks you to add a list of dependencies for gems that it could not identify, and sends them back to the external API to populate its knowledge base.
8
8
 
9
- NOTE: DepList will not ask you to install system packages you already have. In case DepList fails to install any packages, it will let you know the name of the packages so you can configure them manually. DepList keeps a log of all its operations in `log/deplist.log`.
9
+ NOTE:
10
+ DepList will not ask you to install system packages you already have.
11
+ In case DepList fails to install any packages, it will let you know the name of
12
+ the packages so you can install them manually.
13
+ DepList keeps a log of all its operations in `log/deplist.log`.
10
14
 
11
15
  ## Installation
12
16
 
@@ -28,8 +28,7 @@ class Installer
28
28
  end
29
29
 
30
30
  def linux_install(pkg)
31
- # TODO: change pacman to 'apt-get -y install'
32
- system("sudo pacman -S #{pkg} --noconfirm")
31
+ system("sudo apt-get -y install #{pkg}")
33
32
  end
34
33
 
35
34
  def macosx_install(pkg)
@@ -1,3 +1,3 @@
1
1
  module Deplist
2
- VERSION = '0.5.23'.freeze
2
+ VERSION = '0.5.24'.freeze
3
3
  end
@@ -11,7 +11,6 @@ namespace :deplist do
11
11
  unknown_gems = server.unknown_gems
12
12
 
13
13
  if unknown_gems.any?
14
- # TODO: change this message
15
14
  puts "I don't know this gems can you tell"\
16
15
  'me what dependencies they need if you know? (y/n)'.yellow
17
16
  puts unknown_gems.join(', ').red
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: deplist
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.23
4
+ version: 0.5.24
5
5
  platform: ruby
6
6
  authors:
7
7
  - adham90