-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoaster.gemspec
More file actions
37 lines (33 loc) · 1.27 KB
/
coaster.gemspec
File metadata and controls
37 lines (33 loc) · 1.27 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
36
37
$:.push File.expand_path("../lib", __FILE__)
require 'coaster/version'
Gem::Specification.new do |s|
s.name = 'coaster'
s.description = 'Ruby Core Extensions'
s.version = Coaster::VERSION
s.platform = Gem::Platform::RUBY
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = 'A little convenient feature for standard library'
s.homepage = 'http://github.com/frograms/coaster'
s.authors = ['buzz jung']
s.email = 'buzz@frograms.com'
s.licenses = ['MIT']
s.files = Dir['{app,bin,config,db,lib}/**/*'] + %w(LICENSE Rakefile README.md)
s.bindir = 'bin'
s.executables << 'coaster'
s.test_files = Dir['test/**/*']
s.require_path = %w{lib}
s.metadata['source_code_uri'] = 'https://github.com/frograms/coaster'
s.metadata['bug_tracker_uri'] = 'https://github.com/frograms/coaster/issues'
s.add_dependency 'oj'
s.add_dependency 'i18n', '>= 1.0'
s.add_dependency 'rake', '>= 10.0'
s.add_dependency 'activesupport', '>= 7.0.7'
s.add_dependency 'attr_extras', '~> 5.2'
s.add_development_dependency 'bundler'
s.add_development_dependency 'minitest'
s.add_development_dependency 'mocha'
s.add_development_dependency 'shoulda'
s.add_development_dependency 'shoulda-context'
s.add_development_dependency 'rails'
s.add_development_dependency 'sqlite3'
end