openMSX-builder 1.1.0 → 1.2.0
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/VERSION +1 -1
- data/bin/build_openmsx +7 -0
- data/openMSX-builder.gemspec +1 -1
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.2.0
|
data/bin/build_openmsx
CHANGED
@@ -8,7 +8,14 @@
|
|
8
8
|
# --tweet => Send a tweet via @openMSX_Builder after successfully having published a build
|
9
9
|
# --dont-update => Don't update the SVN repository
|
10
10
|
# --report-build-failure => If an error occurs during build, report failure via e-mail
|
11
|
+
# --version => Return the current version of openMSX-Builder
|
11
12
|
require 'openmsx_builder'
|
13
|
+
|
14
|
+
if ARGV.include?('--version')
|
15
|
+
puts File.read(File.expand_path(File.join(File.dirname(__FILE__),'..','VERSION')))
|
16
|
+
exit
|
17
|
+
end
|
18
|
+
|
12
19
|
debug('-'*50)
|
13
20
|
debug("Starting with openMSX")
|
14
21
|
OpenmsxBuilder.new(ARGV,:openmsx).run
|
data/openMSX-builder.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{openMSX-builder}
|
8
|
-
s.version = "1.
|
8
|
+
s.version = "1.2.0"
|
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"]
|