dokku_client 0.6 → 0.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: b974bc521d8459fd644f6dd46334f03995aab132
4
- data.tar.gz: 6b631e6db2ba6646fa8ad3eef9dc797820473697
3
+ metadata.gz: 8cebc1aaca6deed5d79927aa62c1dba50c5fb492
4
+ data.tar.gz: 7ac5620ff1d5b2ea025a80d91222ec0b68fb4bb0
5
5
  SHA512:
6
- metadata.gz: 95a231a6d4f66b4c66d1fe07e30149ff2f5b1885f1a64b4830ed3eb9277a9df841df7e8af7f6be0aa15d5ff7f9122093265c1c3867123b36fdd9a53b537b0e1a
7
- data.tar.gz: 763546bf3ae65770d691c567b79a9eb9604765335a10f4be2fc8c0dd9d5b166d57e023a18b3cc5dedcb5237fec6d35a913dcda234f8677d063ce1f8e04fb5d99
6
+ metadata.gz: 75660ed6fce4afd08ecbe22166b7f4018c6ec1f05e38addbeddd98b8bdb0932971baac2b763c5fa1d6d82efa59dfaa59a9b1d0292c56e7b25605f316bd6d26c8
7
+ data.tar.gz: 23f6ddd5d0ece2a5a91557e7bab9f49c03b984167efaf121dd41948f30e60ff7795bdf5f519a3b925074938762a3cd49867d35c7b4393f95cb25b454101a7a77
data/README.md CHANGED
@@ -2,7 +2,9 @@
2
2
 
3
3
  [![weasel](http://www.chromosomechronicles.com/wp-content/uploads/2010/03/i-am-weasel.jpg)](https://github.com/kubalasecki/dokku_client)
4
4
 
5
+ [![Gem Version](https://badge.fury.io/rb/dokku_client.png)](http://badge.fury.io/rb/dokku_client)
5
6
  [![Code Climate](https://codeclimate.com/github/kubalasecki/dokku_client.png)](https://codeclimate.com/github/kubalasecki/dokku_client)
7
+ [![Dependency Status](https://gemnasium.com/kubalasecki/dokku_client.svg)](https://gemnasium.com/kubalasecki/dokku_client)
6
8
 
7
9
  DokkuClient ... This gem for now assumes that you have installed these plugins: (memcached, mongodb, mysql, postgresql, redis)
8
10
 
@@ -59,9 +61,17 @@ Available commands (aliases to commands in brackets)
59
61
 
60
62
  ## Roadmap
61
63
 
62
- ### 0.5 Current release
64
+ ### 0.7 Current release
63
65
 
64
- * **TODO** more commands
66
+ * **TODO** more commands (redis , mysql)
67
+
68
+ ### 0.6
69
+
70
+ * rails console commands
71
+
72
+ ### 0.5
73
+
74
+ * small updates
65
75
 
66
76
  ### 0.4
67
77
 
@@ -7,7 +7,7 @@ module DokkuClient
7
7
 
8
8
  KEYS_AND_QUESTIONS = {
9
9
  "dokku-client.project-name" => "Enter project name",
10
- "dokku-client.project-host" => "Eneter dokku host"
10
+ "dokku-client.project-host" => "Enter dokku host"
11
11
  }
12
12
 
13
13
  def initialize(options={})
@@ -29,12 +29,12 @@ module DokkuClient
29
29
  dokku "postgresql:link #{@options["project-name"]} #{db}"
30
30
  end
31
31
 
32
- def dump_postgresql db file
33
- dokku "postgresql:dump #{db} > #{file}"
32
+ def dump_postgresql db
33
+ #dokku "postgresql:dump #{db} > #{file}"
34
34
  end
35
35
 
36
- def restore_postgresql db file
37
- dokku "postgresql:restore #{db} < #{file}"
36
+ def restore_postgresql db
37
+ #dokku "postgresql:restore #{db} < #{file}"
38
38
  end
39
39
 
40
40
  end
@@ -1,3 +1,3 @@
1
1
  module DokkuClient
2
- VERSION = '0.6'
2
+ VERSION = '0.7'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dokku_client
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.6'
4
+ version: '0.7'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kuba Łasecki