-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdecouplio.gemspec
46 lines (39 loc) · 1.98 KB
/
decouplio.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'decouplio/version'
Gem::Specification.new do |spec|
spec.name = 'decouplio'
spec.version = Decouplio::VERSION
spec.authors = ['Alex Bal']
spec.email = ['[email protected]']
spec.summary = 'Gem for business logic encapsulation'
spec.description = "Decouplio is a zero dependency, thread safe and framework agnostic gem designed to encapsulate application business logic. It's reverse engineered through TDD and inspired by such frameworks and gems like Trailblazer, Interactor."
spec.homepage = 'https://differencialx.github.io/decouplio.github.io/'
spec.license = 'MIT'
if spec.respond_to?(:metadata)
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/differencialx/decouplio/'
spec.metadata['changelog_uri'] = 'https://github.com/differencialx/decouplio/blob/master/docs/CHANGELOG.md'
else
raise 'RubyGems 2.0 or newer is required to protect against ' \
'public gem pushes.'
end
spec.files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`.split("\x0").select { |f| f.match(%r{^(lib)/|.gemspec|LICENSE|Rakefile|README}) }
end
# spec.files = Dir.chdir(File.expand_path(__dir__)) do
# `git ls-files -z`.split("\x0").reject do |f|
# f.match(%r{(test|spec|features|benchmarks|bin|.rubocop|.gitignore|Dockerfile|.ruby-version|docker|.vscode|.circle)(\/)*})
# end
# end
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler', '~> 2'
spec.add_development_dependency 'pry-byebug'
spec.add_development_dependency 'rake', '>= 12.3.2'
spec.add_development_dependency 'rspec', '3.10'
spec.add_development_dependency 'rubocop'
spec.add_development_dependency 'rubocop-rspec'
end