openMSX-builder 1.3.1 → 1.3.2
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.
- data/README.markdown +1 -0
- data/VERSION +1 -1
- data/bin/build_openmsx +0 -10
- data/lib/tweet_msx.rb +1 -1
- data/openMSX-builder.gemspec +2 -2
- metadata +3 -3
data/README.markdown
CHANGED
|
@@ -33,6 +33,7 @@ Currently `build_openmsx` supports the following command-line arguments:
|
|
|
33
33
|
* --tweet => Send a tweet via configured authorised Twitter account after successfully having published a build
|
|
34
34
|
* --dont-update => Don't update the SVN repository
|
|
35
35
|
* --report-build-failure => If an error occurs during build, report failure via e-mail
|
|
36
|
+
* --version => Return the current VERSION of openMSX-Builder
|
|
36
37
|
|
|
37
38
|
By default only fatal errors will be output via STDOUT.
|
|
38
39
|
However, the following command-line arguments are available to set the verbosity:
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.3.
|
|
1
|
+
1.3.2
|
data/bin/build_openmsx
CHANGED
|
@@ -1,14 +1,4 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
|
-
# Automatic builder for openMSX and openMSX-Debugger builds for Mac OSX.
|
|
3
|
-
# Options:
|
|
4
|
-
# --debug => Generate debug output.
|
|
5
|
-
# --publish => Publish the created build
|
|
6
|
-
# --publish-current => Only publish the current build and exit
|
|
7
|
-
# --publish-all => Only publish all previously created builds and exit
|
|
8
|
-
# --tweet => Send a tweet via @openMSX_Builder after successfully having published a build
|
|
9
|
-
# --dont-update => Don't update the SVN repository
|
|
10
|
-
# --report-build-failure => If an error occurs during build, report failure via e-mail
|
|
11
|
-
# --version => Return the current version of openMSX-Builder
|
|
12
2
|
require 'openmsx_builder'
|
|
13
3
|
|
|
14
4
|
if ARGV.include?('--version')
|
data/lib/tweet_msx.rb
CHANGED
|
@@ -24,9 +24,9 @@ class TweetMsx
|
|
|
24
24
|
}
|
|
25
25
|
attr_reader :client, :twitter_down
|
|
26
26
|
def initialize(log_level=Logger::FATAL)
|
|
27
|
-
@client = TwitterOAuth::Client.new(config[:client])
|
|
28
27
|
@log = Logger.new(STDOUT)
|
|
29
28
|
@log.level = log_level
|
|
29
|
+
@client = TwitterOAuth::Client.new(config[:client])
|
|
30
30
|
end
|
|
31
31
|
|
|
32
32
|
def config
|
data/openMSX-builder.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{openMSX-builder}
|
|
8
|
-
s.version = "1.3.
|
|
8
|
+
s.version = "1.3.2"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Filip H.F. \"FiXato\" Slagter"]
|
|
12
|
-
s.date = %q{2010-03-
|
|
12
|
+
s.date = %q{2010-03-07}
|
|
13
13
|
s.default_executable = %q{build_openmsx}
|
|
14
14
|
s.description = %q{openMSX-Builder is used for building the latest SVN checkouts of openMSX and openMSX-Debugger from their sourceforge repository.
|
|
15
15
|
It also supports publishing the created builds to an external location via scp, announcing successfully published builds via Twitter and reporting build-errors via e-mail.}
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 1
|
|
7
7
|
- 3
|
|
8
|
-
-
|
|
9
|
-
version: 1.3.
|
|
8
|
+
- 2
|
|
9
|
+
version: 1.3.2
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Filip H.F. "FiXato" Slagter
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2010-03-
|
|
17
|
+
date: 2010-03-07 00:00:00 +01:00
|
|
18
18
|
default_executable: build_openmsx
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|