anthonyw-dyno 0.1.0 → 0.1.1
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/LICENSE +19 -0
- data/README.markdown +1 -2
- data/Rakefile +2 -2
- data/VERSION.yml +1 -1
- metadata +3 -3
data/LICENSE
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Copyright (c) 2008 Anthony Williams
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
5
|
+
in the Software without restriction, including without limitation the rights
|
|
6
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
8
|
+
furnished to do so, subject to the following conditions:
|
|
9
|
+
|
|
10
|
+
The above copyright notice and this permission notice shall be included in all
|
|
11
|
+
copies or substantial portions of the Software.
|
|
12
|
+
|
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
15
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
17
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
18
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
19
|
+
SOFTWARE.
|
data/README.markdown
CHANGED
|
@@ -13,8 +13,7 @@ Dyno presently supports files spat out by a number of games:
|
|
|
13
13
|
* **Race07Parser** parses results from RACE 07, GTR: Evolution, and
|
|
14
14
|
STCC: The Game
|
|
15
15
|
* **GTR2Parser** parses results from GTR2.
|
|
16
|
-
* **RFactorParser** parses results from rFactor (and mods), and ARCA
|
|
17
|
-
very soon).
|
|
16
|
+
* **RFactorParser** parses results from rFactor (and mods), and ARCA.
|
|
18
17
|
|
|
19
18
|
Dyno requires the iniparse gem (available via `gem install iniparse` or on
|
|
20
19
|
[GitHub][iniparse]) for the Race 07 and GTR2 parsers, and libxml-ruby for
|
data/Rakefile
CHANGED
|
@@ -13,12 +13,12 @@ begin
|
|
|
13
13
|
s.email = 'anthony@ninecraft.com'
|
|
14
14
|
s.homepage = 'http://github.com/anthonyw/dyno'
|
|
15
15
|
|
|
16
|
-
s.extra_rdoc_files = ['README.markdown', '
|
|
16
|
+
s.extra_rdoc_files = ['README.markdown', 'LICENSE']
|
|
17
17
|
|
|
18
18
|
# Dependencies.
|
|
19
19
|
s.add_dependency "iniparse", ">= 0.2.0"
|
|
20
20
|
|
|
21
|
-
s.files = %w(
|
|
21
|
+
s.files = %w(LICENSE README.markdown Rakefile VERSION.yml) +
|
|
22
22
|
Dir.glob("{lib,spec}/**/*")
|
|
23
23
|
end
|
|
24
24
|
rescue LoadError
|
data/VERSION.yml
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: anthonyw-dyno
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Anthony Williams
|
|
@@ -29,9 +29,9 @@ extensions: []
|
|
|
29
29
|
|
|
30
30
|
extra_rdoc_files:
|
|
31
31
|
- README.markdown
|
|
32
|
-
-
|
|
32
|
+
- LICENSE
|
|
33
33
|
files:
|
|
34
|
-
-
|
|
34
|
+
- LICENSE
|
|
35
35
|
- README.markdown
|
|
36
36
|
- Rakefile
|
|
37
37
|
- VERSION.yml
|