-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathinterface.gemspec
More file actions
35 lines (31 loc) · 1.47 KB
/
interface.gemspec
File metadata and controls
35 lines (31 loc) · 1.47 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
require 'rubygems'
Gem::Specification.new do |spec|
spec.name = 'interface'
spec.version = '1.2.0'
spec.author = 'Daniel J. Berger'
spec.license = 'Artistic-2.0'
spec.email = 'djberg96@gmail.com'
spec.homepage = 'http://github.com/djberg96/interface'
spec.summary = 'Java style interfaces for Ruby'
spec.test_file = 'spec/interface_spec.rb'
spec.files = Dir['**/*'].reject{ |f| f.include?('git') || f.include?('misc') }
spec.cert_chain = Dir['certs/*']
spec.add_development_dependency('rake')
spec.add_development_dependency('rspec', '~> 3.9')
spec.metadata = {
'homepage_uri' => 'https://github.com/djberg96/interface',
'bug_tracker_uri' => 'https://github.com/djberg96/interface/issues',
'changelog_uri' => 'https://github.com/djberg96/interface/blob/main/CHANGES.md',
'documentation_uri' => 'https://github.com/djberg96/interface/wiki',
'source_code_uri' => 'https://github.com/djberg96/interface',
'wiki_uri' => 'https://github.com/djberg96/interface/wiki',
'rubygems_mfa_required' => 'true',
'github_repo' => 'https://github.com/djberg96/interface',
'funding_uri' => 'https://github.com/sponsors/djberg96',
}
spec.description = <<-EOF
The interface library implements Java style interfaces for Ruby.
It lets you define a set a methods that must be defined in the
including class or module, or an error is raised.
EOF
end