corona 0.0.11 → 0.0.12

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: 05d90e5d39580853fa3d8de2d8bb23ab5e71c059
4
- data.tar.gz: af308eb023c66b5c1c7148ccc2fdd3168de87f87
3
+ metadata.gz: feaba7651c162b75ed4377d5a53dcc6f92dee768
4
+ data.tar.gz: 509307e0e7c99b34d5ca6f00355651209b6b58d1
5
5
  SHA512:
6
- metadata.gz: 953a40c47c411c1666a4f0731b6f865dd6db15e44fd01cf2c65c9534120d0f04c5716df983831b6be116aeee73f53d426d5b95a5f9d5e3e64e60541aeae038bb
7
- data.tar.gz: d76d38b3c9af8a87606645e60c09fbefba2da67ee5c56ac2e9731a52186aff3f28ea06be8f5803e4855d315641f9409c1367062883b7f4de7ed93a5bcb764736
6
+ metadata.gz: 9e9f8c5ecc6ef91cfdcb8f88ea7ad6a4b0ed2e5157c14401354d99db1be5f7aa860ed7cf4da75fc006b43a8e6cc958ee91c5ab54ba9114d8b4aa67b4860d3da4
7
+ data.tar.gz: 15957e33cf5288771f4f597b392805a61fd224b86e1c90a5791488a8d2dc9559bdfccaf1323da9a72efde2992c789f26ec08cc62d106b54f757a30ee7f6c6b6f
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- corona (0.0.11)
4
+ corona (0.0.12)
5
5
  asetus
6
6
  sequel
7
7
  slop
@@ -11,7 +11,7 @@ PATH
11
11
  GEM
12
12
  remote: https://rubygems.org/
13
13
  specs:
14
- asetus (0.0.6)
14
+ asetus (0.0.7)
15
15
  slop
16
16
  sequel (4.7.0)
17
17
  slop (3.4.7)
data/corona.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'corona'
3
- s.version = '0.0.11'
3
+ s.version = '0.0.12'
4
4
  s.platform = Gem::Platform::RUBY
5
5
  s.authors = [ 'Saku Ytti' ]
6
6
  s.email = %w( saku@ytti.fi )
data/lib/corona/cli.rb CHANGED
@@ -23,11 +23,7 @@ module Corona
23
23
  args, @opts = opts_parse
24
24
  @arg = args.shift
25
25
  CFG.debug = true if @opts[:debug]
26
- if CFGS.system.empty? and CFGS.user.empty?
27
- CFGS.user = CFGS.default
28
- CFGS.save :user
29
- raise NoConfig, 'edit ~/.config/corona/config'
30
- end
26
+ raise NoConfig, 'edit ~/.config/corona/config' if CFGS.create
31
27
  end
32
28
 
33
29
  def opts_parse
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: corona
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.11
4
+ version: 0.0.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Saku Ytti