forked from AdReform/vast
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvast.gemspec
More file actions
26 lines (21 loc) · 794 Bytes
/
Copy pathvast.gemspec
File metadata and controls
26 lines (21 loc) · 794 Bytes
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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'vast/version'
Gem::Specification.new do |s|
s.name = "vast"
s.version = Vast::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Chris Dinn"]
s.email = ["chrisgdinn@gmail.com"]
s.homepage = "http://github.com/chrisdinn/vast"
s.summary = "A gem for working with VAST 2.0 documents"
s.license = "MIT"
s.files = Dir.glob('lib/**/*') + %w(LICENSE README.rdoc CHANGELOG.md)
s.require_path = 'lib'
s.add_dependency 'nokogiri', '~> 1'
s.add_development_dependency 'gem-release'
s.add_development_dependency 'pathological'
s.add_development_dependency 'rake'
s.add_development_dependency 'test-unit'
end