-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbest_boy.gemspec
28 lines (23 loc) · 1.05 KB
/
best_boy.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
$:.push File.expand_path("../lib", __FILE__)
require "best_boy/version"
Gem::Specification.new do |s|
s.name = "best_boy"
s.version = BestBoy::VERSION
s.platform = Gem::Platform::RUBY
s.licenses =["MIT"]
s.authors = ["Christoph Seydel, Carsten Zimmermann, Robin Neumann, Daniel Schoppmann"]
s.email = ["[email protected], [email protected]"]
s.homepage = "https://github.com/absolventa/best_boy"
s.summary = %q{a simple event driven logging for models}
s.description = %q{Hybrid action logging, consisting of standard and custom logging.}
s.files = Dir["{app,config,db,lib}/**/*"] + ["Rakefile", "README.md"]
s.required_ruby_version = '>= 2.2'
s.add_dependency 'rails', '>= 5.0', '< 6.0'
s.add_dependency 'kaminari', '>= 0.14.1'
s.add_dependency 'haml'
s.add_development_dependency 'sqlite3'
s.add_development_dependency "rspec-rails", "~> 3.5.0"
s.add_development_dependency 'shoulda', ">= 3.5"
s.add_development_dependency 'appraisal'
s.add_development_dependency 'sass-rails'
end