Skip to content

Instantly share code, notes, and snippets.

@odlp
Created August 9, 2018 09:43
Show Gist options
  • Save odlp/beda8fed88a6cd872da5eb76e6b04df7 to your computer and use it in GitHub Desktop.
Save odlp/beda8fed88a6cd872da5eb76e6b04df7 to your computer and use it in GitHub Desktop.

Revisions

  1. odlp created this gist Aug 9, 2018.
    16 changes: 16 additions & 0 deletions bundler-rspec-inline.rb
    Original 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>