open_api-rspec 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/bin/rake +29 -0
- data/lib/open_api/rspec.rb +1 -0
- data/lib/open_api/rspec/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 39fda32f5c1341425ca23a185ad1a9cf8d62e591567adfef9e7a5621c9d9f7e2
|
4
|
+
data.tar.gz: c93b366624b64e013706b4c2a61a55c987ca470b489ba1f43ad091d5e7a12f15
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ca13abf00e42c2ca012d8aecf028292a6783fa80f2685e560b47fdc1cc4da8adfdba506112ea338107d345c8acb020c7961ca023ac02d36ab4326f03a3346362
|
7
|
+
data.tar.gz: 12d8f912c228f0b24cf6f949e1ad05da5e307ca490f91b50de1007c9590ccd5479c3e70c571095bcae1f3b98bacc02db97374b23cb2f5ef82a7f33c222d80ac0
|
data/Gemfile.lock
CHANGED
data/bin/rake
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
#
|
5
|
+
# This file was generated by Bundler.
|
6
|
+
#
|
7
|
+
# The application 'rake' is installed as part of a gem, and
|
8
|
+
# this file is here to facilitate running it.
|
9
|
+
#
|
10
|
+
|
11
|
+
require "pathname"
|
12
|
+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
13
|
+
Pathname.new(__FILE__).realpath)
|
14
|
+
|
15
|
+
bundle_binstub = File.expand_path("../bundle", __FILE__)
|
16
|
+
|
17
|
+
if File.file?(bundle_binstub)
|
18
|
+
if File.read(bundle_binstub, 150) =~ /This file was generated by Bundler/
|
19
|
+
load(bundle_binstub)
|
20
|
+
else
|
21
|
+
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
|
22
|
+
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
require "rubygems"
|
27
|
+
require "bundler/setup"
|
28
|
+
|
29
|
+
load Gem.bin_path("rake", "rake")
|
data/lib/open_api/rspec.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: open_api-rspec
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ryan Hansen
|
@@ -170,6 +170,7 @@ files:
|
|
170
170
|
- bin/code_climate_reek
|
171
171
|
- bin/console
|
172
172
|
- bin/lois
|
173
|
+
- bin/rake
|
173
174
|
- bin/reek
|
174
175
|
- bin/rspec
|
175
176
|
- bin/rubocop
|