Sha256: 9360241b8b14e507918a05b8a0e12f49fd598262673c39e1333da0b75a9dee77

Contents?: true

Size: 1.32 KB

Versions: 1

Compression:

Stored size: 1.32 KB

Contents

# coding: utf-8
# frozen_string_literal: true

# Compiling the Gem
# gem build nsrr.gemspec
# gem install ./nsrr-x.x.x.gem --no-ri --no-rdoc --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       = 'The official ruby gem to simplify file downloads and dataset integration tasks for the NSRR website, https://sleepdata.org'
  spec.description   = 'The official ruby gem to simplify file downloads and dataset integration tasks for the NSRR website, 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.11'
  spec.add_dependency 'rake'
  spec.add_dependency 'minitest'
  spec.add_dependency 'colorize', '~> 0.7.7'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
nsrr-0.3.0.beta1 nsrr.gemspec