sinator 3.0.1 → 3.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fb6a36e6040a2a49e2666b701af6d219d3a12f903ac6ce80b335022d05eaa30d
4
- data.tar.gz: 75d52bdc2b8f4aec939ca13063c123a50ebf45f846e66630da0ca546106666e8
3
+ metadata.gz: 5e02c49d26cc07909949a38a9a180d6df3562cb7125260b08d696e43b006b00d
4
+ data.tar.gz: 04652b27203782dc31deee97e1d7ba7e0d62d783b0e26353e1fef05689493a06
5
5
  SHA512:
6
- metadata.gz: 2db13477f97b6a6227a521aef68a1e33fae0bce9897a51e1bee6f042a9c0017888a3e95a99c7b3459827638766f2a35282ff8ecd7157a239b4e2d8be811e2b45
7
- data.tar.gz: b373bdaf7947a05f0dbb58322d9d443677fb84f834a91a6e7ef5c64b27b7368ef32261761813d391df4643598bc0b93b122d0df254e334547120e5a6842a7c92
6
+ metadata.gz: '083a7b1cab13f132029f8091816d968ae98d3d9f2f3a2b8760c9ff4aa899471e8060c7c41b483da298460cdc510c51f73f9dd2503c2bc473f8a845d60eaf1a04'
7
+ data.tar.gz: 240dfb0ca0f3493cf9058aa0f3c69077d0d81161aea4954b2c38bce860035cfbbff21d3ee7d4499c2fbe322fb897ed389cb523f7af57d4fb2d4f39618c79b96f
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ 3.0.2:
2
+ * replace APP_ENV with RACK_ENV
3
+
4
+ 3.0.1:
5
+ * update gems
6
+
1
7
  3.0.0:
2
8
  * set explicit version to all required ruby gems
3
9
  * replace sinatra-asset-pipeline with sprockets
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- sinator (3.0.0)
4
+ sinator (3.0.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -30,4 +30,4 @@ DEPENDENCIES
30
30
  sinator!
31
31
 
32
32
  BUNDLED WITH
33
- 1.16.0
33
+ 1.16.6
@@ -18,7 +18,7 @@ namespace :db do
18
18
  desc "Run migrations"
19
19
  task :migrate, [:version] do |t, args|
20
20
  Sequel.extension :migration
21
- db = Sequel.connect(YAML.load_file("#{Sinator::ROOT}/config/database.yml")[ENV['APP_ENV']])
21
+ db = Sequel.connect(YAML.load_file("#{Sinator::ROOT}/config/database.yml")[ENV['RACK_ENV']])
22
22
  migration_path = "#{Sinator::ROOT}/db/migrations"
23
23
 
24
24
  if args[:version]
@@ -1,3 +1,3 @@
1
1
  module Sinator
2
- VERSION = '3.0.1'
2
+ VERSION = '3.0.2'
3
3
  end
@@ -18,7 +18,7 @@ namespace :db do
18
18
  desc "Run migrations"
19
19
  task :migrate, [:version] do |t, args|
20
20
  Sequel.extension :migration
21
- db = Sequel.connect(YAML.load_file("#{Sinator::ROOT}/config/database.yml")[ENV['APP_ENV']])
21
+ db = Sequel.connect(YAML.load_file("#{Sinator::ROOT}/config/database.yml")[ENV['RACK_ENV']])
22
22
  migration_path = "#{Sinator::ROOT}/db/migrations"
23
23
 
24
24
  if args[:version]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sinator
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1
4
+ version: 3.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kunto Aji Kristianto
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-10-09 00:00:00.000000000 Z
11
+ date: 2018-10-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler