Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,16 @@ version: 2.1

orbs:
gem-tool: appfolio/gem-tool@volatile
public-packages: https://raw.githubusercontent.com/appfolio/public-packages/v1/orbs/public-packages.yml

workflows:
rc:
jobs:
- gem-tool/rake_test:
name: test_ruby-<< matrix.ruby_version >>
executor_tag: ruby
after-checkout-steps:
- public-packages/setup
matrix:
parameters:
ruby_version:
Expand Down
4 changes: 2 additions & 2 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

if Gem::Requirement.new(['>= 3.3', '< 4.1']).satisfied_by?(Gem::Version.new(RUBY_VERSION))
appraise "ruby-#{RUBY_VERSION}_rack2" do
source 'https://rubygems.org' do
source 'https://appfolio.jfrog.io/artifactory/api/gems/appfolio-ae_reverse_proxy-gem/' do
gem 'rack', '~> 2.2'
end
end

appraise "ruby-#{RUBY_VERSION}_rack3" do
source 'https://rubygems.org' do
source 'https://appfolio.jfrog.io/artifactory/api/gems/appfolio-ae_reverse_proxy-gem/' do
gem 'rack', '~> 3.0'
end
end
Expand Down
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# frozen_string_literal: true

source 'https://rubygems.org' # global source
source 'https://appfolio.jfrog.io/artifactory/api/gems/appfolio-ae_reverse_proxy-gem/' # global source

source 'https://rubygems.org' do
source 'https://appfolio.jfrog.io/artifactory/api/gems/appfolio-ae_reverse_proxy-gem/' do
gem 'appraisal', '>= 2.5', '< 3'
gem 'bundler', '>= 2.6', '< 5'
gem 'debug', '>= 1.10', '< 2'
Expand Down
2 changes: 1 addition & 1 deletion ae_reverse_proxy.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
spec.require_paths = ['lib']

spec.required_ruby_version = Gem::Requirement.new('< 4.1')
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
spec.metadata['allowed_push_host'] = 'https://appfolio.jfrog.io/artifactory/api/gems/appfolio-ae_reverse_proxy-gem/'

spec.add_dependency('addressable', ['>= 2.3.6', '< 3'])
spec.add_dependency('rack', ['>= 2.2.3', '< 4'])
Expand Down
2 changes: 1 addition & 1 deletion catalog-info.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
description: Implementation of a rack compliant reverse proxy.
tags: []
annotations:
appfolio.com/package-location: https://rubygems.org/gems/ae_reverse_proxy
appfolio.com/package-location: https://appfolio.jfrog.io/artifactory/api/gems/appfolio-ae_reverse_proxy-gem/
appfolio.com/package-type: gem
circleci.com/project-slug: github/appfolio/ae_reverse_proxy
name: ae-reverse-proxy
Expand Down
Loading