osmosis 0.1.9 → 0.1.10

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
2
  SHA256:
3
- metadata.gz: e57f00785e0aba7cd790404973ed6406ee765183ac531aca29222d880f39f567
4
- data.tar.gz: 2577ac906cea414ce5aa5ff1a01326344154b155a8ec8bfe65c452fb67597937
3
+ metadata.gz: f34b1488875c5dc9bd8a2dda83c5748b3282c86fc3c6d7cff2e07712feaa527b
4
+ data.tar.gz: 24f93ecd2f7bd5aa093fced0ee98feab82727438ef69e47c54828871aa56fe6d
5
5
  SHA512:
6
- metadata.gz: e5a014c5163b1013b83fa6860afc9f400e1232be6436b0992914208e4030584ae956048d98ac07a25d1dc0bf41c4a91b12656853a4c71708be1fa3ad42e7588c
7
- data.tar.gz: 11d0aecc24b52d1989737311e6b965da2f4645e8270688efcd99f506cad3304e27f2015c34999d18d2eaf33ae2a1e193b9d058fd795cf357a693957a52d0d8e3
6
+ metadata.gz: 20c252f6fe979a9ffda157b00bfe8a94d5ad8d51bc7ea6bb2c5423f3571bd7805427b31d991dcec953f5178843d5b77ae206ce24012dd3ec2baf72a8301ae372
7
+ data.tar.gz: a3c58635e17617f4467891bbd0a9ececcbcc645c3ac2af96f147c8a9bed72ff3bd880ae53279a0b4001c0a048295758538d7c4c4dc2ee367df959b0381844241
@@ -53,7 +53,7 @@ module Osmosis
53
53
  def self.analyze()
54
54
  database = ActiveRecord::Base.connection_db_config.database
55
55
  return [
56
- OpenStruct.new(type: :sql, command: "ANALYZE")
56
+ OpenStruct.new(type: :sql, command: "ANALYZE"),
57
57
  OpenStruct.new(type: :print, command: "Analyzed database '#{database}'")
58
58
  ]
59
59
  end
@@ -61,7 +61,7 @@ module Osmosis
61
61
  def self.vacuum_analyze()
62
62
  database = ActiveRecord::Base.connection_db_config.database
63
63
  return [
64
- OpenStruct.new(type: :sql, command: "VACUUM ANALYZE")
64
+ OpenStruct.new(type: :sql, command: "VACUUM ANALYZE"),
65
65
  OpenStruct.new(type: :print, command: "Vacuum analyzed database '#{database}'")
66
66
  ]
67
67
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Osmosis
4
- VERSION = "0.1.9"
4
+ VERSION = "0.1.10"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: osmosis
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9
4
+ version: 0.1.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lukas_Skywalker