pliny 0.26.2 → 0.27.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/pliny/tasks/db.rake +1 -1
- data/lib/pliny/version.rb +1 -1
- data/lib/template/Gemfile +2 -2
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 89f96d51333f4f66bf1f811901534d2298b2a27ce8151cfe7d1ccd98cc28580d
|
4
|
+
data.tar.gz: 8282e7296e129a9abbafd1ff9bd9faba51458596759568646d5b09528dda5289
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1ea78c66a6bceadaaaeaa4a4314b41fe4fcc8c89b012e4d9ea5f5abeef4c582917b6ff725e4bf174b5d3b4bbce52eb1007e81b9e5d038f67498dd334560b4675
|
7
|
+
data.tar.gz: 22d625853f9a7185ad1209af6c2d6374f4d4c3d1e92d122f68ca294bcdcae4e53f383b0414c4aa340886b316d04c93c1ab8a529bb1500c00452cb7655a59b365
|
data/lib/pliny/tasks/db.rake
CHANGED
@@ -107,7 +107,7 @@ begin
|
|
107
107
|
search_path = db.dataset.with_sql("SHOW search_path").single_value
|
108
108
|
schema << "SET search_path = #{search_path};\n\n"
|
109
109
|
|
110
|
-
db[:schema_migrations].each do |migration|
|
110
|
+
db[:schema_migrations].order_by(:filename).each do |migration|
|
111
111
|
schema << db[:schema_migrations].insert_sql(migration) + ";\n"
|
112
112
|
end
|
113
113
|
end
|
data/lib/pliny/version.rb
CHANGED
data/lib/template/Gemfile
CHANGED
@@ -4,7 +4,7 @@ ruby "2.4.0"
|
|
4
4
|
gem "multi_json"
|
5
5
|
gem "oj"
|
6
6
|
gem "pg"
|
7
|
-
gem "pliny", "~> 0.
|
7
|
+
gem "pliny", "~> 0.27"
|
8
8
|
gem "pry"
|
9
9
|
gem "puma", "~> 3"
|
10
10
|
gem "rack-ssl"
|
@@ -21,7 +21,7 @@ gem "sucker_punch"
|
|
21
21
|
|
22
22
|
group :development, :test do
|
23
23
|
gem "pry-byebug"
|
24
|
-
gem "rubocop", "~> 0.
|
24
|
+
gem "rubocop", "~> 0.52.1", require: false
|
25
25
|
gem "rubocop-rspec", require: false
|
26
26
|
end
|
27
27
|
|
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.27.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:
|
12
|
+
date: 2018-01-18 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|
@@ -345,20 +345,20 @@ dependencies:
|
|
345
345
|
requirements:
|
346
346
|
- - "~>"
|
347
347
|
- !ruby/object:Gem::Version
|
348
|
-
version: '0.
|
348
|
+
version: '0.52'
|
349
349
|
- - ">="
|
350
350
|
- !ruby/object:Gem::Version
|
351
|
-
version: 0.
|
351
|
+
version: 0.52.1
|
352
352
|
type: :development
|
353
353
|
prerelease: false
|
354
354
|
version_requirements: !ruby/object:Gem::Requirement
|
355
355
|
requirements:
|
356
356
|
- - "~>"
|
357
357
|
- !ruby/object:Gem::Version
|
358
|
-
version: '0.
|
358
|
+
version: '0.52'
|
359
359
|
- - ">="
|
360
360
|
- !ruby/object:Gem::Version
|
361
|
-
version: 0.
|
361
|
+
version: 0.52.1
|
362
362
|
description: Pliny is a set of base classes and helpers to help developers write excellent
|
363
363
|
APIs in Sinatra
|
364
364
|
email:
|
@@ -531,7 +531,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
531
531
|
version: '0'
|
532
532
|
requirements: []
|
533
533
|
rubyforge_project:
|
534
|
-
rubygems_version: 2.
|
534
|
+
rubygems_version: 2.7.4
|
535
535
|
signing_key:
|
536
536
|
specification_version: 4
|
537
537
|
summary: Basic tooling to support API apps in Sinatra
|