Sha256: d99a9383af571ac78eadd5a13c4360519bf7daba884794da62d990ee913dbf69

Contents?: true

Size: 1.56 KB

Versions: 3

Compression:

Stored size: 1.56 KB

Contents

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

#rake build    # Build dryrun-0.0.1.gem into the pkg directory
#rake install  # Build and install dryrun-0.0.1.gem into system gems
#rake release  # Create tag v0.0.1 and build and push dryrun-0.0.1.gem t...
#rake spec     # Run RSpec code examples

Gem::Specification.new do |spec|
  spec.name          = "dryrun"
  spec.version       = Dryrun::VERSION
  spec.authors       = ["cesar ferreira"]
  spec.email         = ["cesar.manuel.ferreira@gmail.com"]

  spec.summary       = %q{Tool to try any android library hosted online directly from the command line}
  spec.description   = %q{Tool to try any android library hosted online directly from the command line}
  spec.homepage      = "https://github.com/cesarferreira/dryrun"
  spec.license       = 'MIT'

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

  spec.required_ruby_version = '>= 2.0.0'

  spec.add_development_dependency 'rake', '~> 10.0'
  spec.add_development_dependency 'pry-byebug', '~> 3.2'
  spec.add_development_dependency 'rspec'

  spec.add_dependency 'bundler', '~> 1.7'
  spec.add_dependency 'colorize',  '~> 0.7'
  spec.add_dependency 'oga',  '~> 1.3.1'
  spec.add_dependency 'highline', '~> 1.7'
  spec.add_dependency 'adb-sdklib', '~> 0.0.3'
  spec.add_dependency 'rjb', '>= 1.5.4'

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
dryrun-0.7.9 dryrun.gemspec
dryrun-0.7.8 dryrun.gemspec
dryrun-0.7.7 dryrun.gemspec