This repository has been archived by the owner on Jun 3, 2020. It is now read-only.
forked from ruby-rdf/spira
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathspira.gemspec
executable file
·50 lines (41 loc) · 2.09 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 = 'http://ruby-rdf.github.io/spira/'
gem.license = 'Public Domain' if gem.respond_to?(:license=)
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.rubyforge_project = 'spira'
gem.authors = ['Ben Lavender']
gem.email = '[email protected]'
gem.platform = Gem::Platform::RUBY
gem.files = %w(CHANGES.md AUTHORS README.md UNLICENSE) + Dir.glob('lib/**/*.rb')
gem.bindir = %w(bin)
gem.executables = %w()
gem.default_executable = gem.executables.first
gem.require_paths = %w(lib)
gem.extensions = %w()
gem.test_files = %w()
gem.has_rdoc = false
gem.has_yardoc = true if gem.respond_to?(:has_yardoc)
gem.required_ruby_version = '>= 1.9.2'
gem.requirements = []
gem.add_development_dependency 'rdf-spec', '~> 1.0'
gem.add_development_dependency 'rspec', '~> 2.12.0'
gem.add_development_dependency 'yard' , '~> 0.8.3'
gem.add_development_dependency 'redcarpet' , '~> 2.2.2' unless RUBY_ENGINE == 'jruby'
gem.add_development_dependency 'guard', '~> 1.2.3'
gem.add_development_dependency 'guard-rspec', '~> 1.1.0'
gem.add_development_dependency 'guard-ctags-bundler', '~> 0.1.1'
gem.add_runtime_dependency 'rdf', '~> 1.0'
gem.add_runtime_dependency 'rdf-isomorphic', '~> 1.0'
gem.add_runtime_dependency 'promise', '~> 0.3.0'
gem.add_runtime_dependency 'activemodel', '~> 3'
gem.add_runtime_dependency 'activesupport', '~> 3'
gem.post_install_message = nil
end