-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbaruwa.gemspec
33 lines (29 loc) · 1.29 KB
/
baruwa.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
29
30
31
32
33
# -*- encoding: utf-8 -*-
# vim: ai ts=4 sts=4 et sw=4
# baruwa: Ruby bindings for the Baruwa REST API
# Copyright (C) 2015-2020 Andrew Colin Kissa <andrew@topdog.za.net>
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
# You can obtain one at http://mozilla.org/MPL/2.0/.
$:.push File.expand_path("../lib", __FILE__)
require "baruwa/version"
Gem::Specification.new do |s|
s.name = "baruwa"
s.version = Baruwa::VERSION
s.authors = ["Andrew Colin Kissa"]
s.email = ["andrew@topdog.za.net"]
s.homepage = "https://github.com/baruwa-enterprise/baruwa-ruby"
s.summary = %q{Ruby bindings for the Baruwa REST API}
s.description = %q{Gem to access the Baruwa REST API in ruby and ruby on rails applications.}
s.license = "MPL-2.0"
s.rubyforge_project = "baruwa"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_development_dependency "bundler", "~> 1.5"
s.add_development_dependency "rake", ">= 12.3.3"
s.add_development_dependency "rspec"
s.add_development_dependency 'webmock'
end