-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtablescript.gemspec
More file actions
44 lines (41 loc) · 1.77 KB
/
tablescript.gemspec
File metadata and controls
44 lines (41 loc) · 1.77 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Copyright 2017 Jamie Hale
#
# This file is part of the Tablescript gem.
#
# Tablescript is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Tablescript is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Tablescript. If not, see <http://www.gnu.org/licenses/>.
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'tablescript/version'
Gem::Specification.new do |spec|
spec.name = 'tablescript'
spec.version = Tablescript::VERSION
spec.date = '2015-05-05'
spec.summary = 'TableScript RPG Tool'
spec.description = 'Library for creating role-playing game random tables.'
spec.authors = ['Jamie Hale']
spec.email = ['jamie@smallarmyofnerds.com']
spec.homepage = 'http://smallarmyofnerds.com/tablescript'
spec.license = 'GPL-3.0'
spec.platform = Gem::Platform::RUBY
spec.files = `git ls-files -z`.split("\x0")
spec.require_paths = ['lib']
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
spec.add_dependency 'rpg_lib', '~> 1.0'
spec.add_development_dependency "bundler", ">= 2.2.10"
spec.add_development_dependency 'rake', '~> 12.0'
spec.add_development_dependency 'rspec', '~> 3.5'
spec.add_development_dependency 'simplecov', '~> 0.13'
spec.add_development_dependency 'rubocop', '~> 0.49.0'
end