-
Notifications
You must be signed in to change notification settings - Fork 11
/
octoshark.gemspec
29 lines (25 loc) · 1.16 KB
/
octoshark.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'octoshark/version'
Gem::Specification.new do |spec|
spec.name = "octoshark"
spec.version = Octoshark::VERSION
spec.authors = ["Dalibor Nasevic"]
spec.email = ["[email protected]"]
spec.summary = %q{Octoshark is an ActiveRecord connection switcher}
spec.description = %q{Octoshark is a library for switching between multiple ActiveRecord connections}
spec.homepage = "https://github.com/dalibor/octoshark"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_runtime_dependency "activerecord", ">= 3.0"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec"
spec.add_development_dependency "activerecord", "~> 7.2.0"
spec.add_development_dependency "sqlite3"
spec.add_development_dependency "mysql2"
spec.add_development_dependency "appraisal"
end