-
Notifications
You must be signed in to change notification settings - Fork 15
/
lab_tech.gemspec
27 lines (22 loc) · 1.11 KB
/
lab_tech.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
$:.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "lab_tech/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = "lab_tech"
spec.version = LabTech::VERSION
spec.authors = ["Sam Livingston-Gray"]
spec.email = ["[email protected]"]
spec.homepage = "https://github.com/RealGeeks/lab_tech"
spec.summary = "Tools for using GitHub's 'Scientist' library with ActiveRecord, for those of us not operating apps at ROFLscale"
spec.description = "Tools for using GitHub's 'Scientist' library with ActiveRecord, for those of us not operating apps at ROFLscale"
spec.license = "MIT"
spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
spec.test_files = Dir["spec/**/*"]
spec.add_dependency "rails", ">= 5.1.0"
spec.add_dependency "scientist", "~> 1.3"
spec.add_development_dependency "sqlite3", "~> 1.6.2"
spec.add_development_dependency "rspec-rails", "~> 4.0"
spec.add_development_dependency "awesome_print"
spec.add_development_dependency "table_print"
end