Skip to content

Instantly share code, notes, and snippets.

@mrsimo

mrsimo/Gemfile Secret

Created July 5, 2018 07:19
Show Gist options
  • Save mrsimo/9cfc750719a7230c2a96803a4c861042 to your computer and use it in GitHub Desktop.
Save mrsimo/9cfc750719a7230c2a96803a4c861042 to your computer and use it in GitHub Desktop.
source "https://rubygems.org"
gem "activesupport", "5.2.0"
gem "ci-queue"
gem "redis"
gem "minitest-reporters"
GEM
remote: https://rubygems.org/
specs:
activesupport (5.2.0)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 0.7, < 2)
minitest (~> 5.1)
tzinfo (~> 1.1)
ansi (1.5.0)
builder (3.2.3)
ci-queue (0.13.4)
ansi
concurrent-ruby (1.0.5)
i18n (1.0.1)
concurrent-ruby (~> 1.0)
minitest (5.11.3)
minitest-reporters (1.3.0)
ansi
builder
minitest (>= 5.0)
ruby-progressbar
redis (4.0.1)
ruby-progressbar (1.9.0)
thread_safe (0.3.6)
tzinfo (1.2.5)
thread_safe (~> 0.1)
PLATFORMS
ruby
DEPENDENCIES
activesupport (= 5.2.0)
ci-queue
minitest-reporters
redis
BUNDLED WITH
1.16.2
# frozen_string_literal: true
require "bundler/setup"
require "active_support/all"
require "active_support/core_ext/object/blank"
require "minitest/autorun"
class BugTest < ActiveSupport::TestCase
test 'doesn’t allow requests from inactive users' do
refute true
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment