-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpluginator.gemspec
46 lines (39 loc) · 1.77 KB
/
pluginator.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
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env ruby
# -*- encoding: utf-8 -*-
# stub: PLUGINATOR ruby lib
=begin
Copyright 2013-2017
- Michal Papis <[email protected]>
- Jordon Bedwell <[email protected]>
This file is part of pluginator.
pluginator is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
pluginator 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with pluginator. If not, see <http://www.gnu.org/licenses/>.
=end
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "pluginator/version"
Gem::Specification.new do |s|
s.authors = ["Michal Papis", "Jordon Bedwell", "Mose", "John O'Gara" ]
s.name = "pluginator"
s.version = Pluginator::VERSION.dup
s.license = "LGPL v3"
s.files = Dir["lib/**/*.rb", "*.md", "COPYING*"]
s.required_ruby_version = ">= 1.9.3"
s.required_rubygems_version = ">= 2.0.0"
s.add_development_dependency("rake")
s.add_development_dependency("rubocop") if RUBY_VERSION>="2.0.0"
s.add_development_dependency("minitest")
s.add_development_dependency("minitest-reporters")
# s.add_development_dependency("smf-gem")
s.homepage = "https://github.com/rvm/pluginator"
s.summary = "Rubygems plugin system using Gem.find_files, $LOAD_PATH and $LOADED_FEATURES."
end