openMSX-builder 1.0.1 → 1.0.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 +30 -6
- data/VERSION +1 -1
- data/openMSX-builder.gemspec +1 -1
- metadata +2 -2
data/README.markdown
CHANGED
@@ -4,33 +4,57 @@ openMSX-Builder is used for building the latest SVN checkouts of [openMSX][1] an
|
|
4
4
|
It also supports publishing the created builds to an external location via [scp][4]. The original setup publishes to [FiXato's openMSX page][5].
|
5
5
|
Successfully published builds can also be announced via Twitter. [@openmsx_builder][6] is the official Twitter home for openMSX-Builder.
|
6
6
|
|
7
|
-
Setup of the oauth info has to be done manually at the moment, for more information on that read, about the amazing [twitter_oauth gem][7], [Twitter's oAuth Applications][8] and [Twitter's Authentication Wiki][9]
|
8
7
|
|
8
|
+
## Installation Guidelines
|
9
|
+
******************************************************************************
|
10
|
+
|
11
|
+
### From Git:
|
12
|
+
`git clone git://github.com/FiXato/openMSX-builder.git && cd openMSX-builder && rake install`
|
13
|
+
|
14
|
+
### From RubyForge/GemCutter:
|
15
|
+
`gem install openMSX-builder`
|
9
16
|
|
10
|
-
|
17
|
+
|
18
|
+
## Usage
|
11
19
|
******************************************************************************
|
12
|
-
|
20
|
+
|
21
|
+
The first 2 times you run `build_openmsx` it will probably say you will need to set up the configuration files for the builder and the twitter module.
|
22
|
+
Setting up the SMTP and builder configuration settings should be pretty straightforward.
|
23
|
+
Set up of the oauth info has to be done manually at the moment, for more information on that read about the amazing [twitter_oauth gem][7], [Twitter's oAuth Applications][8] and [Twitter's Authentication Wiki][9]
|
24
|
+
|
25
|
+
|
26
|
+
### Commandline Arguments
|
27
|
+
|
28
|
+
Currently `build_openmsx` supports the following commandline arguments:
|
13
29
|
|
14
30
|
* --debug => Generate debug output.
|
15
31
|
* --publish => Publish the created build
|
16
32
|
* --publish-current => Only publish the current build and exit
|
17
33
|
* --publish-all => Only publish all previously created builds and exit
|
18
|
-
* --tweet => Send a tweet via
|
34
|
+
* --tweet => Send a tweet via configured authorised Twitter account after successfully having published a build
|
19
35
|
* --dont-update => Don't update the SVN repository
|
20
36
|
* --report-build-failure => If an error occurs during build, report failure via e-mail
|
21
37
|
|
38
|
+
### Examples
|
39
|
+
|
40
|
+
Simplest way to run it would usually be:
|
41
|
+
`build_openmsx --debug --publish --tweet --report-build-failure`
|
42
|
+
|
43
|
+
Or by adding a cronjob for:
|
44
|
+
`0 3 * * * build_openmsx --publish --tweet --report-build-failure`
|
45
|
+
to have it run daily at 3 at night.
|
46
|
+
|
22
47
|
|
23
48
|
## ToDo
|
24
49
|
******************************************************************************
|
25
50
|
Current list of tasks is:
|
26
51
|
|
27
|
-
+ Publish gem to Gemcutter
|
28
52
|
+ Integrate with CIA.vc / Ruby-Rbot
|
29
53
|
+ Add tests
|
30
54
|
+ Refactor `#archive_for_revision` and `#dmg_for_revision` into a single method
|
31
55
|
+ Create a simple Sinatra App for [openMSX.FiXato.net][5]
|
32
56
|
+ Allow for automatic setup of the oAuth tokens.
|
33
|
-
|
57
|
+
+ Add documentation on the YAML configuration files.
|
34
58
|
|
35
59
|
## Notes on Patches/Pull Requests
|
36
60
|
******************************************************************************
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.2
|
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.0.
|
8
|
+
s.version = "1.0.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"]
|