nsrr 0.3.0.beta1 → 0.3.0.beta2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 47192f16e29c8348a3806bf5b664d6f122772460
4
- data.tar.gz: 2eb61ae1eb977358192775ca3fb4970eab77fe27
3
+ metadata.gz: 3617fdc3476fa145a6b242b5d6923eab454c08da
4
+ data.tar.gz: 9e0ac9c85ecb612f90a5c214bb7a662771cffd7f
5
5
  SHA512:
6
- metadata.gz: c18289ef636386f3bfa9160ae229df05d6601db3f6160a0ce4143d26c04debc94afb0fb29d00feec8fedcc03e990f5010d2015ca63e64911b690045c1f3cbf6d
7
- data.tar.gz: e9f5a51cd80df55a8a0fbad3651ee93222e890e5a1220b328507d98a69fe75db75e7fec8c94e7139accaf572c2886d0fac420802574ccb9d0d9ea2ba05169c67
6
+ metadata.gz: 459139b16b2e1da5916fdaed81680899f3cc00db20954be061fc591bfe7ac65141809c0824b023b1b159c40e0b8c4dcdc3fd686803863ac9a3a028f321c54125
7
+ data.tar.gz: c392841b81dcfe272030862fbfb95649d8b3c6b5923d5eefe002eb2c3964f6d6a7b481d979587f4c843bc1403d354e6bb212caf3335817d1c968e539cd0cc223
data/README.md CHANGED
@@ -21,7 +21,7 @@ The following commands can be run in **Command Prompt** on Windows, and in **Ter
21
21
  Install it yourself as:
22
22
 
23
23
  ```console
24
- gem install nsrr --no-ri --no-rdoc
24
+ gem install nsrr --no-document
25
25
  ```
26
26
 
27
27
  **NOTE:** There is a bug in newer versions of RubyGems that prevent the NSRR gem
@@ -29,7 +29,7 @@ from running correctly. If you run into issues, downgrade RubyGems using the
29
29
  following command:
30
30
 
31
31
  ```console
32
- gem update --system 2.4.8 --no-ri --no-rdoc
32
+ gem update --system 2.4.8 --no-document
33
33
  ```
34
34
 
35
35
  ## Usage
@@ -234,6 +234,6 @@ You can fix this error by reverting to the last stable version of RubyGems,
234
234
  `2.4.8`.
235
235
 
236
236
  ```console
237
- gem update --system 2.4.8 --no-ri --no-rdoc
237
+ gem update --system 2.4.8 --no-document
238
238
  ```
239
239
 
@@ -1,3 +1,3 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- Nsrr::WEBSITE = "https://sleepdata.org"
3
+ Nsrr::WEBSITE = 'https://sleepdata.org'
data/lib/nsrr/version.rb CHANGED
@@ -5,7 +5,7 @@ module Nsrr
5
5
  MAJOR = 0
6
6
  MINOR = 3
7
7
  TINY = 0
8
- BUILD = 'beta1' # 'pre', 'beta1', 'beta2', 'rc', 'rc2', nil
8
+ BUILD = 'beta2' # 'pre', 'beta1', 'beta2', 'rc', 'rc2', nil
9
9
 
10
10
  STRING = [MAJOR, MINOR, TINY, BUILD].compact.join('.')
11
11
  end
data/nsrr.gemspec CHANGED
@@ -17,10 +17,10 @@ Gem::Specification.new do |spec|
17
17
  spec.version = Nsrr::VERSION::STRING
18
18
  spec.authors = ['Remo Mueller']
19
19
  spec.email = ['remosm@gmail.com']
20
- spec.summary = 'The official ruby gem to simplify file downloads and dataset integration tasks for the NSRR website, https://sleepdata.org'
21
- spec.description = 'The official ruby gem to simplify file downloads and dataset integration tasks for the NSRR website, https://sleepdata.org'
20
+ spec.summary = 'Download files easily from the NSRR website, https://sleepdata.org'
21
+ spec.description = 'The official ruby gem to download files and datasets from the [NSRR](https://sleepdata.org)'
22
22
  spec.homepage = 'https://github.com/nsrr/nsrr-gem'
23
- spec.license = 'CC BY-NC-SA 3.0'
23
+ spec.license = 'CC-BY-NC-SA-3.0'
24
24
 
25
25
  spec.files = Dir['{bin,lib}/**/*'] + ['CHANGELOG.md', 'LICENSE', 'Rakefile', 'README.md', 'nsrr.gemspec']
26
26
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
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.beta1
4
+ version: 0.3.0.beta2
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-03-31 00:00:00.000000000 Z
11
+ date: 2016-04-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -66,8 +66,7 @@ dependencies:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: 0.7.7
69
- description: The official ruby gem to simplify file downloads and dataset integration
70
- tasks for the NSRR website, https://sleepdata.org
69
+ description: The official ruby gem to download files and datasets from the [NSRR](https://sleepdata.org)
71
70
  email:
72
71
  - remosm@gmail.com
73
72
  executables:
@@ -96,7 +95,7 @@ files:
96
95
  - nsrr.gemspec
97
96
  homepage: https://github.com/nsrr/nsrr-gem
98
97
  licenses:
99
- - CC BY-NC-SA 3.0
98
+ - CC-BY-NC-SA-3.0
100
99
  metadata: {}
101
100
  post_install_message:
102
101
  rdoc_options: []
@@ -114,9 +113,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
114
113
  version: 1.3.1
115
114
  requirements: []
116
115
  rubyforge_project:
117
- rubygems_version: 2.4.8
116
+ rubygems_version: 2.6.3
118
117
  signing_key:
119
118
  specification_version: 4
120
- summary: The official ruby gem to simplify file downloads and dataset integration
121
- tasks for the NSRR website, https://sleepdata.org
119
+ summary: Download files easily from the NSRR website, https://sleepdata.org
122
120
  test_files: []