colorls 1.0.0 → 1.0.1
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/colorls.gemspec +14 -13
- data/lib/colorls/version.rb +1 -1
- metadata +11 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0b6af9b605062f673ca69ad3c881b74cd355946d
|
|
4
|
+
data.tar.gz: 5f11e62d8a132187fb781b251c1ad808ad256ca8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a957c3826a7fe8bfd8888c1bdf41a20452fd320c00d12c5e09aba839ae66e5543eba9f4929270a077762e769db750e1d9da7a2aeccb15d7eb7fe9a62a1e03a58
|
|
7
|
+
data.tar.gz: c105f060d66a64ce565e3c3b4a1b674f22e27c9d297f10e147b767a85726c32858578f49ffddf4d98bc3cc9e19d68ef535556144b4c0943d01c0737e81810b80
|
data/colorls.gemspec
CHANGED
|
@@ -2,12 +2,24 @@ lib = File.expand_path('../lib', __FILE__)
|
|
|
2
2
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
3
3
|
require 'colorls/version'
|
|
4
4
|
|
|
5
|
+
ColorLS::POST_INSTALL_MESSAGE = %(
|
|
6
|
+
*******************************************************************
|
|
7
|
+
Changes introduced in colorls
|
|
8
|
+
|
|
9
|
+
Sort by dirs : -sd flag has been renamed to --sd
|
|
10
|
+
Sort by files : -sf flag has been renamed to --sf
|
|
11
|
+
Git status : -gs flag has been renamed to --gs
|
|
12
|
+
|
|
13
|
+
Clubbed flags : `colorls -ald` works
|
|
14
|
+
Help menu : `colorls -h` provides all possible flag options
|
|
15
|
+
*******************************************************************
|
|
16
|
+
).freeze
|
|
17
|
+
|
|
5
18
|
Gem::Specification.new do |spec|
|
|
6
19
|
spec.name = 'colorls'
|
|
7
20
|
spec.version = ColorLS::VERSION
|
|
8
21
|
spec.authors = ['Athitya Kumar']
|
|
9
22
|
spec.email = ['athityakumar@gmail.com']
|
|
10
|
-
|
|
11
23
|
spec.summary = "A Ruby CLI gem that beautifies the terminal's ls command, with color and font-awesome icons."
|
|
12
24
|
spec.homepage = 'https://github.com/athityakumar/colorls'
|
|
13
25
|
spec.license = 'MIT'
|
|
@@ -19,18 +31,7 @@ Gem::Specification.new do |spec|
|
|
|
19
31
|
spec.executables = 'colorls'
|
|
20
32
|
spec.require_paths = ['lib']
|
|
21
33
|
|
|
22
|
-
spec.post_install_message =
|
|
23
|
-
*************************************************************************
|
|
24
|
-
Changes introduced in colorls-v1.0.0
|
|
25
|
-
|
|
26
|
-
Sort by dirs : -sd flag has been renamed to --sd
|
|
27
|
-
Sort by files : -sf flag has been renamed to --sf
|
|
28
|
-
Git status : -gs flag has been renamed to --gs
|
|
29
|
-
|
|
30
|
-
Clubbed flags : `colorls -ald` works
|
|
31
|
-
Help menu : `colorls -h` provides all possible flag options
|
|
32
|
-
*************************************************************************
|
|
33
|
-
EOF
|
|
34
|
+
spec.post_install_message = ColorLS::POST_INSTALL_MESSAGE
|
|
34
35
|
|
|
35
36
|
spec.add_runtime_dependency 'colorize'
|
|
36
37
|
spec.add_runtime_dependency 'facets'
|
data/lib/colorls/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: colorls
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Athitya Kumar
|
|
@@ -212,17 +212,18 @@ homepage: https://github.com/athityakumar/colorls
|
|
|
212
212
|
licenses:
|
|
213
213
|
- MIT
|
|
214
214
|
metadata: {}
|
|
215
|
-
post_install_message: |
|
|
216
|
-
*************************************************************************
|
|
217
|
-
Changes introduced in colorls-v1.0.0
|
|
215
|
+
post_install_message: |2
|
|
218
216
|
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
Git status : -gs flag has been renamed to --gs
|
|
217
|
+
*******************************************************************
|
|
218
|
+
Changes introduced in colorls
|
|
222
219
|
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
220
|
+
Sort by dirs : -sd flag has been renamed to --sd
|
|
221
|
+
Sort by files : -sf flag has been renamed to --sf
|
|
222
|
+
Git status : -gs flag has been renamed to --gs
|
|
223
|
+
|
|
224
|
+
Clubbed flags : `colorls -ald` works
|
|
225
|
+
Help menu : `colorls -h` provides all possible flag options
|
|
226
|
+
*******************************************************************
|
|
226
227
|
rdoc_options: []
|
|
227
228
|
require_paths:
|
|
228
229
|
- lib
|