Sha256: 265f6a6bfb35726e344a0b888d5c29c4050a104baa51ee953a2fd0780716127c

Contents?: true

Size: 968 Bytes

Versions: 3

Compression:

Stored size: 968 Bytes

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'simple_command/version'

Gem::Specification.new do |s|
  s.required_ruby_version = '>= 2.0'
  s.name          = 'simple_command'
  s.version       = SimpleCommand::VERSION
  s.authors       = ['Andrea Pavoni']
  s.email         = ['andrea.pavoni@gmail.com']
  s.summary       = 'Easy way to build and manage commands (service objects)'
  s.description   = 'Easy way to build and manage commands (service objects)'
  s.homepage      = 'http://github.com/nebulab/simple_command'
  s.license       = 'MIT'

  s.files         = `git ls-files -z`.split("\x0")
  s.executables   = s.files.grep(/^bin\//) { |f| File.basename(f) }
  s.test_files    = s.files.grep(/^(test|spec|features)\//)
  s.require_paths = ['lib']

  s.add_development_dependency 'bundler'
  s.add_development_dependency 'rake'
  s.add_development_dependency 'rspec', '~> 3.1'
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
simple_command-1.0.0 simple_command.gemspec
simple_command-0.2.1 simple_command.gemspec
simple_command-0.2.0 simple_command.gemspec