Sha256: 484b59cc95e375871ac4e6185799c557ff57db6e0652ee08214dccaaddd9a32d
Contents?: true
Size: 1.39 KB
Versions: 2
Compression:
Stored size: 1.39 KB
Contents
# -*- encoding: utf-8 -*- require File.expand_path(File.join('..', 'lib', 'sandboxy', 'version'), __FILE__) Gem::Specification.new do |gem| gem.name = 'sandboxy' gem.version = Sandboxy::VERSION gem.platform = Gem::Platform::RUBY gem.summary = 'Virtual data-oriented environments for Rails' gem.description = 'Sandboxy allows you to use virtual data-oriented environments inside a Rails application while being able to switch in between at runtime. It achieves that by using a combination of Rack Middleware and ActiveRecord.' gem.authors = 'Slooob' gem.email = 'developer@slooob.com' gem.homepage = 'https://developer.slooob.com/open-source' gem.license = 'MIT' gem.files = `git ls-files`.split("\n") gem.require_paths = ['lib'] gem.post_install_message = IO.read('INSTALL.md') gem.required_ruby_version = '>= 2.3' gem.add_dependency 'activerecord', '>= 4.0' gem.add_development_dependency 'sqlite3', '~> 1.3' gem.add_development_dependency 'shoulda', '~> 3.5' gem.add_development_dependency 'shoulda_create', '~> 0.0' gem.add_development_dependency 'factory_girl', '~> 4.8' gem.add_development_dependency 'rails', '>= 4.0' gem.add_development_dependency 'tzinfo-data', '~> 1.2017' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
sandboxy-1.1.1 | sandboxy.gemspec |
sandboxy-1.1.0 | sandboxy.gemspec |