-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchris_lib.gemspec
33 lines (31 loc) · 1.28 KB
/
chris_lib.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
$:.push File.expand_path('../lib', __FILE__)
# Maintain your gem's version:
require 'chris_lib/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'chris_lib'
s.version = ChrisLib::VERSION
s.authors = ['Chris']
s.email = ['[email protected]']
s.homepage = 'https://github.com/obromios'
# rubocop:disable LineLength
s.summary = 'This an eclectic collection of methods. It include maths, datetime, and rspec access test libraries.'
s.description = 'It includes maths, datetime, and rspec access test libraries.'
s.license = 'MIT'
s.metadata = {
'source_code_uri' => 'https://github.com/obromios/chris_lib',
'changelog_uri' => 'https://github.com/obromios/chris_lib/blob/master/CHANGELOG.md'
}
s.files = Dir['{app,config,db,lib}/**/*', 'MIT-LICENSE', 'Rakefile', 'README.rdoc']
# rubocop:enable LineLength
s.add_dependency 'dotenv'
s.add_dependency 'quaternion'
s.add_development_dependency 'rails'
s.add_development_dependency 'actionpack'
s.add_development_dependency 'actionview'
s.add_development_dependency 'rspec'
s.add_development_dependency 'nokogiri'
s.add_development_dependency 'pry'
s.add_development_dependency 'colorize'
s.add_development_dependency 'matrix'
end