sabrina 0.5.5.1 → 0.5.5.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/lib/sabrina/meta.rb +1 -1
- metadata +33 -41
- checksums.yaml +0 -7
data/lib/sabrina/meta.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sabrina
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.5.
|
|
4
|
+
version: 0.5.5.2
|
|
5
|
+
prerelease:
|
|
5
6
|
platform: ruby
|
|
6
7
|
authors:
|
|
7
8
|
- Winterbraid
|
|
@@ -13,101 +14,92 @@ dependencies:
|
|
|
13
14
|
- !ruby/object:Gem::Dependency
|
|
14
15
|
name: json
|
|
15
16
|
requirement: !ruby/object:Gem::Requirement
|
|
17
|
+
none: false
|
|
16
18
|
requirements:
|
|
17
|
-
- - '>='
|
|
19
|
+
- - ! '>='
|
|
18
20
|
- !ruby/object:Gem::Version
|
|
19
21
|
version: '0'
|
|
20
22
|
type: :runtime
|
|
21
23
|
prerelease: false
|
|
22
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
23
26
|
requirements:
|
|
24
|
-
- - '>='
|
|
27
|
+
- - ! '>='
|
|
25
28
|
- !ruby/object:Gem::Version
|
|
26
29
|
version: '0'
|
|
27
30
|
- !ruby/object:Gem::Dependency
|
|
28
31
|
name: chunky_png
|
|
29
32
|
requirement: !ruby/object:Gem::Requirement
|
|
33
|
+
none: false
|
|
30
34
|
requirements:
|
|
31
|
-
- - '>='
|
|
35
|
+
- - ! '>='
|
|
32
36
|
- !ruby/object:Gem::Version
|
|
33
37
|
version: '0'
|
|
34
38
|
type: :runtime
|
|
35
39
|
prerelease: false
|
|
36
40
|
version_requirements: !ruby/object:Gem::Requirement
|
|
41
|
+
none: false
|
|
37
42
|
requirements:
|
|
38
|
-
- - '>='
|
|
43
|
+
- - ! '>='
|
|
39
44
|
- !ruby/object:Gem::Version
|
|
40
45
|
version: '0'
|
|
41
|
-
description:
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
Compared to the many excellent GUI tools available, this library focuses on
|
|
47
|
-
non-interactive manipulation of ROM data. Key features include:
|
|
48
|
-
* Support for several automatically recognized base ROM types. Additional
|
|
49
|
-
types can be supported by placing JSON files in the user's +.sabrina+
|
|
50
|
-
directory.
|
|
51
|
-
* Import and export sprite sheets to or from PNG files via Chunky PNG. The
|
|
52
|
-
256x64 format (front, shiny front, back, shiny back) compatible with tools
|
|
53
|
-
such as G3HS or A-Series is automatically recognized.
|
|
54
|
-
* Direct transfer of data between two ROM files, bypassing the stage of
|
|
55
|
-
opening several application windows or creating intermediary files on
|
|
56
|
-
the HDD.
|
|
57
|
-
* Access to low-level read-and-write operations on ROMs through Bytestream
|
|
58
|
-
instances, with support for LZ77 compression and encoding/decoding text
|
|
59
|
-
strings.
|
|
46
|
+
description: ! " A library for manipulating GBA ROMs of a popular monster collection
|
|
47
|
+
RPG\n series. It is written entirely in Ruby and uses Chunky PNG, which is also\n
|
|
48
|
+
\ a pure Ruby library. Compared to the many excellent GUI tools available,\n this
|
|
49
|
+
library focuses on non-interactive manipulation of ROM data.\n"
|
|
60
50
|
email: Winterbraid@users.noreply.github.com
|
|
61
51
|
executables: []
|
|
62
52
|
extensions: []
|
|
63
53
|
extra_rdoc_files: []
|
|
64
54
|
files:
|
|
55
|
+
- lib/sabrina/bytestream/byte_input.rb
|
|
65
56
|
- lib/sabrina/bytestream/byte_output.rb
|
|
66
57
|
- lib/sabrina/bytestream/rom_operations.rb
|
|
67
|
-
- lib/sabrina/bytestream
|
|
68
|
-
- lib/sabrina/
|
|
69
|
-
- lib/sabrina/gba_string.rb
|
|
70
|
-
- lib/sabrina/config/main.rb
|
|
71
|
-
- lib/sabrina/config/charmap_out_special.rb
|
|
58
|
+
- lib/sabrina/bytestream.rb
|
|
59
|
+
- lib/sabrina/children_manager.rb
|
|
72
60
|
- lib/sabrina/config/charmap_in.rb
|
|
73
61
|
- lib/sabrina/config/charmap_out.rb
|
|
74
|
-
- lib/sabrina/
|
|
75
|
-
- lib/sabrina/
|
|
76
|
-
- lib/sabrina/
|
|
62
|
+
- lib/sabrina/config/charmap_out_special.rb
|
|
63
|
+
- lib/sabrina/config/main.rb
|
|
64
|
+
- lib/sabrina/config.rb
|
|
65
|
+
- lib/sabrina/gba_string.rb
|
|
77
66
|
- lib/sabrina/lz77.rb
|
|
78
|
-
- lib/sabrina/
|
|
67
|
+
- lib/sabrina/meta.rb
|
|
68
|
+
- lib/sabrina/monster.rb
|
|
69
|
+
- lib/sabrina/palette.rb
|
|
79
70
|
- lib/sabrina/plugin/load.rb
|
|
80
71
|
- lib/sabrina/plugin/register.rb
|
|
81
|
-
- lib/sabrina/monster.rb
|
|
82
72
|
- lib/sabrina/plugin.rb
|
|
83
|
-
- lib/sabrina/palette.rb
|
|
84
|
-
- lib/sabrina/plugins/stats.rb
|
|
85
73
|
- lib/sabrina/plugins/spritesheet.rb
|
|
74
|
+
- lib/sabrina/plugins/stats.rb
|
|
75
|
+
- lib/sabrina/rom.rb
|
|
86
76
|
- lib/sabrina/sprite.rb
|
|
87
77
|
- lib/sabrina.rb
|
|
88
78
|
- LICENSE
|
|
89
79
|
homepage: https://github.com/Winterbraid/sabrina_gba
|
|
90
80
|
licenses:
|
|
91
81
|
- MIT
|
|
92
|
-
metadata: {}
|
|
93
82
|
post_install_message:
|
|
94
83
|
rdoc_options: []
|
|
95
84
|
require_paths:
|
|
96
85
|
- lib
|
|
97
86
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
87
|
+
none: false
|
|
98
88
|
requirements:
|
|
99
|
-
- - '>='
|
|
89
|
+
- - ! '>='
|
|
100
90
|
- !ruby/object:Gem::Version
|
|
101
91
|
version: '0'
|
|
102
92
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
93
|
+
none: false
|
|
103
94
|
requirements:
|
|
104
|
-
- - '>='
|
|
95
|
+
- - ! '>='
|
|
105
96
|
- !ruby/object:Gem::Version
|
|
106
97
|
version: '0'
|
|
107
98
|
requirements: []
|
|
108
99
|
rubyforge_project:
|
|
109
|
-
rubygems_version:
|
|
100
|
+
rubygems_version: 1.8.28
|
|
110
101
|
signing_key:
|
|
111
|
-
specification_version:
|
|
102
|
+
specification_version: 3
|
|
112
103
|
summary: Hack GBA ROMs of a popular monster collection RPG series.
|
|
113
104
|
test_files: []
|
|
105
|
+
has_rdoc:
|
checksums.yaml
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
SHA1:
|
|
3
|
-
metadata.gz: df7756326dc25339c10a25cd4c2d3cf1fa80ae95
|
|
4
|
-
data.tar.gz: 77384f5773c71cc59b5f684095bad6f0f1a97821
|
|
5
|
-
SHA512:
|
|
6
|
-
metadata.gz: e4495da8e6353f30954fe96b37d7a887dc244fe7fe43c2ccd5654fbbc245fdcecd0412514fd89e19c748d6146b3b0633427a6abc6f5f987cc477b4741f66d5f1
|
|
7
|
-
data.tar.gz: 6fd7282e9178447b28e9bfc9fec209ac37bd104148ba4ac038c5a4d6843a29f22df23308f03d5072b25c19b85fcb25f2336b674a908d9a821238637ef5993070
|