punk 0.0.2 → 0.0.3

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
  SHA256:
3
- metadata.gz: 2604a02ba87de49a6b4c354c95dbc589d27fd864ffffe890e1ce8396a74f8974
4
- data.tar.gz: 53e4625a213c0ba33283b08906c4d5f82300af059fc6c9efb391208f3524dee8
3
+ metadata.gz: 6c5da76bf816d7620b6f5d967e347bd9dca73bedc06d92e6383ef7711ed1e5f6
4
+ data.tar.gz: 71480cd4c971fa145027e29006287e8f4c4a04862ba61e5bc1a9cd3fb25ec4c5
5
5
  SHA512:
6
- metadata.gz: 17af3680ed0db2487ad66aba2c0da4967f67fa83ae4a05df9f36a4371060478bd575dfa28ca45604ec93b539ae2bfd86d23cb0efa5eba46c7bdfb8ad9b5a3285
7
- data.tar.gz: d38265e8c9e61a35dda9bcc6d8641d4cb30f1dc578f54af293f97b03552e292285c41753f0b9442746c66a134295d33739a7af66e5e64916f6baf5aa85223e84
6
+ metadata.gz: bcdb8db68f2043c9f2edfc5d1331b78b6bd7d1a30a1ea2bfaec3c41e3b51f2a92b51c1cfdb8c74d93df2ebfdb9a328f7ca9b5c9d835e3b711c1c58a6a87ad6d9
7
+ data.tar.gz: f15bc05aae04d83d95f966d2022107b658e1b9ad9ed89ec5fdca6effb624376a28eaa6f476e4079876daf5afe8783ca50bdcbb860a8ada32305e19aecc057836
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.2
1
+ 0.0.3
@@ -4,10 +4,13 @@ command :test do |c|
4
4
  c.description = 'Run rubocop and rspec'
5
5
  c.action do
6
6
  say('Running tests...')
7
- warn('!!! PUNK_ENV should be test !!!') unless ENV['PUNK_ENV'] == 'test'
7
+ unless ENV['PUNK_ENV'] == 'test'
8
+ error('!!! PUNK_ENV should be test !!!')
9
+ exit 1
10
+ end
8
11
  ENV.delete_if { |name, _value| name =~ /^PUNK_/ }
9
12
  system('rubocop') &&
10
- system('quasar build -m pwa') &&
13
+ # system('quasar build -m pwa') && TODO
11
14
  system('PUNK_ENV=test rspec')
12
15
  exit $CHILD_STATUS.exitstatus # rubocop:disable Rails/Exit
13
16
  end
@@ -4,7 +4,7 @@ require_relative '../../punk'
4
4
  require 'sidekiq'
5
5
  require 'sidekiq-cron'
6
6
 
7
- PUNK.init(task: 'worker', config: { app: { name: 'Norma' } }).exec
7
+ PUNK.init(task: 'worker', config: { app: { name: 'Roadie' } }).exec
8
8
 
9
9
  Sidekiq.logger = SemanticLogger['PUNK::SKQ']
10
10
  Sidekiq.logger.class.alias_method(:with_context, :tagged)
@@ -2,11 +2,11 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: punk 0.0.2 ruby lib
5
+ # stub: punk 0.0.3 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "punk".freeze
9
- s.version = "0.0.2"
9
+ s.version = "0.0.3"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib".freeze]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: punk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lloyd Kranzky