forked from solnic/virtus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
virtus.gemspec
24 lines (20 loc) · 898 Bytes
/
virtus.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/virtus/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = "virtus"
gem.version = Virtus::VERSION
gem.authors = [ "Piotr Solnica" ]
gem.email = [ "piotr.solnica@gmail.com" ]
gem.description = "Attributes on Steroids for Plain Old Ruby Objects"
gem.summary = gem.description
gem.homepage = "https://github.com/solnic/virtus"
gem.license = 'MIT'
gem.require_paths = [ "lib" ]
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {spec}/*`.split("\n")
gem.extra_rdoc_files = %w[LICENSE README.md TODO.md]
gem.add_dependency('descendants_tracker', '~> 0.0.1')
gem.add_dependency('equalizer', '~> 0.0.7')
gem.add_dependency('coercible', '~> 0.2')
gem.add_dependency('axiom-types', '~> 0.0.5')
end