-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmicroevent.gemspec
More file actions
20 lines (17 loc) · 995 Bytes
/
microevent.gemspec
File metadata and controls
20 lines (17 loc) · 995 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/microevent', __FILE__)
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 = ["hi@ruby.consulting"]
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']
gem.metadata = { "rubygems_mfa_required" => "true" }
end