-
Notifications
You must be signed in to change notification settings - Fork 0
/
eventception.gemspec
31 lines (27 loc) · 1.32 KB
/
eventception.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
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'eventception'
Gem::Specification.new do |spec|
spec.name = 'eventception'
spec.version = Eventception::VERSION
spec.authors = ['Daniel Gomes', 'Ivo Anjo']
spec.email = ['[email protected]', '[email protected]']
spec.homepage = 'https://github.com/dcsg/eventception'
spec.summary = 'Eventception - a lightweight and simple Ruby Event System.'
spec.description = 'A lightweight and simple Ruby Event System inspired on Symfony Event Dispatcher.'
spec.license = 'LGPL-3.0+'
spec.files = Dir['**/*'].keep_if { |file| File.file?(file) }
spec.test_files = Dir['spec/**/*']
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.2.0'
spec.add_development_dependency 'bundler', '~> 1.15'
spec.add_development_dependency 'rspec', '~> 3.6'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rubocop'
spec.add_development_dependency 'simplecov'
spec.add_development_dependency 'simplecov-json'
spec.add_development_dependency 'simplecov-rcov'
spec.add_development_dependency 'pry'
spec.add_development_dependency 'pry-byebug' unless RUBY_PLATFORM == 'java'
spec.add_development_dependency 'pry-debugger-jruby' if RUBY_PLATFORM == 'java'
end