build_status_server 0.5 → 0.6

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -11,8 +11,18 @@ with a
11
11
  pseudo-[REST](http://en.wikipedia.org/wiki/Representational_state_transfer)ful
12
12
  API.
13
13
 
14
- To run, you need to copy `config/config-example.yml` into `config/config.yml`
15
- and mofify accordingly.
14
+ To run, you need to create a `config.yml` file. The first time you run the
15
+ application without any arguments, you will get a sample.
16
+
17
+ # Installation
18
+
19
+ $ gem install build_status_server
20
+
21
+ # Execution
22
+
23
+ See the options you can pass in by:
24
+
25
+ $ build_status_server -h
16
26
 
17
27
  # Configuration file
18
28
  ## UDP Server
@@ -33,6 +43,9 @@ Where the persistent state will be stored.
33
43
  You can decide to either include or ignore certain builds whose names match a
34
44
  given [Regular Expression](http://en.wikipedia.org/wiki/Regular_expression).
35
45
 
46
+ ## Verbose
47
+ Whether to display informative output messages.
48
+
36
49
  # Development
37
50
 
38
51
  `bin/build_status_server_traffic_light_mock` is provided for development
@@ -1,3 +1,3 @@
1
1
  module BuildStatusServer
2
- VERSION = "0.5"
2
+ VERSION = "0.6"
3
3
  end
@@ -1,3 +1,3 @@
1
1
  module BuildStatusServer
2
- VERSION = "0.4"
2
+ VERSION = "0.5"
3
3
  end
@@ -1,6 +1,5 @@
1
1
  require "rubygems"
2
2
  require "json"
3
- require "sinatra"
4
3
  require "socket"
5
4
  require "timeout"
6
5
  require "yaml"
@@ -1,5 +1,4 @@
1
1
  require "rubygems"
2
- require "getoptlong"
3
2
  require "json"
4
3
  require "sinatra"
5
4
  require "socket"
metadata CHANGED
@@ -1,12 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: build_status_server
3
3
  version: !ruby/object:Gem::Version
4
- hash: 1
4
+ hash: 7
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
- - 5
9
- version: "0.5"
8
+ - 6
9
+ version: "0.6"
10
10
  platform: ruby
11
11
  authors:
12
12
  - Juan C. Muller