sabrina 0.5.5

Sign up to get free protection for your applications and to get access to all the features.
metadata ADDED
@@ -0,0 +1,113 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: sabrina
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.5.5
5
+ platform: ruby
6
+ authors:
7
+ - Winterbraid
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-10-12 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: json
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '>='
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '>='
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: chunky_png
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: |2
42
+ A library for manipulating GBA ROMs of a popular monster collection RPG
43
+ series. It is written entirely in Ruby and uses Chunky PNG, which is also
44
+ a pure Ruby library.
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.
60
+ email: Winterbraid@users.noreply.github.com
61
+ executables: []
62
+ extensions: []
63
+ extra_rdoc_files: []
64
+ files:
65
+ - lib/sabrina/bytestream/byte_output.rb
66
+ - lib/sabrina/bytestream/rom_operations.rb
67
+ - lib/sabrina/bytestream/byte_input.rb
68
+ - lib/sabrina/config.rb
69
+ - lib/sabrina/gba_string.rb
70
+ - lib/sabrina/config/main.rb
71
+ - lib/sabrina/config/charmap_out_special.rb
72
+ - lib/sabrina/config/charmap_in.rb
73
+ - lib/sabrina/config/charmap_out.rb
74
+ - lib/sabrina/bytestream.rb
75
+ - lib/sabrina/meta.rb
76
+ - lib/sabrina/rom.rb
77
+ - lib/sabrina/lz77.rb
78
+ - lib/sabrina/children_manager.rb
79
+ - lib/sabrina/plugin/load.rb
80
+ - lib/sabrina/plugin/register.rb
81
+ - lib/sabrina/monster.rb
82
+ - lib/sabrina/plugin.rb
83
+ - lib/sabrina/palette.rb
84
+ - lib/sabrina/plugins/stats.rb
85
+ - lib/sabrina/plugins/spritesheet.rb
86
+ - lib/sabrina/sprite.rb
87
+ - lib/sabrina.rb
88
+ - LICENSE
89
+ homepage: https://github.com/Winterbraid/sabrina_gba
90
+ licenses:
91
+ - MIT
92
+ metadata: {}
93
+ post_install_message:
94
+ rdoc_options: []
95
+ require_paths:
96
+ - lib
97
+ required_ruby_version: !ruby/object:Gem::Requirement
98
+ requirements:
99
+ - - '>='
100
+ - !ruby/object:Gem::Version
101
+ version: '0'
102
+ required_rubygems_version: !ruby/object:Gem::Requirement
103
+ requirements:
104
+ - - '>='
105
+ - !ruby/object:Gem::Version
106
+ version: '0'
107
+ requirements: []
108
+ rubyforge_project:
109
+ rubygems_version: 2.1.11
110
+ signing_key:
111
+ specification_version: 4
112
+ summary: Hack GBA ROMs of a popular monster collection RPG series.
113
+ test_files: []