Sha256: d82c8eb03f73d612bbf973259a1d43d86dd2bf4d70f9e8f11c7c57adc066bf54

Contents?: true

Size: 1.03 KB

Versions: 9

Compression:

Stored size: 1.03 KB

Contents

# -*- 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       = ["ramon@tayag.net"]
  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.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 "pg", "~> 0.12.2"
  s.add_development_dependency "database_cleaner"
  s.add_development_dependency "pry"
  s.add_runtime_dependency "rails", "~> 3.2.2"
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
storey-0.4.1 storey.gemspec
storey-0.4.0 storey.gemspec
storey-0.3.6 storey.gemspec
storey-0.3.5 storey.gemspec
storey-0.3.4 storey.gemspec
storey-0.3.3 storey.gemspec
storey-0.3.1 storey.gemspec
storey-0.3.0 storey.gemspec
storey-0.2.0 storey.gemspec