forked from ReactiveX/RxRuby
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrx.gemspec
23 lines (20 loc) · 950 Bytes
/
rx.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rx/version'
Gem::Specification.new do |gem|
gem.authors = ["Microsoft Open Technologies, Inc."]
gem.description = %q{Reactive Extensions for Ruby}
gem.summary = %q{This is an implementation of the Reactive Extensions for Ruby. Note that this is an early prototype, but contributions are welcome.}
gem.homepage = "https://github.com/ReactiveX/RxRuby"
gem.files = `git ls-files`.split($\)
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "rx"
gem.require_paths = ["lib"]
gem.version = Rx::VERSION
gem.license = 'Apache License, v2.0'
gem.add_development_dependency 'codecov'
gem.add_development_dependency 'minitest'
gem.add_development_dependency 'rake', '= 12.2.0'
gem.add_development_dependency 'simplecov'
end