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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -10
- data/README.md +1 -1
- data/lib/nsrr/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 85972cf47f19ac0c6c1811f3736bb50cf5ca21ec
|
4
|
+
data.tar.gz: 04af2575414520086fc302dc8097dddea8cf380c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 64c9524b1f0c0123fc1b596c264910651018885728abf054199c4d797e53925482ec1b1fcec82dcd2523870693d7708d74c2f1380e9ba2ffe2c0bb0224c3c167
|
7
|
+
data.tar.gz: b68dcbbe14eca8186dd39a5b1d9b20b4c9bee46ae3097760f04cfc293dc5344d6f0b3a383174b601a415c63a28024ee3da02ef14b17d5fe80419b0172a2de9bd
|
data/CHANGELOG.md
CHANGED
@@ -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
|
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
|
23
|
-
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
data/lib/nsrr/version.rb
CHANGED
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.
|
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-
|
11
|
+
date: 2016-04-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|