-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathscopy.gemspec
More file actions
23 lines (18 loc) · 824 Bytes
/
scopy.gemspec
File metadata and controls
23 lines (18 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require "./lib/scopy/version"
Gem::Specification.new do |spec|
spec.name = "scopy"
spec.version = Scopy::VERSION
spec.authors = ["Tee Parham"]
spec.email = ["tee@neighborland.com"]
spec.description = "Rails ActiveRecord scopes for id, created_at, and name"
spec.summary = "Rails ActiveRecord scopes for id, created_at, and name"
spec.homepage = "https://github.com/neighborland/scopy"
spec.license = "MIT"
spec.files = Dir["LICENSE.txt", "README.md", "lib/**/*"]
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.3.0"
spec.add_dependency "activerecord", ">= 4.0"
spec.add_development_dependency "rake", "~> 12.0"
spec.add_development_dependency "mocha", "~> 1.4"
spec.add_development_dependency "sqlite3", "~> 1.3"
end