-
Notifications
You must be signed in to change notification settings - Fork 167
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #44 from rails-on-services/development
Release v2.5.0
- Loading branch information
Showing
32 changed files
with
327 additions
and
225 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,15 @@ Gem::Specification.new do |s| | |
s.summary = 'A Ruby gem for managing database multitenancy. Apartment Gem drop in replacement' | ||
s.description = 'Apartment allows Rack applications to deal with database multitenancy through ActiveRecord' | ||
s.email = ['[email protected]', '[email protected]', '[email protected]'] | ||
s.files = `git ls-files`.split($/) | ||
# Specify which files should be added to the gem when it is released. | ||
# The `git ls-files -z` loads the files in the RubyGem that have been | ||
# added into git. | ||
s.files = Dir.chdir(File.expand_path(__dir__)) do | ||
`git ls-files -z`.split("\x0").reject do |f| | ||
# NOTE: ignore all test related | ||
f.match(%r{^(test|spec|features)/}) | ||
end | ||
end | ||
s.executables = s.files.grep(%r{^bin/}).map { |f| File.basename(f) } | ||
s.test_files = s.files.grep(%r{^(test|spec|features)/}) | ||
s.require_paths = ['lib'] | ||
|
@@ -20,13 +28,13 @@ Gem::Specification.new do |s| | |
s.licenses = ['MIT'] | ||
|
||
# must be >= 3.1.2 due to bug in prepared_statements | ||
s.add_dependency 'activerecord', '>= 3.1.2', '< 6.1' | ||
s.add_dependency 'activerecord', '>= 5.0.0', '< 6.1' | ||
s.add_dependency 'parallel', '< 2.0' | ||
s.add_dependency 'public_suffix', '>= 2.0.5', '< 5.0' | ||
s.add_dependency 'rack', '>= 1.3.6', '< 3.0' | ||
|
||
s.add_development_dependency 'appraisal', '~> 2.2' | ||
s.add_development_dependency 'bundler', '>= 1.3', '< 2.0' | ||
s.add_development_dependency 'bundler', '>= 1.3', '< 3.0' | ||
s.add_development_dependency 'capybara', '~> 2.0' | ||
s.add_development_dependency 'rake', '~> 0.9' | ||
s.add_development_dependency 'rspec', '~> 3.4' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,23 @@ | ||
# frozen_string_literal: true | ||
|
||
# This file was generated by Appraisal | ||
|
||
source 'http://rubygems.org' | ||
source "http://rubygems.org" | ||
|
||
gem 'rails', '~> 5.0.0' | ||
gem "perx-rubocop", "~> 0.0.3" | ||
gem "rails", "~> 5.0.0" | ||
|
||
group :local do | ||
gem 'guard-rspec', '~> 4.2' | ||
gem 'pry' | ||
gem "guard-rspec", "~> 4.2" | ||
gem "pry" | ||
end | ||
|
||
platforms :ruby do | ||
gem 'pg', '< 1.0.0' | ||
gem "pg", "< 1.0.0" | ||
end | ||
|
||
platforms :jruby do | ||
gem 'activerecord-jdbc-adapter', '~> 50.0' | ||
gem 'activerecord-jdbcmysql-adapter', '~> 50.0' | ||
gem 'activerecord-jdbcpostgresql-adapter', '~> 50.0' | ||
gem "activerecord-jdbc-adapter", "~> 50.0" | ||
gem "activerecord-jdbcpostgresql-adapter", "~> 50.0" | ||
gem "activerecord-jdbcmysql-adapter", "~> 50.0" | ||
end | ||
|
||
gemspec path: '../' | ||
gemspec path: "../" |
Oops, something went wrong.