robot_sweatshop 0.4.11 → 0.4.12

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: b9ae5c44f98320bdde45d1f7cb315f29059a0b92
4
- data.tar.gz: ea24dec2cb35c6eef63e03a5f3d251627701fdd1
3
+ metadata.gz: fffc414119fc6a821cc01c60fea6d845782a2e0e
4
+ data.tar.gz: bc2c3d9a589a306d6de391119613a98c673a9de5
5
5
  SHA512:
6
- metadata.gz: d1d9969540fee3705c050f823525ac671626a3dbd94746a710a2bdfe755cbd864b7ec702e0072b2e6dc7e5ce3d031735dfeba59f46052a23ca8e304a3f8bf4da
7
- data.tar.gz: aad296f9bf18403b6ade6f6064bc706d750d98c338c57852a3b2bb58c6abf917183fd95f080efbeb91e7fb03c6d9bd9a824f1593730429f4244145162529965c
6
+ metadata.gz: 1d659543269e4645aeb12281ee5b32f7f0b59ff1caaa5d57188e3391813e86c5f98e236434ed4db611995341c597a3570324415ff9fd4da28be1583c29cf3e97
7
+ data.tar.gz: 84d9a03f30e543c3744d3082166952c2784777f6926b37c4bb2067d10a835057f006c384d6ac95870c8b10e0e57b322cc9cef84b1627b1d3e852719307072978
data/CHANGELOG.md CHANGED
@@ -6,7 +6,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
6
6
  ### Added
7
7
  - Multiple worker support
8
8
 
9
- ## [0.4.11] - 2015-07-14
9
+ ## [0.4.12] - 2015-07-14
10
10
  ### Fixed
11
11
  - Config erroring out if you don't have a home path
12
12
 
data/bin/sweatshop CHANGED
@@ -7,7 +7,7 @@ require 'robot_sweatshop/config'
7
7
  require 'robot_sweatshop/create-config-directories'
8
8
 
9
9
  program :name, 'Robot Sweatshop'
10
- program :version, '0.4.11'
10
+ program :version, '0.4.12'
11
11
  program :description, 'A lightweight, nonopinionated CI server'
12
12
  program :help, 'Author', 'Justin Scott <jvscott@gmail.com>'
13
13
 
@@ -12,13 +12,15 @@ configurations = [
12
12
  ]
13
13
 
14
14
  configurations.each do |config_path|
15
- config_path = File.expand_path config_path
16
- if File.file? config_path
17
- hash = YAML.load_file config_path
18
- configatron.configure_from_hash hash
15
+ begin
16
+ config_path = File.expand_path config_path
17
+ if File.file? config_path
18
+ hash = YAML.load_file config_path
19
+ configatron.configure_from_hash hash
20
+ end
21
+ rescue ArgumentError => error
22
+ Announce.info "Couldn't load '#{config_path}': #{error.message}"
19
23
  end
20
- rescue ArgumentError => error
21
- Announce.info "Couldn't load '#{config_path}': #{error.message}"
22
24
  end
23
25
 
24
26
  require 'robot_sweatshop/create-config-directories'
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |gem|
2
2
  gem.name = 'robot_sweatshop'
3
- gem.version = '0.4.11'
3
+ gem.version = '0.4.12'
4
4
  gem.licenses = 'MIT'
5
5
  gem.authors = ['Justin Scott']
6
6
  gem.email = 'jvscott@gmail.com'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: robot_sweatshop
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.11
4
+ version: 0.4.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Scott