-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbm-typed.gemspec
28 lines (23 loc) · 1008 Bytes
/
bm-typed.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
# frozen_string_literal: true
require File.join(File.dirname(__FILE__), 'lib/typed/version')
Gem::Specification.new do |gem|
gem.name = 'bm-typed'
gem.version = Typed::VERSION
gem.licenses = ['MIT']
gem.authors = ['Frederic Terrazzoni']
gem.email = ['[email protected]']
gem.description = 'A dry-types/dry-struct alternative making '\
'the difference between undefined and nil'
gem.summary = gem.description
gem.homepage = 'https://github.com/getbannerman/typed'
gem.files = `git ls-files lib`.split($INPUT_RECORD_SEPARATOR)
gem.executables = []
gem.test_files = []
gem.require_paths = ['lib']
gem.add_development_dependency 'coveralls', '~> 0.8'
gem.add_development_dependency 'pry', '~> 0'
gem.add_development_dependency 'rspec', '~> 3'
gem.add_development_dependency 'rubocop', '0.59.2'
gem.add_dependency 'activesupport', '~> 6.0'
gem.add_dependency 'dry-logic', '~> 0.4.2'
end