-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlol_concurrency.gemspec
25 lines (22 loc) · 1.08 KB
/
lol_concurrency.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'lol_concurrency/version'
Gem::Specification.new do |gem|
gem.name = 'lol_concurrency'
gem.version = LolConcurrency::VERSION
gem.authors = ['Daniel Huckstep']
gem.email = ['darkhelmet@darkhelmetlive.com']
gem.description = %q{A super simple actor & concurrency library.}
gem.summary = %q{A super simple actor & concurrency library.}
gem.homepage = 'https://github.com/darkhelmet/lol_concurrency'
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ['lib']
gem.add_development_dependency('rspec', '~> 2.12')
gem.add_development_dependency('pry', '~> 0.9')
gem.add_development_dependency('pry-rescue', '~> 1.4.1')
gem.add_development_dependency('pry-stack_explorer', '~> 0.4.9.1')
gem.add_development_dependency('pry-clipboard', '~> 0.1.1')
end