pliny 0.22.0 → 0.23.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/pliny/version.rb +1 -1
- data/lib/template/Gemfile +2 -2
- data/lib/template/lib/tasks/rubocop.rake +5 -4
- data/lib/template/spec/endpoints/schema_spec.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 683200fbb66f5d6b6961b584480ce759a6ed08d8
|
4
|
+
data.tar.gz: 49cc9f605818c73a711c442bc3a5315dd3c75ea4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 117170ba5de6e6bacc2c6d02c15dae9de1425fdb8be491bac7d60cf123161ce0a15fb77801b0eb83ed14067349adc59c8a4a6e84b8f5bc75e50de68870d55a7f
|
7
|
+
data.tar.gz: 8e94bbf374d67232644e892ede8c2d9c919e58176172158b48be927a106d0502410c4bde61b3a1957327bffdda37796052148e5b36ce8fe927e405f4cefe701a
|
data/lib/pliny/version.rb
CHANGED
data/lib/template/Gemfile
CHANGED
@@ -9,7 +9,7 @@ RSpec.describe Endpoints::Schema do
|
|
9
9
|
|
10
10
|
context "without a schema.json" do
|
11
11
|
before do
|
12
|
-
allow(File).to receive(:
|
12
|
+
allow(File).to receive(:exist?).and_return(false)
|
13
13
|
end
|
14
14
|
|
15
15
|
it "raises a 404 on missing schema" do
|
@@ -23,7 +23,7 @@ RSpec.describe Endpoints::Schema do
|
|
23
23
|
let(:contents) { "contents" }
|
24
24
|
|
25
25
|
before do
|
26
|
-
allow(File).to receive(:
|
26
|
+
allow(File).to receive(:exist?).and_return(true)
|
27
27
|
allow(File).to receive(:read).and_return(contents)
|
28
28
|
end
|
29
29
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pliny
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.23.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brandur Leach
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2017-01-
|
12
|
+
date: 2017-01-10 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|
@@ -524,7 +524,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
524
524
|
version: '0'
|
525
525
|
requirements: []
|
526
526
|
rubyforge_project:
|
527
|
-
rubygems_version: 2.5.
|
527
|
+
rubygems_version: 2.5.2
|
528
528
|
signing_key:
|
529
529
|
specification_version: 4
|
530
530
|
summary: Basic tooling to support API apps in Sinatra
|