Skip to content

Instantly share code, notes, and snippets.

View hibariya's full-sized avatar

Hibariya hibariya

View GitHub Profile
@kouyaf77
kouyaf77 / rspec.yml
Created April 26, 2020 00:38
GitHub Actions Rspec
name: Rspec
on: pull_request
jobs:
rspec:
runs-on: ubuntu-latest
services:
db:
image: mysql:5.7
@odlp
odlp / bundler-rspec-inline.rb
Created August 9, 2018 09:43
Inline Bundler and autorun RSpec
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
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"