ana 0.9.1 → 0.9.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 246cf2f12adb7ffa61a2c34316b0f0a2a0d8c260
4
- data.tar.gz: 8106ea3484776ce8deb881ff65500a8b0564a19a
3
+ metadata.gz: c361a04d1f9cdc79bc58e63670af79e8e80177be
4
+ data.tar.gz: d99b5e4de891d56a3667fe39c7194602c9520ddc
5
5
  SHA512:
6
- metadata.gz: 8250ae1ef99cfe5328047641675fabac4c8b2333863478251ad73a518f90a4a997c753669f2a6261be8c936790da04670ee624038f9cfbd6d11b93d7f323e081
7
- data.tar.gz: bdcd252b91de25daaf951b166aba374f27043470f958ee031c9c2830561c5c14edc06c74fa24ef79611d82458716d1ae4a3a034964c6ae8ce455307845bf9db3
6
+ metadata.gz: 37b3628717ef9e3fe633f4a99067dcb5e8c787bbf071ba6ec93a68cb49bb71aa2a5dfd7c71d8adf07abbbd7e260ae50bc6e7d8202cde8b83a3d8b554b967a0f2
7
+ data.tar.gz: e5cef8078038a4d83eaee77a5978e66684ecb2352f4e31da7c1356064d72b635de07c2be346d2fe335bc38289f65e236b40d99a3dba46202917014987aca54ce
data/README.md CHANGED
@@ -109,9 +109,6 @@ via [launchy][2] gem.
109
109
 
110
110
  #### Download a Gem
111
111
 
112
- Available URI: Project Page, Homepage, Wiki, Documentation, Mailing List,
113
- Source Code, Bug Tracker.
114
-
115
112
  ```bash
116
113
  $ ana dl rails
117
114
  will open the browser and download rails gem.
@@ -125,7 +122,7 @@ Ruby >= 2.0
125
122
 
126
123
  * Add tests.
127
124
  * Download via wget/curl.
128
- * Download gem and its runtime dependencies in a zip/tar or in batch.
125
+ * Download gem and its runtime dependencies in a zip/tar or in files.
129
126
 
130
127
  ## Contributing
131
128
 
data/lib/ana/command.rb CHANGED
@@ -190,9 +190,8 @@ module Ana
190
190
  if File.exist? file_path
191
191
  remove_file(file_path, verbose: false)
192
192
  create_file(file_path, data, verbose: false)
193
- say_status(:update, file_path)
194
193
  else
195
- create_file(file_path, data)
194
+ create_file(file_path, data, verbose: false)
196
195
  end
197
196
  end
198
197
 
data/lib/ana/core_ext.rb CHANGED
@@ -1,4 +1,5 @@
1
1
  class String
2
+ # A string is present if it's not a blank string.
2
3
  def present?
3
4
  !blank?
4
5
  end
data/lib/ana/version.rb CHANGED
@@ -2,7 +2,7 @@ module Ana
2
2
  module VERSION
3
3
  MAJOR = 0
4
4
  MINOR = 9
5
- TINY = 1
5
+ TINY = 2
6
6
  PRE = nil
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ana
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.1
4
+ version: 0.9.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juanito Fatas