pg_saurus 4.0.2 → 4.0.3

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/pg_saurus/version.rb +1 -1
  3. metadata +3 -5
  4. data/bin/rails +0 -14
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 20e72495c2fa2ffdc422bfeefac5c196c888685cf98ed513dc94da2608476572
4
- data.tar.gz: '0366790a931f6ebb4283f80d1112588de221d3844968eaedeeb059c4443124ec'
3
+ metadata.gz: 778a1bfb5f393bfecb57a2fdd90ac89044043622d4ad1a7eaae64c4fded53dd5
4
+ data.tar.gz: e7d4a61024004a1c2cc93667c0d1aeee63d5c7196723aa0908e23fe90e5a9d40
5
5
  SHA512:
6
- metadata.gz: 149f1cd2738b90d36cc52900af989fed800064b28242e0de3aadb50eff7c3316c240d2696f01de3c6b14d395e2202a68427bb8ff6ab76b673f29f15c8f1cd78a
7
- data.tar.gz: 489cda1e93255d713f7fa6c479b738c436ec74fb7591358d7a02c6e3acd0693adcf0e6d63630000299a46ae375f65fd48c2e841cff757eed29cc74e03a664202
6
+ metadata.gz: 047a944035bfead9aa7789d3b70a1712a661a79758eb7fcd700147f33845489175087f602aa8c8b1871dbaaeeb98c0c1476faf96cd585c8dc812035cecf3500d
7
+ data.tar.gz: c60056f0f70e57a931390138f1a12f61c2177f619b15de78a0057fe09995b403f3076018eade54a27a9e899f218cf48e1a288ff3d07ecad2c0a0d9effef6abc8
@@ -1,4 +1,4 @@
1
1
  module PgSaurus
2
2
  # Version of pg_saurus gem.
3
- VERSION = "4.0.2"
3
+ VERSION = "4.0.3"
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pg_saurus
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.2
4
+ version: 4.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Potapov Sergey
@@ -13,7 +13,7 @@ authors:
13
13
  autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
- date: 2019-11-16 00:00:00.000000000 Z
16
+ date: 2020-01-31 00:00:00.000000000 Z
17
17
  dependencies:
18
18
  - !ruby/object:Gem::Dependency
19
19
  name: pg
@@ -205,14 +205,12 @@ email:
205
205
  - cryo28@gmail.com
206
206
  - matt.dressel@gmail.com
207
207
  - rubygems.org@bruceburdick.com
208
- executables:
209
- - rails
208
+ executables: []
210
209
  extensions: []
211
210
  extra_rdoc_files:
212
211
  - README.markdown
213
212
  files:
214
213
  - README.markdown
215
- - bin/rails
216
214
  - lib/colorized_text.rb
217
215
  - lib/core_ext/active_record/connection_adapters/postgresql/column.rb
218
216
  - lib/core_ext/active_record/connection_adapters/postgresql/schema_statements.rb
data/bin/rails DELETED
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # This command will automatically be run when you run "rails" with Rails gems
3
- # installed from the root of your application.
4
-
5
- ENGINE_ROOT = File.expand_path('..', __dir__)
6
- ENGINE_PATH = File.expand_path('../lib/pg_saurus/engine', __dir__)
7
- APP_PATH = File.expand_path('../test/dummy/config/application', __dir__)
8
-
9
- # Set up gems listed in the Gemfile.
10
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
11
- require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
12
-
13
- require 'rails/all'
14
- require 'rails/engine/commands'