-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstorey.gemspec
29 lines (25 loc) · 1.1 KB
/
storey.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "storey/version"
Gem::Specification.new do |s|
s.name = "storey"
s.version = Storey::VERSION
s.authors = ["Ramon Tayag"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/ramontayag/storey"
s.summary = %q{Manage multiple PostgreSQL schemas in your multi-tenant app.}
s.description = %q{Storey aims to simplify the implementation of managing a multi-tenant application.}
s.license = 'MIT'
s.rubyforge_project = "storey"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
# specify any dependencies here; for example:
s.add_development_dependency "rspec-rails"
s.add_development_dependency "database_cleaner"
s.add_runtime_dependency 'easy_class_to_instance_method', '~> 0.0.2'
s.add_runtime_dependency "rails", ">= 4.0.0"
s.add_runtime_dependency "pg"
s.add_runtime_dependency "gem_config"
end