Created
August 9, 2018 09:43
-
-
Save odlp/beda8fed88a6cd872da5eb76e6b04df7 to your computer and use it in GitHub Desktop.
Revisions
-
odlp created this gist
Aug 9, 2018 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ require "bundler/inline" gemfile do gem "rspec" end require "rspec/autorun" RSpec.describe "inline Bundler and autorun RSpec" do it "is convenient for self-contained examples & bug repros" do expect(true).to be true end end # can be run directly: # ruby <file.rb>