schema-evolution-manager 0.9.33 → 0.9.34

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
  SHA1:
3
- metadata.gz: c7ce2d7df7ec125e40766468d8b925c255d9ffc2
4
- data.tar.gz: 4b969d8c87c7efad6e54c19061838c8505f85887
3
+ metadata.gz: 8c9e012bd100638875acb4a8b02998161619ed0a
4
+ data.tar.gz: 74caee300a96d8dec22d9e60e395ba124449be37
5
5
  SHA512:
6
- metadata.gz: 756566a14de25d0269b5d62b882657402f1f92843add459ffd96b6e0fd33bdb55de59aedcace125aed815cc19b96da30f175ac44d5a3c22b09b37644521917ad
7
- data.tar.gz: 97329e02665bd5eb7e6cf4d4e9c7446808e87a13d19e488e682780eb526e2f80c86c732bd370c2d2c3d7b47022f6d240ec58bb27130aaebcad73d2707fb62318
6
+ metadata.gz: 9be418dfcc07206d614fabc6dc5d3c4ec93e38dadc1a238bf512f05c65fae208d662380c79bc7d30742cb77aa49866a39af53e28c27720020c193442f762d403
7
+ data.tar.gz: 3f113c7664e87381c6f1e380cf0d7695510c8804dbd66d2b79b63c381fba258667460ce6ce35123cba6245f89e10656d772795cbf96b5e831e0d39c765f4b8bc
data/README.md CHANGED
@@ -129,7 +129,7 @@ There are two ways to install schema evolution manager:
129
129
 
130
130
  git clone git://github.com/mbryzek/schema-evolution-manager.git
131
131
  cd schema-evolution-manager
132
- git checkout 0.9.33
132
+ git checkout 0.9.34
133
133
  ruby ./configure.rb
134
134
  sudo ./install.rb
135
135
 
@@ -28,7 +28,7 @@ module SchemaEvolutionManager
28
28
  # executes a simple sql command.
29
29
  def psql_command(sql_command)
30
30
  Preconditions.assert_class(sql_command, String)
31
- command = "psql --no-align --tuples-only --command \"%s\" %s" % [sql_command, @url]
31
+ command = "psql --no-align --tuples-only --no-psqlrc --command \"%s\" %s" % [sql_command, @url]
32
32
  Library.system_or_error(command)
33
33
  end
34
34
 
@@ -2,7 +2,7 @@ module SchemaEvolutionManager
2
2
 
3
3
  module SemVersion
4
4
 
5
- VERSION = '0.9.33' # Automatically updated by util/create-release.rb
5
+ VERSION = '0.9.34' # Automatically updated by util/create-release.rb
6
6
 
7
7
  end
8
8
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: schema-evolution-manager
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.33
4
+ version: 0.9.34
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Bryzek
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-04-21 00:00:00.000000000 Z
11
+ date: 2017-05-18 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: '["Michael Bryzek"]'
14
14
  email: mbryzek@alum.mit.edu
@@ -31,6 +31,7 @@ files:
31
31
  - bin/sem-dist
32
32
  - bin/sem-info
33
33
  - bin/sem-init
34
+ - lib/schema-evolution-manager.rb
34
35
  - lib/schema-evolution-manager/apply_util.rb
35
36
  - lib/schema-evolution-manager/args.rb
36
37
  - lib/schema-evolution-manager/ask.rb
@@ -48,11 +49,10 @@ files:
48
49
  - lib/schema-evolution-manager/sem_version.rb
49
50
  - lib/schema-evolution-manager/template.rb
50
51
  - lib/schema-evolution-manager/version.rb
51
- - lib/schema-evolution-manager.rb
52
52
  - scripts/20130318-105434.sql
53
53
  - scripts/20130318-105456.sql
54
- - template/dev.rb
55
54
  - template/README.md
55
+ - template/dev.rb
56
56
  homepage: https://github.com/gilt/schema-evolution-manager
57
57
  licenses:
58
58
  - Apache 2.0
@@ -63,17 +63,17 @@ require_paths:
63
63
  - lib
64
64
  required_ruby_version: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - '>='
66
+ - - ">="
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
69
  required_rubygems_version: !ruby/object:Gem::Requirement
70
70
  requirements:
71
- - - '>='
71
+ - - ">="
72
72
  - !ruby/object:Gem::Version
73
73
  version: '0'
74
74
  requirements: []
75
75
  rubyforge_project:
76
- rubygems_version: 2.0.14.1
76
+ rubygems_version: 2.6.11
77
77
  signing_key:
78
78
  specification_version: 4
79
79
  summary: Schema evolution manager is a simple schema migration tool for postgresql