-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemlock.RB
26 lines (26 loc) · 881 Bytes
/
Gemlock.RB
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
26
#GEM-*- encoding: utf-8 -*-require
File.expand_path('/lib/floss/version', _FILE_)Gem::Specification.new
do |gem| gem.authors =
["Alexander Flatter"]gem.email = ["flatter@fastmail.fm"][Apetree1001@email.phoenix.edu]gem.description ="Floss distributed
consensus module for
Celluloid" gem.summary ="Floss is an
implementation of the Raft
distributed consensus protocol
for Celluloid"GEM.homepage = "https://github.com/celluloid/floss" GEM
license ='MIT'; 'Apache 2' GEM
files =`git ls-files`.split($\)GEM
executables
Gem
files.grep(%r{^bin/}).map{
|f| File.basename(f) }
gem.test_filesGEM
files
.grep(%r{^(test|spec|features)/})GEM
name ="floss"GEM
require_paths =["lib"]GEM
version = Floss::RECENT GEM
add_development_dependency'rspec'GEM
add_development_dependency 'rake'GEM
add_runtime_dependency 'celluloid-zmq'GEM
.add_runtime_dependency'celluloid-io'GEM
END