Sha256: d067101b8e9f4da14b923dcf194ef98979879229a1547e67366d830ab5c13f64
Contents?: true
Size: 1.22 KB
Versions: 3
Compression:
Stored size: 1.22 KB
Contents
# frozen_string_literal: true # Compiling the Gem # gem build nsrr.gemspec # gem install ./nsrr-x.x.x.gem --no-document --local # # gem push nsrr-x.x.x.gem # gem list -r nsrr # gem install nsrr lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'nsrr/version' Gem::Specification.new do |spec| spec.name = 'nsrr' spec.version = Nsrr::VERSION::STRING spec.authors = ['Remo Mueller'] spec.email = ['remosm@gmail.com'] spec.summary = 'Download files easily from the NSRR website, https://sleepdata.org' spec.description = 'The official ruby gem to download files and datasets from the [NSRR](https://sleepdata.org)' spec.homepage = 'https://github.com/nsrr/nsrr-gem' spec.license = 'CC-BY-NC-SA-3.0' spec.files = Dir['{bin,lib}/**/*'] + ['CHANGELOG.md', 'LICENSE', 'Rakefile', 'README.md', 'nsrr.gemspec'] spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test)/}) spec.require_paths = ['lib'] spec.add_dependency 'bundler', '~> 1.13' spec.add_dependency 'colorize', '~> 0.8.1' spec.add_dependency 'minitest' spec.add_dependency 'rake' end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
nsrr-0.4.0 | nsrr.gemspec |
nsrr-0.4.0.rc | nsrr.gemspec |
nsrr-0.4.0.beta1 | nsrr.gemspec |