This repository was archived by the owner on Sep 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathclomp.gemspec
More file actions
31 lines (26 loc) · 1.27 KB
/
clomp.gemspec
File metadata and controls
31 lines (26 loc) · 1.27 KB
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
27
28
29
30
31
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "clomp/version"
Gem::Specification.new do |spec|
spec.name = "clomp"
spec.version = Clomp::VERSION
spec.authors = ['Irfan Ahmed']
spec.email = ['irfandhk@gmail.com', 'odesk.irfan@gmail.com']
spec.summary = %q{Clomp is a simple service builder for ruby using railway oriented programing paradigm.}
spec.description = %q{Clomp gem provides a smooth, lightweight, productive and reusable way to build an operation using Railway Oriented Programing paradigm.}
spec.homepage = "https://github.com/rubyrider/clomp"
spec.license = "MIT"
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.16"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "rspec"
spec.add_development_dependency "byebug"
spec.add_development_dependency "simplecov"
spec.add_development_dependency "codeclimate-test-reporter"
spec.add_development_dependency "rubocop"
end