-
Notifications
You must be signed in to change notification settings - Fork 23
/
angelo.gemspec
28 lines (24 loc) · 1.13 KB
/
angelo.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/angelo/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Kenichi Nakamura"]
gem.email = ["[email protected]"]
gem.summary = "A Sinatra-like DSL for Reel"
gem.description = "A Sinatra-like DSL for Reel that supports websockets and SSE"
gem.homepage = "https://github.com/kenichi/angelo"
gem.files = `git ls-files | grep -Ev '^example'`.split("\n")
gem.test_files = `git ls-files -- spec/*`.split("\n")
gem.name = "angelo"
gem.require_paths = ["lib"]
gem.version = Angelo::VERSION
gem.license = 'apache'
gem.required_ruby_version = '>= 2.1.0'
gem.add_runtime_dependency 'reel', '>= 0.6.1'
gem.add_runtime_dependency 'tilt', '~>2.0'
gem.add_runtime_dependency 'mustermann', '~>0.4'
gem.add_runtime_dependency 'mime-types', '~>3.1'
gem.add_development_dependency 'rake', '~>12.0'
gem.add_development_dependency 'pry', '~>0.10'
gem.add_development_dependency 'httpclient', '~>2.5'
gem.add_development_dependency 'minitest', '~>5.4'
end