platina_world 0.1.1 → 0.1.2

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: a58fa49f81c1f28bf2a25221dfad33a4fbf7a3e0
4
- data.tar.gz: cdbe1c6cf7ce7b30a1772beb6698cb517b3746ff
3
+ metadata.gz: d266b8f71af9d950c6d83843ab34c0f7fd4dc80c
4
+ data.tar.gz: a538872a9e209ad5129263f1fbfaeb66564635e3
5
5
  SHA512:
6
- metadata.gz: f70c876bbe5bc5209625ba3709ae2eb298a7abc0cd137c94da322060a67b168aa48fdc9aa93d7422b42637bdd949a921e9b3e3046d3d1d8c33333e712217cc1e
7
- data.tar.gz: 200c924738b77a4cddb8eac773ae0901d2d15b532c447c5cf8ae1a7bcb0b4e719ac578b232a4a4d3d7398b9215588ff0ef6f59a7b5340027620f69c244136b9a
6
+ metadata.gz: 76bdcb2a10c6c40e3b31d38ffed694d53ef2ad182ddf8068203b4cebd1be846e9b5f56769a4d085ac5d6094509c18cb8f8b469f382f7a9ba2f69b64f370cef3d
7
+ data.tar.gz: 5611db6a846a141bc613d2acfa64936294a66f1b951170d7f8dc3b75fcdc59b32909f6a0d54445ea12de7555eb95ed18438b60ecb87591ad423db4c8fb4372fb
data/README.md CHANGED
@@ -62,3 +62,13 @@ and run as below
62
62
  $ platinaworld -p pw.yml
63
63
  ```
64
64
 
65
+
66
+ ## TODO
67
+
68
+ - [ x ] dry-run
69
+ - [ x ] logger
70
+ - [ x ] error class
71
+ - [ ] has contents
72
+ - [ ] json parse
73
+ - [ ] tree command json parse
74
+ - [ ] easy format
@@ -1,3 +1,3 @@
1
1
  module PlatinaWorld
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
data/platinaworld.gemspec CHANGED
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
14
14
  spec.homepage = "https://github.com/ganmacs/platina_world"
15
15
 
16
16
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
17
- spec.bindir = "exe"
17
+ spec.bindir = "bin"
18
18
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
19
19
  spec.require_paths = ["lib"]
20
20
 
metadata CHANGED
@@ -1,12 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: platina_world
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - ganmacs
8
8
  autorequire:
9
- bindir: exe
9
+ bindir: bin
10
10
  cert_chain: []
11
11
  date: 2015-08-30 00:00:00.000000000 Z
12
12
  dependencies:
@@ -66,9 +66,7 @@ files:
66
66
  - Gemfile
67
67
  - README.md
68
68
  - Rakefile
69
- - bin/console
70
69
  - bin/platinaworld
71
- - bin/setup
72
70
  - lib/platina_world.rb
73
71
  - lib/platina_world/command.rb
74
72
  - lib/platina_world/errors/base.rb
data/bin/console DELETED
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "bundler/setup"
4
- require "platina_world"
5
-
6
- # You can add fixtures and/or initialization code here to make experimenting
7
- # with your gem easier. You can also use a different console, if you like.
8
-
9
- # (If you use this, don't forget to add pry to your Gemfile!)
10
- # require "pry"
11
- # Pry.start
12
-
13
- require "irb"
14
- IRB.start
data/bin/setup DELETED
@@ -1,7 +0,0 @@
1
- #!/bin/bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
-
5
- bundle install
6
-
7
- # Do any other automated setup that you need to do here