-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtype_scopes.gemspec
More file actions
20 lines (18 loc) · 870 Bytes
/
type_scopes.gemspec
File metadata and controls
20 lines (18 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'type_scopes/version'
Gem::Specification.new do |spec|
spec.name = "type_scopes"
spec.version = TypeScopes::VERSION
spec.authors = ["Alexis Bernard"]
spec.email = ["alexis@bernard.io"]
spec.summary = "Semantic scopes for your ActiveRecord models."
spec.description = "Automatically create semantic scopes based on columns' types (dates, times, strings and numerics)."
spec.homepage = "https://github.com/BaseSecrete/type_scopes"
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"]
end