forked from solnic/virtus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvirtus.gemspec
More file actions
23 lines (19 loc) · 869 Bytes
/
virtus.gemspec
File metadata and controls
23 lines (19 loc) · 869 Bytes
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 -*-
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.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]
gem.add_dependency('backports', '~> 2.7')
gem.add_dependency('descendants_tracker', '~> 0.0.1')
gem.add_dependency('adamantium', '~> 0.0.5')
gem.add_dependency('coercible', '~> 0.0.1')
end