Sha256: 8004e75dffaa6876e4c27a3355e1bedea5d034c6b853d903ffc758fcefc887e8

Contents?: true

Size: 1.39 KB

Versions: 8

Compression:

Stored size: 1.39 KB

Contents

lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'redbreast/version'

Gem::Specification.new do |spec|
  spec.name = 'redbreast'
  spec.version = Redbreast::VERSION
  spec.authors = ['Maroje']
  spec.email = ['maroje.marcelic@infinum.com']

  spec.summary = 'A CLI for safe and strongly typed resources'
  spec.homepage = 'https://github.com/infinum/redbreast'
  spec.license = 'MIT'

  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
  # to allow pushing to a single host or delete this section to allow pushing to any host.
  if spec.respond_to?(:metadata)
    spec.metadata['allowed_push_host'] = 'https://rubygems.org'
  else
    raise 'RubyGems 2.0 or newer is required to protect against ' \
      'public gem pushes.'
  end

  spec.files = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.bindir = 'exe'
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ['lib']

  spec.add_development_dependency 'bundler', '~> 1.14'
  spec.add_development_dependency 'rake', '~> 10.0'
  spec.add_development_dependency 'rspec', '~> 3.0'
  spec.add_development_dependency 'rubocop', '~> 0.77'

  spec.add_dependency 'activesupport'
  spec.add_dependency 'commander'
  spec.add_dependency 'tty-prompt'
  spec.add_dependency 'xcodeproj'
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
redbreast-1.1.2 redbreast.gemspec
redbreast-1.1.1 redbreast.gemspec
redbreast-1.1.0 redbreast.gemspec
redbreast-1.0.4 redbreast.gemspec
redbreast-1.0.3 redbreast.gemspec
redbreast-1.0.2 redbreast.gemspec
redbreast-1.0.1 redbreast.gemspec
redbreast-1.0.0 redbreast.gemspec