-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommand_service_object.gemspec
More file actions
44 lines (37 loc) · 1.86 KB
/
Copy pathcommand_service_object.gemspec
File metadata and controls
44 lines (37 loc) · 1.86 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
32
33
34
35
36
37
38
39
40
41
42
43
44
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'command_service_object/version'
Gem::Specification.new do |spec|
spec.name = 'command_service_object'
spec.version = CommandServiceObject::VERSION
spec.authors = ['Adham EL-Deeb', 'Mohamed Diaa']
spec.email = ['adham.eldeeb90@gmail.com', 'mohamed.diaa27@gmail.com']
spec.summary = 'Rails Generator for command service object.'
spec.description = 'command_service_object gem helps you to generate'\
' service and command objects using rails generator.'
spec.homepage = 'https://github.com/adham90/command_service_object'
spec.license = 'MIT'
spec.files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
end
spec.metadata = {
'homepage_uri' => 'https://github.com/adham90/command_service_object',
'changelog_uri' => 'https://github.com/adham90/command_service_object/blob/master/CHANGELOG.md',
'source_code_uri' => 'https://github.com/adham90/command_service_object',
'bug_tracker_uri' => 'https://github.com/adham90/command_service_object/issues'
}
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.post_install_message = 'Yaaay!! CommandServiceObject is ready to rock your app!!'
spec.add_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'byebug', '~> 9.0.6'
spec.add_development_dependency 'minitest', '~> 5.11', '>= 5.11.3'
spec.add_development_dependency 'rails', '~> 5.0'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'thor', '~> 0.20.3'
spec.add_dependency 'virtus', '~> 1.0', '>= 1.0.5'
spec.add_dependency 'hutch', '~> 1.0'
end