forked from janlelis/microevent.rb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmicroevent.gemspec
More file actions
19 lines (16 loc) · 909 Bytes
/
microevent.gemspec
File metadata and controls
19 lines (16 loc) · 909 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*- encoding: utf-8 -*-
require_relative 'lib/microevent'
Gem::Specification.new do |gem|
gem.name = "microevent"
gem.version = MicroEvent::VERSION
gem.summary = 'MicroEvent.rb is a event emitter library which provides the observer pattern to Ruby objects.'
gem.description = 'MicroEvent.rb is a event emitter library which provides the observer pattern to Ruby objects. It is inspired by[MicroEvent.js and implemented in less than 20 lines of Ruby.'
gem.license = "MIT"
gem.authors = ["Jan Lelis"]
gem.email = "mail@janlelis.de"
gem.homepage = "https://github.com/janlelis/microevent.rb"
gem.files = Dir['{**/}{.*,*}'].select { |path| File.file?(path) }
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ['lib']
end