scalingo_databases_rake_tasks 0.1.6.2 → 0.1.7

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: d1417849f21a97569abd76133591c596393162e4
4
- data.tar.gz: 32e82544d1a135d89b5a5092d0716e9020b6ff6f
3
+ metadata.gz: e63aa76e343d41aefe5fb6e71b9730304e05f051
4
+ data.tar.gz: 5a611dbd0b1f687086b5486049322e47de2b3de1
5
5
  SHA512:
6
- metadata.gz: 60301b2f2be6d943c547a36a5ffb4b0f1555db76eec2349042ff1f48e0010905b66d765ae06f087e14012856608b893d55e89bb4269ad1965da50faabcc68d38
7
- data.tar.gz: 9a3f6e358ee1d289cd7fd8ffa0f4fcfc719d133a7828540ee61f78797535a763d9557e46c117357b51293efa467e7b93b470669216048cb1efa0342bbb2011bd
6
+ metadata.gz: a5f92c2015e3ebdfb7d6017b5495e32a96c1d389a0baecf8446b36339f62d206359e6a064f017a39058c0d97a4dc30bf2509d05df8ea1990b2ba2b615eb6586c
7
+ data.tar.gz: 5e3d7a88514e79f31419fd527dc99bd272a00294aec3a86c822507823b61921516a93feec72a2f7efb61f8aa3a80c1d1e079d58a5e79dcf9fd231213ddcc7f19
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.1.7 (2016-08-15)
2
+
3
+ Mongorestore local, fix non standard port when using MONGO_URL
4
+
1
5
  ## 0.1.6 (2016-08-15)
2
6
 
3
7
  Mongodump accept EXCLUDE_COLLECTIONS (names separated by ',') of not dumped collections
@@ -47,7 +47,7 @@ namespace :scalingo do
47
47
  uri.path[1..-1],
48
48
  uri.user,
49
49
  uri.password,
50
- (uri.host || "127.0.0.1")
50
+ "#{(uri.host || "127.0.0.1")}:#{(uri.port || "27017")}"
51
51
  ]
52
52
  else
53
53
  return [
@@ -1,3 +1,3 @@
1
1
  module ScalingoDbTasks
2
- VERSION = "0.1.6.2"
2
+ VERSION = "0.1.7"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scalingo_databases_rake_tasks
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6.2
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Scalingo