Sha256: a9b35269ed66620b8de30dec6c29cbce21c7df560611015292410a9115b1c108

Contents?: true

Size: 1.07 KB

Versions: 2

Compression:

Stored size: 1.07 KB

Contents

# coding: utf-8

require File.expand_path(File.join(File.dirname(__FILE__),"files.rb"))

### Specification for the new Gem
Gem::Specification.new do |spec|

  spec.name          = "asynchronous"
  spec.version       = File.open(File.join(File.dirname(__FILE__),"VERSION")).read.split("\n")[0].chomp.gsub(' ','')
  spec.authors       = ["Adam Luzsi"]
  spec.email         = ["adamluzsi@gmail.com"]
  spec.description   = %q{Async dsl for easy concurrency patterns in both VM managed and OS managed way (Concurrency and Parallelism) }
  spec.summary       = %q{Simple Async Based on standard CRuby}
  spec.homepage      = "https://github.com/adamluzsi/asynchronous"
  spec.license       = "MIT"

  spec.files         = SpecFiles
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ["lib"]

  ##=======Runtime-ENV================##
  #spec.add_runtime_dependency "asdf", ['~>4.1.3']

  ##=======Development-ENV============##
  #spec.add_development_dependency "asdf",['~>4.1.3']

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
asynchronous-0.1.1 asynchronous.gemspec
asynchronous-0.1.0 asynchronous.gemspec