-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy path.gemspec
28 lines (22 loc) · 968 Bytes
/
.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
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'mediawiki-vagrant/version'
Gem::Specification.new do |s|
s.name = 'mediawiki-vagrant'
s.summary = 'A portable MediaWiki development environment.'
s.description = (<<-end_).split.join(' ')
MediaWiki-Vagrant is a portable MediaWiki development environment. It
consists of a set of configuration scripts that automate the creation
of a virtual machine that runs MediaWiki.
end_
s.platform = Gem::Platform::RUBY
s.authors = ['Ori Livneh']
s.email = ['ori@wikimedia.org']
s.homepage = 'https://github.com/wikimedia/mediawiki-vagrant'
s.licenses = ['MIT']
s.files = Dir['{lib}/**/*'] + ['LICENSE', 'Gemfile', 'README.md']
s.version = MediaWikiVagrant::VERSION
s.require_paths = ['lib']
s.add_development_dependency 'cucumber', '~> 2.0.0.rc4'
s.add_development_dependency 'rspec', '~> 3.1', '>= 3.1.0'
s.add_development_dependency 'yard', '~> 0.9', '>= 0.9.36'
end