Sha256: 54af8ac3f8382f591282c427c21f9412e17178a1ee986fcc7a566ed27e5e9308

Contents?: true

Size: 1.46 KB

Versions: 1

Compression:

Stored size: 1.46 KB

Contents

# frozen_string_literal: true
# coding: utf-8


#gem.required_ruby_version = '2.7.5'

Gem::Specification.new do |s|
  s.required_ruby_version = '>= 2.7.5'
  s.name = 'storazzo'
  # TODO: copy approach from here to dry version calculating: https://github.com/rails/strong_parameters/blob/master/strong_parameters.gemspec#L15
  s.version     = File.read('VERSION').chomp # TODO: cat version File.read(@,.VERSION).chomp
  s.summary     = 'storazzo is an amazing gem. Code is in https://github.com/palladius/storazzo'
  s.description = 'A simple gem to manage your external hard drives and extract MD5 and common stuff from them.'
  s.authors     = ['Riccardo Carlesso']
  s.email       = 'name dot surname at popular Google-owned Mail'
  # Autoglob as per https://stackoverflow.com/questions/11873294/determining-the-gems-list-of-files-for-the-specification
  s.files = %w[Gemfile LICENSE README.md Makefile Rakefile storazzo.gemspec
               VERSION] + Dir['{bin,lib,test,var}/**/*']
  s.test_files = Dir['test/**/*'] + Dir['var/test/**/*']
  s.executables = Dir['bin/*'].map  do |full_path| # bin/blah-blah
    full_path.gsub('bin/', '')
  end
  # [
  #   # todo: everything in bin/
  #   "ricdisk-magic",
  #   "stats-with-md5",
  #   "storazzo",
  #   "hello-storazzo",
  # ]
  s.homepage = 'https://rubygems.org/gems/storazzo' # maybe https://github.com/palladius/storazzo
  s.license = 'MIT'

  # s.add_dependency "activesupport", "~> 3.0"
  #s.add_dependency 'pry' # , "~> 3.0"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
storazzo-0.6.1 storazzo.gemspec