luban-mysql 0.1.0 → 0.1.1

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: d11a0ca321f1d170bf940db2c3a59645e28299f0
4
- data.tar.gz: b48a2c25359d04a8918948b7e613f0a526b1e2d9
3
+ metadata.gz: 1f4219d7824191d369f361e5235b8f06aa68684e
4
+ data.tar.gz: d72a91e284cf3d5c3aa8a1e466142f3da4cd4033
5
5
  SHA512:
6
- metadata.gz: bb1cde05f458f8f7f80d5a2ba1d0191efa77e339399d8167fa486035bb211a3455f8bb1db41a2eef4ba7f4d0b4c6f35950cfb3876ac08881373f546a404f5939
7
- data.tar.gz: 4dd787661584d8eef15a899538fcb21ae60b66a9c828ed81a02c4fc10e9ca7b6b7ed9ddb1c7bfc290dd7918fb0428bfbe47af41f5f81bc6d9d5034cecf379a4e
6
+ metadata.gz: 31bb8a99338e741bea4124a432ec5a5107aaff429e7177584592a72daa0f606c22cf25a92ded1d5cf07e4eda4b65731429aa5f8c1a8fb407dbf3a6bef68792e7
7
+ data.tar.gz: 6507360fb5c9ac69e4b80006ba7fbfa4083bb15fdf31feda1e6a33448e030e37b68e20e64b79ab7a3da0920beb1ccdecf7ecf542169e9ddc235a7939702842cd
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  # Change log
2
2
 
3
- ## Version 0.1.0 (WIP)
3
+ ## Version 0.1.1 (Jun 17, 2016)
4
+
5
+ Bug fixes:
6
+ * Corrected the package major version
7
+
8
+ ## Version 0.1.0 (Jun 16, 2016)
4
9
 
5
10
  New features:
6
11
  * Initialized Luban deployemnt package of Mysql
@@ -2,6 +2,11 @@ module Luban
2
2
  module Deployment
3
3
  module Packages
4
4
  class Mysql < Luban::Deployment::Service::Base
5
+ def self.decompose_version(version)
6
+ vers = version.split('.')
7
+ { major_version: "#{vers[0]}.#{vers[1]}", patch_level: vers[2] }
8
+ end
9
+
5
10
  def default_templates_path
6
11
  @default_templates_path ||= Pathname.new(File.join(File.dirname(__FILE__), 'templates')).realpath
7
12
  end
@@ -10,11 +15,6 @@ module Luban
10
15
  service_action action, dispatch_to: :controller
11
16
  end
12
17
 
13
- def decompose_version(version)
14
- vers = version.split('.')
15
- { major_version: "#{vers[0]}.#{vers[1]}", patch_level: vers[2] }
16
- end
17
-
18
18
  protected
19
19
 
20
20
  def setup_install_tasks
@@ -2,7 +2,7 @@ module Luban
2
2
  module Deployment
3
3
  module Packages
4
4
  class Mysql
5
- VERSION = '0.1.0'
5
+ VERSION = '0.1.1'
6
6
  end
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: luban-mysql
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rubyist Chi
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-06-16 00:00:00.000000000 Z
11
+ date: 2016-06-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: luban