pliny 0.26.2 → 0.27.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 0674c9e51c614274d0723faf5909baaf3bd30ae0
4
- data.tar.gz: cc4c3a90ffec075c45faec036c20e7c2952c8841
2
+ SHA256:
3
+ metadata.gz: 89f96d51333f4f66bf1f811901534d2298b2a27ce8151cfe7d1ccd98cc28580d
4
+ data.tar.gz: 8282e7296e129a9abbafd1ff9bd9faba51458596759568646d5b09528dda5289
5
5
  SHA512:
6
- metadata.gz: 96e3f87b327e5f1dde9d38ac1c650c97c2444e150d7e517f7fc8ff3969f8809f129608441b7ba4f0b7eba68e157cc3dc13699edf8a56fe10dd24d27a8d350c42
7
- data.tar.gz: c715b6fd2f04af1869549d7999c1f2f0f79990a9f9e0eeb6de1b47b73f6895d7ebea913f5277f67988ab5c8b5a2bd58273feb6bd4fe5f919eef38854aeb98393
6
+ metadata.gz: 1ea78c66a6bceadaaaeaa4a4314b41fe4fcc8c89b012e4d9ea5f5abeef4c582917b6ff725e4bf174b5d3b4bbce52eb1007e81b9e5d038f67498dd334560b4675
7
+ data.tar.gz: 22d625853f9a7185ad1209af6c2d6374f4d4c3d1e92d122f68ca294bcdcae4e53f383b0414c4aa340886b316d04c93c1ab8a529bb1500c00452cb7655a59b365
@@ -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
@@ -1,3 +1,3 @@
1
1
  module Pliny
2
- VERSION = "0.26.2"
2
+ VERSION = "0.27.0"
3
3
  end
@@ -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.26"
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.46.0", require: false
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.26.2
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: 2017-12-15 00:00:00.000000000 Z
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.46'
348
+ version: '0.52'
349
349
  - - ">="
350
350
  - !ruby/object:Gem::Version
351
- version: 0.46.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.46'
358
+ version: '0.52'
359
359
  - - ">="
360
360
  - !ruby/object:Gem::Version
361
- version: 0.46.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.6.13
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