-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrdoba.gemspec
39 lines (34 loc) · 1.71 KB
/
rdoba.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
# frozen_string_literal: true
$:.push File.expand_path('lib', __dir__)
require "rdoba/_version_"
Gem::Specification.new do |s|
s.name = "rdoba"
s.version = Rdoba::VERSION
s.platform = Gem::Platform::RUBY
s.authors = [ 'Малъ Скрылёвъ (Malo Skrylevo)' ]
s.email = [ '3aHyga@gmail.com' ]
s.homepage = 'https://github.com/3aHyga/rdoba'
s.summary = 'Ruby extension library (Ruby DOBAvka)'
s.description = 'Ruby extension library. It extends Kernel, Object, ' \
'String, Hash, Array, and some other classes. Also allows ' \
'to log application state with debug lines to an io'
s.license = 'MIT'
s.rubyforge_project = "rdoba"
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.extra_rdoc_files = [ 'README.md', 'LICENSE', 'CHANGES.md' ] |
`find html/`.split( "\n" )
s.add_development_dependency 'bundler', '~> 2.0'
s.add_development_dependency 'coveralls'
s.add_development_dependency 'cucumber', '~> 1.3'
s.add_development_dependency 'ffi-stat', '~> 0.4'
s.add_development_dependency 'rake', '~> 12.0', '>= 12.3.3'
s.add_development_dependency 'rdiscount', '~> 2.1'
s.add_development_dependency 'rdoc', '~> 6.2'
s.add_development_dependency 'rspec-expectations', '~> 3.3'
s.add_development_dependency 'simplecov', '~> 0'
s.add_development_dependency 'tddium', '~> 1.25'
s.required_rubygems_version = '>= 1.6.0'
s.required_ruby_version = '>= 1.9.0' ; end