pasqual 0.1.2 → 0.1.3

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
  SHA1:
3
- metadata.gz: bc09adce972094277d683a6c2e9cb1ad56548f28
4
- data.tar.gz: 2ea079766156623edb4164d29ca962ffa860e0a3
3
+ metadata.gz: 7fa2a389b07160cc2665fb9479244fb58105c6a8
4
+ data.tar.gz: 96f7e56d1826db3f006e6c9ab051ad14bbd6ab31
5
5
  SHA512:
6
- metadata.gz: 78ca14b7c1cefc569bfbbf76f44a5689feca1fb8d20c83ea865745371f2b676f264401b19043863b071196cbaa823b07c03aec0272341241709c201dd196aada
7
- data.tar.gz: 34d94bfafe3371e98165ad00926532ee8f05b115ba8373606b8a1f309f0a1491deaa0eeffc681d9a459d5d8cd2c90f33973208f71f38d549e15268c42a89bfcc
6
+ metadata.gz: 2f784dd7884782c5936fdefa1aa83fdbbc750fa9c2883fb097cf340c9cd91203eb30bfecd3172e9874c0b1480b03b99937aed7f7a3363d1be0f3e2d938f5bc87
7
+ data.tar.gz: feadca25da1227f4228a4ab624188987cbb8e93afdeef5b4792c732d83892b922c0efda700fd7d1a38d0150f7383e5cc27536e55374e871e503b5f8666745ed4
data/CHANGELOG ADDED
@@ -0,0 +1,3 @@
1
+ * 0.1.3 - 2015-03-16
2
+
3
+ * Added more detailed failure message on createdb
data/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  Run Postgres CLI commands with the help of database settings configured with environment variables.
4
4
 
5
+ ![](https://travis-ci.org/dkastner/pasqual.svg?branch=master)
6
+
5
7
  ## Installation
6
8
 
7
9
  Add this line to your application's Gemfile:
@@ -13,7 +13,7 @@ module Pasqual
13
13
  cmd = Command.execute 'createdb', username, password, host, port, name
14
14
 
15
15
  raise AlreadyExists if cmd.output =~ /already exists/
16
- raise Failed unless cmd.success?
16
+ raise(Failed, cmd.output) unless cmd.success?
17
17
  true
18
18
  end
19
19
 
@@ -1,3 +1,3 @@
1
1
  module Pasqual
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pasqual
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Derek Kastner
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-29 00:00:00.000000000 Z
11
+ date: 2015-03-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: childprocess
@@ -76,6 +76,7 @@ extra_rdoc_files: []
76
76
  files:
77
77
  - ".gitignore"
78
78
  - ".travis.yml"
79
+ - CHANGELOG
79
80
  - Gemfile
80
81
  - LICENSE.txt
81
82
  - README.md