deplist 0.5.23 → 0.5.24
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 +4 -4
- data/README.md +5 -1
- data/lib/deplist/installer.rb +1 -2
- data/lib/deplist/version.rb +1 -1
- data/lib/tasks/show_dep.rake +0 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9763d8e85bd7cf9c6c2dee1ba391f54b68512063
|
|
4
|
+
data.tar.gz: 7b234ce2e4831461a2baae3d0661d1d215e56888
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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:
|
|
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
|
|
data/lib/deplist/installer.rb
CHANGED
data/lib/deplist/version.rb
CHANGED
data/lib/tasks/show_dep.rake
CHANGED
|
@@ -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
|