nsrr 0.3.0.beta2 → 0.3.0.rc

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +20 -10
  3. data/README.md +1 -1
  4. data/lib/nsrr/version.rb +1 -1
  5. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3617fdc3476fa145a6b242b5d6923eab454c08da
4
- data.tar.gz: 9e0ac9c85ecb612f90a5c214bb7a662771cffd7f
3
+ metadata.gz: 85972cf47f19ac0c6c1811f3736bb50cf5ca21ec
4
+ data.tar.gz: 04af2575414520086fc302dc8097dddea8cf380c
5
5
  SHA512:
6
- metadata.gz: 459139b16b2e1da5916fdaed81680899f3cc00db20954be061fc591bfe7ac65141809c0824b023b1b159c40e0b8c4dcdc3fd686803863ac9a3a028f321c54125
7
- data.tar.gz: c392841b81dcfe272030862fbfb95649d8b3c6b5923d5eefe002eb2c3964f6d6a7b481d979587f4c843bc1403d354e6bb212caf3335817d1c968e539cd0cc223
6
+ metadata.gz: 64c9524b1f0c0123fc1b596c264910651018885728abf054199c4d797e53925482ec1b1fcec82dcd2523870693d7708d74c2f1380e9ba2ffe2c0bb0224c3c167
7
+ data.tar.gz: b68dcbbe14eca8186dd39a5b1d9b20b4c9bee46ae3097760f04cfc293dc5344d6f0b3a383174b601a415c63a28024ee3da02ef14b17d5fe80419b0172a2de9bd
@@ -14,31 +14,38 @@
14
14
  - Bundler is now a required dependency
15
15
 
16
16
  ### Bug Fix
17
- - Fixed an issue that flooded test output with uninitialized string class instance variable `@disable_colorization`
17
+ - Fixed an issue that flooded test output with uninitialized string class
18
+ instance variable `@disable_colorization`
18
19
 
19
20
  ## 0.2.0 (May 29, 2015)
20
21
 
21
22
  ### Enhancements
22
- - The `nsrr download` command now allows users to download files from private datasets
23
- - The `nsrr download` command provides better feedback on the validity of the authorization token provided by the user
23
+ - The `nsrr download` command now allows users to download files from private
24
+ datasets
25
+ - The `nsrr download` command provides better feedback on the validity of the
26
+ authorization token provided by the user
24
27
  - Use of Ruby 2.2.2 is now recommended
25
28
  - Added text to inform users that input is hidden while entering token
26
29
 
27
30
  ### Bug Fixes
28
- - Fixed an issue preventing public files from being downloaded when an invalid token was entered
31
+ - Fixed an issue preventing public files from being downloaded when an invalid
32
+ token was entered
29
33
 
30
34
  ## 0.1.1 (October 23, 2014)
31
35
 
32
36
  ### Enhancements
33
- - User token input is now hidden to prevent discovery of tokens in console history
37
+ - User token input is now hidden to prevent discovery of tokens in console
38
+ history
34
39
  - Use of Ruby 2.1.3 is now recommended
35
40
 
36
41
  ## 0.1.0 (September 29, 2014)
37
42
 
38
43
  ### Enhancements
39
- - Added a `nsrr download` command that allows users to download partial or entire datasets
44
+ - Added a `nsrr download` command that allows users to download partial or
45
+ entire datasets
40
46
  - Example: `nsrr download shhs`
41
- - Added a `nsrr console` command that allows users to access and download datasets and files
47
+ - Added a `nsrr console` command that allows users to access and download
48
+ datasets and files
42
49
  - Datasets can be loaded in the console environment
43
50
  - `d = Dataset.find 'shhs'`
44
51
  - Dataset files can be downloaded as well
@@ -48,16 +55,19 @@
48
55
  - can be `nil` to download entire dataset or a string to specify a folder
49
56
  - **method**
50
57
  - 'md5' [default]
51
- - Checks if a downloaded file exists with the exact md5 as the online version, if so, skips that file
58
+ - Checks if a downloaded file exists with the exact md5 as the online
59
+ version, if so, skips that file
52
60
  - 'fresh'
53
61
  - Downloads every file without checking if it was already downloaded
54
62
  - 'fast'
55
- - Only checks if a download file exists with the same file size as the online version, if so, skips that file
63
+ - Only checks if a download file exists with the same file size as the
64
+ online version, if so, skips that file
56
65
  - **depth**
57
66
  - 'recursive' [default]
58
67
  - Downloads files in selected path folder and all subfolders
59
68
  - 'shallow'
60
69
  - Only downloads files in selected path folder
61
- - Added a `nsrr update` command the provides the user with information on how to update the nsrr gem
70
+ - Added a `nsrr update` command the provides the user with information on how to
71
+ update the nsrr gem
62
72
  - Added a `nsrr version` command the returns the current version of the nsrr gem
63
73
  - Added testing framework to more easily add new tests for new features
data/README.md CHANGED
@@ -231,7 +231,7 @@ gem -v
231
231
  ```
232
232
 
233
233
  You can fix this error by reverting to the last stable version of RubyGems,
234
- `2.4.8`.
234
+ `2.4.8`. Note: RubyGems `2.6.3` also includes a fix to this issue.
235
235
 
236
236
  ```console
237
237
  gem update --system 2.4.8 --no-document
@@ -5,7 +5,7 @@ module Nsrr
5
5
  MAJOR = 0
6
6
  MINOR = 3
7
7
  TINY = 0
8
- BUILD = 'beta2' # 'pre', 'beta1', 'beta2', 'rc', 'rc2', nil
8
+ BUILD = 'rc' # 'pre', 'beta1', 'beta2', 'rc', 'rc2', nil
9
9
 
10
10
  STRING = [MAJOR, MINOR, TINY, BUILD].compact.join('.')
11
11
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nsrr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0.beta2
4
+ version: 0.3.0.rc
5
5
  platform: ruby
6
6
  authors:
7
7
  - Remo Mueller
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-04-20 00:00:00.000000000 Z
11
+ date: 2016-04-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler