mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
fd6522a4b4
This reverts commit b106242f52
.
27 lines
555 B
Ruby
27 lines
555 B
Ruby
# frozen_string_literal: true
|
|
|
|
begin
|
|
require "bundler/inline"
|
|
rescue LoadError => e
|
|
$stderr.puts "Bundler version 1.10 or later is required. Please update your Bundler"
|
|
raise e
|
|
end
|
|
|
|
gemfile(true) do
|
|
source "https://rubygems.org"
|
|
|
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
|
|
|
gem "rails", github: "rails/rails"
|
|
end
|
|
|
|
require "active_support"
|
|
require "active_support/core_ext/object/blank"
|
|
require "minitest/autorun"
|
|
|
|
class BugTest < Minitest::Test
|
|
def test_stuff
|
|
assert "zomg".present?
|
|
refute "".present?
|
|
end
|
|
end
|