-
Notifications
You must be signed in to change notification settings - Fork 36
/
spira.gemspec
executable file
·50 lines (41 loc) · 2.14 KB
/
spira.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
47
48
49
50
#!/usr/bin/env ruby -rubygems
# -*- encoding: utf-8 -*-
$:.unshift File.expand_path('../lib', __FILE__)
require 'spira/version'
Gem::Specification.new do |gem|
gem.version = Spira::VERSION.to_s
gem.date = Time.now.strftime('%Y-%m-%d')
gem.name = 'spira'
gem.homepage = 'https://github.com/ruby-rdf/spira'
gem.license = 'Unlicense'
gem.summary = 'A framework for using the information in RDF.rb repositories as model objects.'
gem.description = 'Spira is a framework for using the information in RDF.rb repositories as model objects.'
gem.metadata = {
"documentation_uri" => "https://ruby-rdf.github.io/spira",
"bug_tracker_uri" => "https://github.com/ruby-rdf/spira/issues",
"homepage_uri" => "https://github.com/ruby-rdf/spira",
"mailing_list_uri" => "https://lists.w3.org/Archives/Public/public-rdf-ruby/",
"source_code_uri" => "https://github.com/ruby-rdf/spira",
}
gem.authors = ['Ben Lavender']
gem.email = 'blavender@gmail.com'
gem.platform = Gem::Platform::RUBY
gem.files = %w(AUTHORS README.md UNLICENSE VERSION) + Dir.glob('lib/**/*.rb')
gem.require_paths = %w(lib)
gem.has_yardoc = true if gem.respond_to?(:has_yardoc)
gem.required_ruby_version = '>= 3.0'
gem.requirements = []
gem.add_runtime_dependency 'rdf', '~> 3.3'
gem.add_runtime_dependency 'rdf-isomorphic', '~> 3.3'
gem.add_runtime_dependency 'promise', '~> 0.3'
gem.add_runtime_dependency 'activemodel', '~> 7.0'
gem.add_runtime_dependency 'activesupport', '~> 7.0'
gem.add_runtime_dependency 'i18n', '~> 1.14'
gem.add_development_dependency 'rdf-spec', '~> 3.3'
gem.add_development_dependency 'rdf-turtle', '~> 3.3'
gem.add_development_dependency 'rdf-vocab', '~> 3.3'
gem.add_development_dependency 'rspec', '~> 3.12'
gem.add_development_dependency 'rspec-its', '~> 1.3'
gem.add_development_dependency 'yard', '~> 0.9'
gem.post_install_message = nil
end