pult 0.0.9 → 0.0.10

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
  SHA256:
3
- metadata.gz: 2e3e68ec93bf8947f1954b01a09b1bf0c4d0d53ff869f34b68dd2690e29762a2
4
- data.tar.gz: 295e5bf564de58f5a1c02e86572f3ab81f78fd5f395e0d466baf35726521f64e
3
+ metadata.gz: 5cf6d0efcde57179192ce44fac095062cb4acabb21fee671ee5ce6dc96a9b7ff
4
+ data.tar.gz: 4e8ed46d5925d4ebbf1fb3fbec31b94e022fdfb267552704f070c8a6f1c09223
5
5
  SHA512:
6
- metadata.gz: 3605093b5777bc42be96edc3c026cb74ddac260856a1c44718a61db450e80ba9ff240247a09e1b6c52bac49b1f659dc2a0f201eedfbc34de5727b6f7ee829033
7
- data.tar.gz: 5a8c011acb8413df87b347691398df31b85ffb5077b2f1117377910b04085859fd8baa11e9101190447d24dbce56b267e38af5a35169a47309fe8a88ab5b9b42
6
+ metadata.gz: 98b4601ff597128bab03648294f1533e47b5f7059f6ce92c5c37c3a5847d940edb2fb40f12a5f44b560b35336b4b5ba2da0dcc9c629dcae1ea34f2bbb702831e
7
+ data.tar.gz: 24bd641907b4dfffd6ab9e9c7cbfad347c65a0ebebe00cc20cae2f66560bda35608b213be86dcdc96fcd52297030db3dd7f9d5a579e96ebb28aab0d3f3a8a2fe
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- pult (0.0.3)
4
+ pult (0.0.9)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # Pult
2
2
 
3
- Pult is UNDER CONSTRUCTION
3
+ **Under construction**! This is **Dev** version (0.0.*x*)
4
4
 
5
- Comming soon...
5
+ Development progress can be reached at [CHANGELOG](./CHANGELOG.md)
data/exe/pult ADDED
@@ -0,0 +1,21 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ COMMANDS = {
4
+ ['server', 's'] => ->{
5
+ require_relative '../lib/pult'
6
+
7
+ pult = Pult.new
8
+
9
+ Pult::Api.init! pult
10
+
11
+ Thread.new { Pult::Api.server! }
12
+
13
+ exit 0
14
+ }
15
+ }
16
+
17
+ COMMANDS.keys.each do |arg|
18
+ if arg.include? ARGV[0]
19
+ COMMANDS[arg].call
20
+ end
21
+ end
data/lib/pult/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Pult
2
- VERSION = "0.0.9"
2
+ VERSION = "0.0.10"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pult
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - dmitryck
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-09-11 00:00:00.000000000 Z
11
+ date: 2019-09-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -125,7 +125,8 @@ dependencies:
125
125
  description:
126
126
  email:
127
127
  - dmitryck@gmail.com
128
- executables: []
128
+ executables:
129
+ - pult
129
130
  extensions: []
130
131
  extra_rdoc_files: []
131
132
  files:
@@ -139,6 +140,7 @@ files:
139
140
  - Rakefile
140
141
  - bin/console
141
142
  - bin/setup
143
+ - exe/pult
142
144
  - lib/init/boot.rb
143
145
  - lib/init/const.rb
144
146
  - lib/init/req-lib.rb