colorls 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/colorls.gemspec +14 -13
  3. data/lib/colorls/version.rb +1 -1
  4. metadata +11 -10
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 03284e40013cff842081767d4f8118e037ab5ecf
4
- data.tar.gz: f9f342894cccb5dc7f5231e4273f8ebacf17877e
3
+ metadata.gz: 0b6af9b605062f673ca69ad3c881b74cd355946d
4
+ data.tar.gz: 5f11e62d8a132187fb781b251c1ad808ad256ca8
5
5
  SHA512:
6
- metadata.gz: 1597a907cc5fb9b4dc1a9e928d6ef514cd49d19f44ae8a9723382edb25b2652faf561fa238509351b8a0f41c94fb101c231dafe90c9368e24e2924a42a400f52
7
- data.tar.gz: 9af5861331a7d00b3c3ee7336352cb17cb053b26b3d47e3fd6566950e16dcefece09b9c0e451e7e7c98dc067e85c050f46442c42d87c60980b3bea64bc58fbfe
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 = <<-EOF
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'
@@ -1,3 +1,3 @@
1
1
  module ColorLS
2
- VERSION = '1.0.0'.freeze
2
+ VERSION = '1.0.1'.freeze
3
3
  end
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.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
- Sort by dirs : -sd flag has been renamed to --sd
220
- Sort by files : -sf flag has been renamed to --sf
221
- Git status : -gs flag has been renamed to --gs
217
+ *******************************************************************
218
+ Changes introduced in colorls
222
219
 
223
- Clubbed flags : `colorls -ald` works
224
- Help menu : `colorls -h` provides all possible flag options
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