cyberpunks 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +54 -55
- data/Rakefile +2 -1
- data/config/spritesheet.csv +294 -338
- data/config/spritesheet.png +0 -0
- data/lib/cyberpunks/version.rb +1 -1
- data/lib/cyberpunks.rb +22 -26
- metadata +18 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 701469825008016798f021f40c8284692e474878bbff0b2be5d6ea623c432f74
|
4
|
+
data.tar.gz: 8d42469b4c6593b882fcd6a69174b84739d1474767bd19a5ec6d67b1e0e10556
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 20ddcb4228aec7b5189476d4506523cc2593069d13b7c1101b0228f961723cf9def38d6bf7c51d665cb4de57396a25b8c7bac600346dd25132bb59cff90bcb1b
|
7
|
+
data.tar.gz: d47f914b87bfee2bad453c8ef747520d702d46eeaa410098704bb353e6a27729b61d515439b69bc564feab9d7adabed9ddbfb9c0145e49e7dc9df1b2cd90d009
|
data/README.md
CHANGED
@@ -1,7 +1,9 @@
|
|
1
|
+
The Do-It-Yourself (DIY) [Factory of Modern Originals (FoMO)](https://github.com/pixelartexchange/originals) Presents
|
2
|
+
|
1
3
|
# Cyberpunks (Pixel Avatars)
|
2
4
|
|
3
5
|
|
4
|
-
|
6
|
+
Yes, you can! Generate your own cyberpunk (blade runner) sci-fi 32×32 pixel avatar images (off chain) from 100+ text attributes (via built-in spritesheet); incl. 2x/4x/8x zoom for bigger sizes and more
|
5
7
|
|
6
8
|
|
7
9
|
|
@@ -16,158 +18,153 @@ cyberpunks - generate your own cyberpunk (blade runner) sci-fi 32×32 pixel avat
|
|
16
18
|
## Usage
|
17
19
|
|
18
20
|
Let's generate some super-rare never-before-seen sci-fi (blade runner)
|
19
|
-
cyberpunk (pixel avatars
|
21
|
+
cyberpunk (pixel) avatars / characters.
|
20
22
|
|
21
23
|
Note: Note: For best merging / composing (of the attributes)
|
22
|
-
use the order 1)
|
24
|
+
use the order 1) Race 2) Face 3) Mouth 4) Nose 5) Eyes 6) Ear Accessory 7) Face Accessory 8) Mask 9) Head Below 10) Eye Accessory 11) Head Above and 12) Mouth Accessory:
|
23
25
|
|
24
26
|
```ruby
|
25
27
|
###
|
26
28
|
# Cyberpunk No. 1
|
27
|
-
|
28
|
-
'Human 6',
|
29
|
+
base = Cyberpunk::Image.generate( 'Human 6',
|
29
30
|
'Goatee Black',
|
30
31
|
'Idle',
|
31
32
|
'Upturned Septum Piercing',
|
32
33
|
'Masc Idle',
|
33
34
|
'Beanie',
|
34
35
|
'Cig' )
|
35
|
-
|
36
|
+
punk = base
|
36
37
|
punk.save( "punk1.png")
|
37
38
|
punk.zoom(4).save( "punk1@4x.png" )
|
38
39
|
|
39
40
|
## let's change the background
|
40
|
-
punk
|
41
|
-
'Goatee Black',
|
42
|
-
'Idle',
|
43
|
-
'Upturned Septum Piercing',
|
44
|
-
'Masc Idle',
|
45
|
-
'Beanie',
|
46
|
-
'Cig',
|
47
|
-
background: '#638596' )
|
48
|
-
|
41
|
+
punk = base.background( 'Codelines' )
|
49
42
|
punk.save( "punk1b.png")
|
50
43
|
punk.zoom(4).save( "punk1b@4x.png" )
|
44
|
+
|
45
|
+
punk = base.background( '#638596' )
|
46
|
+
punk.save( "punk1c.png")
|
47
|
+
punk.zoom(4).save( "punk1c@4x.png" )
|
51
48
|
```
|
52
49
|
|
53
50
|
Voila!
|
54
51
|
|
55
52
|
![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk1.png)
|
56
53
|
![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk1b.png)
|
54
|
+
![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk1c.png)
|
57
55
|
|
58
56
|
In 4x:
|
59
57
|
|
60
58
|
![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk1@4x.png)
|
61
59
|
![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk1b@4x.png)
|
60
|
+
![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk1c@4x.png)
|
62
61
|
|
63
62
|
|
64
63
|
|
65
64
|
```ruby
|
66
65
|
###
|
67
66
|
# Cyberpunk No. 2
|
68
|
-
|
69
|
-
'Bot',
|
67
|
+
base = Cyberpunk::Image.generate( 'Bot',
|
70
68
|
'Lipstick Black',
|
71
69
|
'Bot Nose 3',
|
72
70
|
'Femme Star Liner',
|
73
71
|
'Large Hoop Earrings',
|
74
72
|
'Chainspace Deck Elite I',
|
75
73
|
'Long Pink Pigtails' )
|
74
|
+
punk = base
|
76
75
|
punk.save( "punk2.png")
|
77
76
|
punk.zoom(4).save( "punk2@4x.png" )
|
78
77
|
|
79
|
-
|
80
78
|
## let's change the background
|
81
|
-
punk
|
82
|
-
'Lipstick Black',
|
83
|
-
'Bot Nose 3',
|
84
|
-
'Femme Star Liner',
|
85
|
-
'Large Hoop Earrings',
|
86
|
-
'Chainspace Deck Elite I',
|
87
|
-
'Long Pink Pigtails',
|
88
|
-
background: '#638596' )
|
79
|
+
punk = base.background( 'Pink Diag' )
|
89
80
|
punk.save( "punk2b.png")
|
90
81
|
punk.zoom(4).save( "punk2b@4x.png" )
|
82
|
+
|
83
|
+
punk = base.background( '#638596' )
|
84
|
+
punk.save( "punk2c.png")
|
85
|
+
punk.zoom(4).save( "punk2c@4x.png" )
|
91
86
|
```
|
92
87
|
|
93
88
|
Voila!
|
94
89
|
|
95
90
|
![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk2.png)
|
96
91
|
![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk2b.png)
|
92
|
+
![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk2c.png)
|
97
93
|
|
98
94
|
In 4x:
|
99
95
|
|
100
96
|
![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk2@4x.png)
|
101
97
|
![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk2b@4x.png)
|
98
|
+
![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk2c@4x.png)
|
102
99
|
|
103
100
|
|
104
101
|
```ruby
|
105
102
|
###
|
106
103
|
# Cyberpunk No. 3
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
104
|
+
base = Cyberpunk::Image.generate( 'Human 9',
|
105
|
+
'Smile',
|
106
|
+
'Delicate',
|
107
|
+
'Femme Wide',
|
108
|
+
'Large Hoop Earrings',
|
109
|
+
'Messy Bun')
|
110
|
+
punk = base
|
114
111
|
punk.save( "punk3.png")
|
115
112
|
punk.zoom(4).save( "punk3@4x.png" )
|
116
113
|
|
117
|
-
|
118
|
-
punk = Cyberpunk::Image.generate( 'Human 9',
|
119
|
-
'Smile',
|
120
|
-
'Delicate',
|
121
|
-
'Femme Wide',
|
122
|
-
'Large Hoop Earrings',
|
123
|
-
'Messy Bun',
|
124
|
-
background: '#638596' )
|
114
|
+
punk = base.background( 'Orange Tie Dye' )
|
125
115
|
punk.save( "punk3b.png")
|
126
116
|
punk.zoom(4).save( "punk3b@4x.png" )
|
117
|
+
|
118
|
+
punk = base.background( '#638596' )
|
119
|
+
punk.save( "punk3c.png")
|
120
|
+
punk.zoom(4).save( "punk3c@4x.png" )
|
127
121
|
```
|
128
122
|
|
129
123
|
Voila!
|
130
124
|
|
131
125
|
![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk3.png)
|
132
126
|
![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk3b.png)
|
127
|
+
![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk3c.png)
|
133
128
|
|
134
129
|
In 4x:
|
135
130
|
|
136
131
|
![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk3@4x.png)
|
137
132
|
![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk3b@4x.png)
|
133
|
+
![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk3c@4x.png)
|
138
134
|
|
139
135
|
|
140
136
|
|
141
137
|
```ruby
|
142
138
|
###
|
143
139
|
# Cyberpunk No. 4
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
140
|
+
base = Cyberpunk::Image.generate( 'Skull Blue',
|
141
|
+
'Skull Red Dot',
|
142
|
+
'Hood',
|
143
|
+
'Dom Rose' )
|
144
|
+
punk = base
|
149
145
|
punk.save( "punk4.png")
|
150
146
|
punk.zoom(4).save( "punk4@4x.png" )
|
151
147
|
|
152
|
-
|
153
|
-
punk = Cyberpunk::Image.generate( 'Skull Blue',
|
154
|
-
'Skull Red Dot',
|
155
|
-
'Hood',
|
156
|
-
'Dom Rose',
|
157
|
-
background: '#638596' )
|
148
|
+
punk = base.background( 'Metropolis 2' )
|
158
149
|
punk.save( "punk4b.png")
|
159
150
|
punk.zoom(4).save( "punk4b@4x.png" )
|
151
|
+
|
152
|
+
punk = base.background( '#638596' )
|
153
|
+
punk.save( "punk4c.png")
|
154
|
+
punk.zoom(4).save( "punk4c@4x.png" )
|
160
155
|
```
|
161
156
|
|
162
157
|
Voila!
|
163
158
|
|
164
159
|
![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk4.png)
|
165
160
|
![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk4b.png)
|
161
|
+
![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk4c.png)
|
166
162
|
|
167
163
|
In 4x:
|
168
164
|
|
169
165
|
![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk4@4x.png)
|
170
166
|
![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk4b@4x.png)
|
167
|
+
![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk4c@4x.png)
|
171
168
|
|
172
169
|
|
173
170
|
And so on.
|
@@ -218,14 +215,16 @@ And so on.
|
|
218
215
|
|
219
216
|
## Appendix - All Built-In Spritesheet Attributes (32x32px)
|
220
217
|
|
221
|
-
See the [
|
218
|
+
See the [spritesheet.csv](https://github.com/pixelartexchange/pixelart/blob/master/cyberpunks/config/spritesheet.csv) dataset for all attribute names (w/ categories).
|
222
219
|
|
223
220
|
![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/config/spritesheet.png)
|
224
221
|
|
225
|
-
(Source: [
|
222
|
+
(Source: [cyperpunks/spritesheet.png](https://github.com/pixelartexchange/pixelart/blob/master/cyberpunks/config/spritesheet.png))
|
226
223
|
|
227
224
|
|
228
225
|
|
229
226
|
## Questions? Comments?
|
230
227
|
|
231
|
-
Post them on the [
|
228
|
+
Post them on the [D.I.Y. Punk (Pixel) Art reddit](https://old.reddit.com/r/DIYPunkArt). Thanks.
|
229
|
+
|
230
|
+
|
data/Rakefile
CHANGED
data/config/spritesheet.csv
CHANGED
@@ -1,339 +1,295 @@
|
|
1
1
|
id, type, name, more_names
|
2
|
-
0, ,
|
3
|
-
1, ,
|
4
|
-
2, ,
|
5
|
-
3, ,
|
6
|
-
4, ,
|
7
|
-
5, ,
|
8
|
-
6, ,
|
9
|
-
7, ,
|
10
|
-
8, ,
|
11
|
-
9, ,
|
12
|
-
10, ,
|
13
|
-
11, ,
|
14
|
-
12, ,
|
15
|
-
13, ,
|
16
|
-
14, ,
|
17
|
-
15, ,
|
18
|
-
16, ,
|
19
|
-
17, ,
|
20
|
-
18, ,
|
21
|
-
19, ,
|
22
|
-
20, ,
|
23
|
-
21, ,
|
24
|
-
22, ,
|
25
|
-
23, ,
|
26
|
-
24, ,
|
27
|
-
25, ,
|
28
|
-
26, ,
|
29
|
-
27, ,
|
30
|
-
28, ,
|
31
|
-
29, ,
|
32
|
-
30, ,
|
33
|
-
31, ,
|
34
|
-
32, ,
|
35
|
-
33, ,
|
36
|
-
34, ,
|
37
|
-
35, ,
|
38
|
-
36, ,
|
39
|
-
37, ,
|
40
|
-
38, ,
|
41
|
-
39, ,
|
42
|
-
40, ,
|
43
|
-
41, ,
|
44
|
-
42, ,
|
45
|
-
43, ,
|
46
|
-
44, ,
|
47
|
-
45, ,
|
48
|
-
46, ,
|
49
|
-
47, ,
|
50
|
-
48, ,
|
51
|
-
49, ,
|
52
|
-
50, ,
|
53
|
-
51, ,
|
54
|
-
52, ,
|
55
|
-
53, ,
|
56
|
-
54, ,
|
57
|
-
55, ,
|
58
|
-
56, ,
|
59
|
-
57, ,
|
60
|
-
58, ,
|
61
|
-
59, ,
|
62
|
-
60, ,
|
63
|
-
61, ,
|
64
|
-
62, ,
|
65
|
-
63, ,
|
66
|
-
64, ,
|
67
|
-
65, ,
|
68
|
-
66, ,
|
69
|
-
67, ,
|
70
|
-
68, ,
|
71
|
-
69, ,
|
72
|
-
70, ,
|
73
|
-
71, ,
|
74
|
-
72, ,
|
75
|
-
73, ,
|
76
|
-
74, ,
|
77
|
-
75, ,
|
78
|
-
76, ,
|
79
|
-
77, ,
|
80
|
-
78, ,
|
81
|
-
79, ,
|
82
|
-
80, ,
|
83
|
-
81, ,
|
84
|
-
82, ,
|
85
|
-
83, ,
|
86
|
-
84, ,
|
87
|
-
85, ,
|
88
|
-
86, ,
|
89
|
-
87, ,
|
90
|
-
88, ,
|
91
|
-
89, ,
|
92
|
-
90, ,
|
93
|
-
91, ,
|
94
|
-
92, ,
|
95
|
-
93, ,
|
96
|
-
94, ,
|
97
|
-
95, ,
|
98
|
-
96, ,
|
99
|
-
97, ,
|
100
|
-
98, ,
|
101
|
-
99, ,
|
102
|
-
100, ,
|
103
|
-
101, ,
|
104
|
-
102, ,
|
105
|
-
103, ,
|
106
|
-
104, ,
|
107
|
-
105, ,
|
108
|
-
106, ,
|
109
|
-
107, ,
|
110
|
-
108, ,
|
111
|
-
109, ,
|
112
|
-
110, ,
|
113
|
-
111, ,
|
114
|
-
112, ,
|
115
|
-
113, ,
|
116
|
-
114, ,
|
117
|
-
115, ,
|
118
|
-
116, ,
|
119
|
-
117, ,
|
120
|
-
118, ,
|
121
|
-
119, ,
|
122
|
-
120, ,
|
123
|
-
121, ,
|
124
|
-
122, ,
|
125
|
-
123, ,
|
126
|
-
124, ,
|
127
|
-
125, ,
|
128
|
-
126, ,
|
129
|
-
127, ,
|
130
|
-
128, ,
|
131
|
-
129, ,
|
132
|
-
130, ,
|
133
|
-
131, ,
|
134
|
-
132, ,
|
135
|
-
133, ,
|
136
|
-
134, ,
|
137
|
-
135, ,
|
138
|
-
136, ,
|
139
|
-
137, ,
|
140
|
-
138, ,
|
141
|
-
139, ,
|
142
|
-
140, ,
|
143
|
-
141, ,
|
144
|
-
142, ,
|
145
|
-
143, ,
|
146
|
-
144, ,
|
147
|
-
145, ,
|
148
|
-
146, ,
|
149
|
-
147, ,
|
150
|
-
148, ,
|
151
|
-
149, ,
|
152
|
-
150, ,
|
153
|
-
151, ,
|
154
|
-
152, ,
|
155
|
-
153, ,
|
156
|
-
154, ,
|
157
|
-
155, ,
|
158
|
-
156, ,
|
159
|
-
157, ,
|
160
|
-
158, ,
|
161
|
-
159, ,
|
162
|
-
160, ,
|
163
|
-
161, ,
|
164
|
-
162, ,
|
165
|
-
163, ,
|
166
|
-
164, ,
|
167
|
-
165, ,
|
168
|
-
166, ,
|
169
|
-
167, ,
|
170
|
-
168, ,
|
171
|
-
169, ,
|
172
|
-
170, ,
|
173
|
-
171, ,
|
174
|
-
172, ,
|
175
|
-
173, ,
|
176
|
-
174, ,
|
177
|
-
175, ,
|
178
|
-
176, ,
|
179
|
-
177, ,
|
180
|
-
178, ,
|
181
|
-
179, ,
|
182
|
-
180, ,
|
183
|
-
181, ,
|
184
|
-
182, ,
|
185
|
-
183, ,
|
186
|
-
184, ,
|
187
|
-
185, ,
|
188
|
-
186, ,
|
189
|
-
187, ,
|
190
|
-
188, ,
|
191
|
-
189, ,
|
192
|
-
190, ,
|
193
|
-
191, ,
|
194
|
-
192, ,
|
195
|
-
193, ,
|
196
|
-
194, ,
|
197
|
-
195, ,
|
198
|
-
196, ,
|
199
|
-
197, ,
|
200
|
-
198, ,
|
201
|
-
199, ,
|
202
|
-
200, ,
|
203
|
-
201, ,
|
204
|
-
202, ,
|
205
|
-
203, ,
|
206
|
-
204, ,
|
207
|
-
205, ,
|
208
|
-
206, ,
|
209
|
-
207, ,
|
210
|
-
208, ,
|
211
|
-
209, ,
|
212
|
-
210, ,
|
213
|
-
211, ,
|
214
|
-
212, ,
|
215
|
-
213, ,
|
216
|
-
214, ,
|
217
|
-
215, ,
|
218
|
-
216, ,
|
219
|
-
217, ,
|
220
|
-
218, ,
|
221
|
-
219, ,
|
222
|
-
220, ,
|
223
|
-
221, ,
|
224
|
-
222, ,
|
225
|
-
223, ,
|
226
|
-
224, ,
|
227
|
-
225, ,
|
228
|
-
226, ,
|
229
|
-
227, ,
|
230
|
-
228, ,
|
231
|
-
229, ,
|
232
|
-
230, ,
|
233
|
-
231, ,
|
234
|
-
232, ,
|
235
|
-
233, ,
|
236
|
-
234, ,
|
237
|
-
235, ,
|
238
|
-
236, ,
|
239
|
-
237, ,
|
240
|
-
238, ,
|
241
|
-
239, ,
|
242
|
-
240, ,
|
243
|
-
241, ,
|
244
|
-
242, ,
|
245
|
-
243, ,
|
246
|
-
244, ,
|
247
|
-
245, ,
|
248
|
-
246, ,
|
249
|
-
247, ,
|
250
|
-
248, ,
|
251
|
-
249, ,
|
252
|
-
250, ,
|
253
|
-
251, ,
|
254
|
-
252, ,
|
255
|
-
253, ,
|
256
|
-
254, ,
|
257
|
-
255, ,
|
258
|
-
256, ,
|
259
|
-
257, ,
|
260
|
-
258, ,
|
261
|
-
259, ,
|
262
|
-
260, ,
|
263
|
-
261, ,
|
264
|
-
262, ,
|
265
|
-
263, ,
|
266
|
-
264, ,
|
267
|
-
265, ,
|
268
|
-
266, ,
|
269
|
-
267, ,
|
270
|
-
268, ,
|
271
|
-
269, ,
|
272
|
-
270, ,
|
273
|
-
271, ,
|
274
|
-
272, ,
|
275
|
-
273, ,
|
276
|
-
274, ,
|
277
|
-
275, ,
|
278
|
-
276, ,
|
279
|
-
277, ,
|
280
|
-
278, ,
|
281
|
-
279, ,
|
282
|
-
280, ,
|
283
|
-
281, ,
|
284
|
-
282, ,
|
285
|
-
283, ,
|
286
|
-
284, ,
|
287
|
-
285, ,
|
288
|
-
286, ,
|
289
|
-
287, ,
|
290
|
-
288, ,
|
291
|
-
289, ,
|
292
|
-
290, ,
|
293
|
-
291, ,
|
294
|
-
292, ,
|
295
|
-
293, ,
|
296
|
-
294, , Skull Skulletor Hood,
|
297
|
-
295, , Straight Long Hair,
|
298
|
-
296, , Straight Long Purple Hair,
|
299
|
-
297, , Straw Hat,
|
300
|
-
298, , Techno Horns,
|
301
|
-
299, , Tie-Dye Bandana Bald,
|
302
|
-
300, , Trunks Hair,
|
303
|
-
301, , Zorg Hair,
|
304
|
-
302, , Bald Unkempt,
|
305
|
-
303, , Bleached Vertical Spikes,
|
306
|
-
304, , Blue Vertical Spikes,
|
307
|
-
305, , Bob Hair,
|
308
|
-
306, , Cornrows Dark Hair,
|
309
|
-
307, , Cornrows Dark Topknot Hair,
|
310
|
-
308, , Cornrows Green Hair,
|
311
|
-
309, , Cornrows Light Hair,
|
312
|
-
310, , Cropped Cut Dark,
|
313
|
-
311, , Double Pigtail Hair Brown,
|
314
|
-
312, , Double Pigtail Hair Pink,
|
315
|
-
313, , Double Spike,
|
316
|
-
314, , Face Chain,
|
317
|
-
315, , Grey Ceaser,
|
318
|
-
316, , Meditation Circlet,
|
319
|
-
317, , Messy Bun,
|
320
|
-
318, , Messy Hair Dark,
|
321
|
-
319, , Messy Hair Light,
|
322
|
-
320, , Metal Skullcap,
|
323
|
-
321, , Mohawk Hair Neon Blue,
|
324
|
-
322, , Mohawk Hair Neon Pink,
|
325
|
-
323, , Mohawk Hair,
|
326
|
-
324, , Pompadour,
|
327
|
-
325, , Punker Spike Neon Green,
|
328
|
-
326, , Punker Spike Neon Pink,
|
329
|
-
327, , Purple Fro Hawk,
|
330
|
-
328, , Rough Punk Hair Black,
|
331
|
-
329, , Rough Punk Hair Pink,
|
332
|
-
330, , Ruby Rhod Hair,
|
333
|
-
331, , Slicked Blonde Hair,
|
334
|
-
332, , Slicked Dark Hair,
|
335
|
-
333, , Sushi Chef Bandana,
|
336
|
-
334, , Well Combed Hair Blk,
|
337
|
-
335, , Well Combed Hair Brwn,
|
338
|
-
336, , Widows Peak Blue Hair,
|
339
|
-
337, , Widows Peak Hair,
|
2
|
+
0, Race, Alien,
|
3
|
+
1, Race, Bot,
|
4
|
+
2, Race, Human 1,
|
5
|
+
3, Race, Human 10,
|
6
|
+
4, Race, Human 2,
|
7
|
+
5, Race, Human 3,
|
8
|
+
6, Race, Human 4,
|
9
|
+
7, Race, Human 5,
|
10
|
+
8, Race, Human 6,
|
11
|
+
9, Race, Human 7,
|
12
|
+
10, Race, Human 8,
|
13
|
+
11, Race, Human 9,
|
14
|
+
12, Race, Skull Blue,
|
15
|
+
13, Race, Skull Gold,
|
16
|
+
14, Race, Skull,
|
17
|
+
15, Mouth, Buck Teeth,
|
18
|
+
16, Mouth, Frown,
|
19
|
+
17, Mouth, Idle,
|
20
|
+
18, Mouth, Lipstick Black,
|
21
|
+
19, Mouth, Lipstick Blue,
|
22
|
+
20, Mouth, Lipstick Green,
|
23
|
+
21, Mouth, Lipstick Purple,
|
24
|
+
22, Mouth, Lipstick Red,
|
25
|
+
23, Mouth, Missing Tooth,
|
26
|
+
24, Mouth, Open Teeth,
|
27
|
+
25, Mouth, Smile Double Monroe Piercing,
|
28
|
+
26, Mouth, Smile,
|
29
|
+
27, Mouth, Teeth Smile,
|
30
|
+
28, Mouth, Teethy Grin,
|
31
|
+
29, Face, Basic Mustache Black,
|
32
|
+
30, Face, Basic Mustache Brwn, Basic Mustache Brown
|
33
|
+
31, Face, Beard Black,
|
34
|
+
32, Face, Beard Brown,
|
35
|
+
33, Face, Beard Neon Green,
|
36
|
+
34, Face, Blu Manchu Mustache,
|
37
|
+
35, Face, Bot Missing Face w Teeth,
|
38
|
+
36, Face, Bot Missing Face,
|
39
|
+
37, Face, Clown Facepaint,
|
40
|
+
38, Face, Forehead X Tattoo,
|
41
|
+
39, Face, Fu Manchu Mustache Black,
|
42
|
+
40, Face, Fu Manchu Mustache Brown,
|
43
|
+
41, Face, Furies Facepaint,
|
44
|
+
42, Face, Goatee Black,
|
45
|
+
43, Face, Jet Black,
|
46
|
+
44, Face, Joker Facepaint,
|
47
|
+
45, Face, Mutton Chop Curled Mustache Black,
|
48
|
+
46, Face, Mutton Chop Curled Mustache Brown,
|
49
|
+
47, Face, Mutton Chop Winged Mustache Black,
|
50
|
+
48, Face, Mutton Chop Winged Mustache Brown,
|
51
|
+
49, Face, Rough Mustache Black,
|
52
|
+
50, Face, Rough Mustache Brwn, Rough Mustache Brown
|
53
|
+
51, Face, Skeleton Facepaint,
|
54
|
+
52, Face, Soul Patch Long Neon Blue,
|
55
|
+
53, Face, Soul Patch Long,
|
56
|
+
54, Face, Soul Patch Short,
|
57
|
+
55, Face, Thick Curled Mustache Black,
|
58
|
+
56, Face, Thick Curled Mustache Brown,
|
59
|
+
57, Face, Thin Curled Mustache Black,
|
60
|
+
58, Face, Thin Curled Mustache Brown,
|
61
|
+
59, Face, Winged Mustache Black,
|
62
|
+
60, Face, Winged Mustache Brown,
|
63
|
+
61, Face Accessory, Gas Mask,
|
64
|
+
62, Face Accessory, Ninja,
|
65
|
+
63, Face Accessory, Oni Mask Green,
|
66
|
+
64, Face Accessory, Oni Mask Purple,
|
67
|
+
65, Face Accessory, Oni Mask Red,
|
68
|
+
66, Face Accessory, Oxygen mask,
|
69
|
+
67, Face Accessory, Viral Mask,
|
70
|
+
68, Mask, Full Head Bandage,
|
71
|
+
69, Mask, Gas Tank Mask,
|
72
|
+
70, Mask, Hockey Mask,
|
73
|
+
71, Mask, Jack-O'-Lantern,
|
74
|
+
72, Mask, Polygon Mask,
|
75
|
+
73, Mask, Robo-Jaw,
|
76
|
+
74, Mask, Squid Mask,
|
77
|
+
75, Ear Accessory, Candy Raver Earrings,
|
78
|
+
76, Ear Accessory, Chain Earring,
|
79
|
+
77, Ear Accessory, Earpiece,
|
80
|
+
78, Ear Accessory, Gold Stud Cross Combo,
|
81
|
+
79, Ear Accessory, Gold Stud Earrings,
|
82
|
+
80, Ear Accessory, Large Hoop Earrings,
|
83
|
+
81, Ear Accessory, Open Face Shield,
|
84
|
+
82, Ear Accessory, Silver Stud Cross Combo,
|
85
|
+
83, Ear Accessory, Silver Stud Earrings,
|
86
|
+
84, Ear Accessory, Small Hoop Earrings,
|
87
|
+
85, Mouth Accessory, Blunt,
|
88
|
+
86, Mouth Accessory, Cig,
|
89
|
+
87, Mouth Accessory, Cigar,
|
90
|
+
88, Mouth Accessory, Dom Rose,
|
91
|
+
89, Mouth Accessory, Joint,
|
92
|
+
90, Mouth Accessory, Pipe,
|
93
|
+
91, Mouth Accessory, Tongue Out,
|
94
|
+
92, Mouth Accessory, Tongue Pill,
|
95
|
+
93, Nose, Bot Nose 1,
|
96
|
+
94, Nose, Bot Nose 2,
|
97
|
+
95, Nose, Bot Nose 3,
|
98
|
+
96, Nose, Delicate,
|
99
|
+
97, Nose, Downturned,
|
100
|
+
98, Nose, Droopy Stud Piercing,
|
101
|
+
99, Nose, Droopy,
|
102
|
+
100, Nose, Prominent Stud Piercing,
|
103
|
+
101, Nose, Prominent,
|
104
|
+
102, Nose, Upturned Septum Piercing,
|
105
|
+
103, Nose, Upturned,
|
106
|
+
104, Eyes, Beady Variant 1,
|
107
|
+
105, Eyes, Beady Variant 2,
|
108
|
+
106, Eyes, Beady Variant 3,
|
109
|
+
107, Eyes, Beady Variant 4,
|
110
|
+
108, Eyes, Beady Variant 5,
|
111
|
+
109, Eyes, Beady Variant 6,
|
112
|
+
110, Eyes, Beady,
|
113
|
+
111, Eyes, Bot Beady Wide,
|
114
|
+
112, Eyes, Bot Beady,
|
115
|
+
113, Eyes, Bot Busted Eye,
|
116
|
+
114, Eyes, Bot Idle,
|
117
|
+
115, Eyes, Closed Variant 1,
|
118
|
+
116, Eyes, Closed Variant 2,
|
119
|
+
117, Eyes, Closed,
|
120
|
+
118, Eyes, Draag Alien Variant 1,
|
121
|
+
119, Eyes, Draag Alien Variant 2,
|
122
|
+
120, Eyes, Draag Alien,
|
123
|
+
121, Eyes, Femme Furrowed Variant 1,
|
124
|
+
122, Eyes, Femme Furrowed Variant 2,
|
125
|
+
123, Eyes, Femme Furrowed Variant 3,
|
126
|
+
124, Eyes, Femme Furrowed Variant 4,
|
127
|
+
125, Eyes, Femme Furrowed Variant 5,
|
128
|
+
126, Eyes, Femme Furrowed,
|
129
|
+
127, Eyes, Femme Idle Variant 1,
|
130
|
+
128, Eyes, Femme Idle Variant 2,
|
131
|
+
129, Eyes, Femme Idle Variant 3,
|
132
|
+
130, Eyes, Femme Idle Variant 4,
|
133
|
+
131, Eyes, Femme Idle,
|
134
|
+
132, Eyes, Femme Shade Eyes Variant 1,
|
135
|
+
133, Eyes, Femme Shade Eyes Variant 2,
|
136
|
+
134, Eyes, Femme Shade Eyes Variant 3,
|
137
|
+
135, Eyes, Femme Shade Eyes,
|
138
|
+
136, Eyes, Femme Star Liner,
|
139
|
+
137, Eyes, Femme Wide Variant 1,
|
140
|
+
138, Eyes, Femme Wide Variant 2,
|
141
|
+
139, Eyes, Femme Wide Variant 3,
|
142
|
+
140, Eyes, Femme Wide,
|
143
|
+
141, Eyes, Look Right Variant 1,
|
144
|
+
142, Eyes, Look Right Variant 2,
|
145
|
+
143, Eyes, Look Right Variant 3,
|
146
|
+
144, Eyes, Look Right Variant 4,
|
147
|
+
145, Eyes, Look Right,
|
148
|
+
146, Eyes, Masc Furrowed Variant 1,
|
149
|
+
147, Eyes, Masc Furrowed Variant 2,
|
150
|
+
148, Eyes, Masc Furrowed Variant 3,
|
151
|
+
149, Eyes, Masc Furrowed Variant 4,
|
152
|
+
150, Eyes, Masc Furrowed,
|
153
|
+
151, Eyes, Masc Idle Variant 1,
|
154
|
+
152, Eyes, Masc Idle Variant 2,
|
155
|
+
153, Eyes, Masc Idle Variant 3,
|
156
|
+
154, Eyes, Masc Idle Variant 4,
|
157
|
+
155, Eyes, Masc Idle,
|
158
|
+
156, Eyes, Masc Shade Eyes Variant 1,
|
159
|
+
157, Eyes, Masc Shade Eyes Variant 2,
|
160
|
+
158, Eyes, Masc Shade Eyes Variant 3,
|
161
|
+
159, Eyes, Masc Shade Eyes Variant 4,
|
162
|
+
160, Eyes, Masc Shade Eyes,
|
163
|
+
161, Eyes, Masc Wide Variant 1,
|
164
|
+
162, Eyes, Masc Wide Variant 2,
|
165
|
+
163, Eyes, Masc Wide Variant 3,
|
166
|
+
164, Eyes, Masc Wide Variant 4,
|
167
|
+
165, Eyes, Masc Wide,
|
168
|
+
166, Eyes, Robo-Eyes Variant 1,
|
169
|
+
167, Eyes, Robo-Eyes Variant 2,
|
170
|
+
168, Eyes, Robo-Eyes,
|
171
|
+
169, Eyes, Skull Glowing Blue,
|
172
|
+
170, Eyes, Skull Red Dot,
|
173
|
+
171, Eyes, Skull Yellow Dot,
|
174
|
+
172, Eyes, Uninterested Variant 1,
|
175
|
+
173, Eyes, Uninterested Variant 2,
|
176
|
+
174, Eyes, Uninterested,
|
177
|
+
175, Eyes, Villian Eyes Variant 1,
|
178
|
+
176, Eyes, Villian Eyes Variant 2,
|
179
|
+
177, Eyes, Villian Eyes,
|
180
|
+
178, Eye Accessory, Aviators,
|
181
|
+
179, Eye Accessory, Chainspace Deck Basic,
|
182
|
+
180, Eye Accessory, Chainspace Deck Elite I,
|
183
|
+
181, Eye Accessory, Chainspace Deck Elite II,
|
184
|
+
182, Eye Accessory, Chainspace Deck Elite III,
|
185
|
+
183, Eye Accessory, Chainspace Deck Pro,
|
186
|
+
184, Eye Accessory, Chainspace Deck SE,
|
187
|
+
185, Eye Accessory, Cybernetic Implants,
|
188
|
+
186, Eye Accessory, Deal With It,
|
189
|
+
187, Eye Accessory, Eye Patch Monocle,
|
190
|
+
188, Eye Accessory, Eye Patch Sight,
|
191
|
+
189, Eye Accessory, Eye Patch,
|
192
|
+
190, Eye Accessory, Geordi Visor,
|
193
|
+
191, Eye Accessory, Glass Visor,
|
194
|
+
192, Eye Accessory, Glasses,
|
195
|
+
193, Eye Accessory, Goggles,
|
196
|
+
194, Eye Accessory, Hunter Eyes,
|
197
|
+
195, Eye Accessory, Kaneda Goggles,
|
198
|
+
196, Eye Accessory, Lennon Glasses,
|
199
|
+
197, Eye Accessory, Mad-Eye Monocle,
|
200
|
+
198, Eye Accessory, Night Vision Goggles,
|
201
|
+
199, Eye Accessory, Nouns,
|
202
|
+
200, Eye Accessory, Robo-Cyclopian,
|
203
|
+
201, Eye Accessory, Rodman Wrap Arounds,
|
204
|
+
202, Eye Accessory, Scouter Green,
|
205
|
+
203, Eye Accessory, Scouter Red,
|
206
|
+
204, Eye Accessory, Single Eye Reader,
|
207
|
+
205, Eye Accessory, Sniper Goggles,
|
208
|
+
206, Eye Accessory, Sun Glasses Red,
|
209
|
+
207, Eye Accessory, Sun Glasses,
|
210
|
+
208, Eye Accessory, Target Visor,
|
211
|
+
209, Eye Accessory, Thin Glasses,
|
212
|
+
210, Head (Above), Alien Hat,
|
213
|
+
211, Head (Above), Backwards Hat 1,
|
214
|
+
212, Head (Above), Backwards Hat 2,
|
215
|
+
213, Head (Above), Beanie Hair Blonde,
|
216
|
+
214, Head (Above), Beanie Hair Green,
|
217
|
+
215, Head (Above), Beanie,
|
218
|
+
216, Head (Above), Blitmap Hat,
|
219
|
+
217, Head (Above), Chain Hat,
|
220
|
+
218, Head (Above), Chain Headband,
|
221
|
+
219, Head (Above), Classic Top Hat,
|
222
|
+
220, Head (Above), Cowboy Hat Brown,
|
223
|
+
221, Head (Above), Cowboy Hat Pink,
|
224
|
+
222, Head (Above), Cowboy Hat White,
|
225
|
+
223, Head (Above), Crown Bald,
|
226
|
+
224, Head (Above), Crown Long Hair Blue,
|
227
|
+
225, Head (Above), Crown Long Hair Grey, Crown Long Hair Gray
|
228
|
+
226, Head (Above), Divine Robe,
|
229
|
+
227, Head (Above), Dreadlocks,
|
230
|
+
228, Head (Above), Dual Horn,
|
231
|
+
229, Head (Above), E-Girl Hair,
|
232
|
+
230, Head (Above), Eye Hat,
|
233
|
+
231, Head (Above), Flux Hair,
|
234
|
+
232, Head (Above), Funky Bandana Bald,
|
235
|
+
233, Head (Above), Genesis Hat,
|
236
|
+
234, Head (Above), Goggles Forehead,
|
237
|
+
235, Head (Above), Good Morning Bandana Top Knot,
|
238
|
+
236, Head (Above), Green Short Hair,
|
239
|
+
237, Head (Above), Half Buzz Half Long Blue Hair,
|
240
|
+
238, Head (Above), Half Buzz Half Long Hair,
|
241
|
+
239, Head (Above), Hood,
|
242
|
+
240, Head (Above), Horns,
|
243
|
+
241, Head (Above), Leather Bandana Bald,
|
244
|
+
242, Head (Above), Long Green Front Braid,
|
245
|
+
243, Head (Above), Long Pink Pigtails,
|
246
|
+
244, Head (Above), Long Styled Hair,
|
247
|
+
245, Head (Above), Metal Rice Hat,
|
248
|
+
246, Head (Above), Mystic Top Hat,
|
249
|
+
247, Head (Above), Neon Green Industrial Dreads,
|
250
|
+
248, Head (Above), Pyramid Hat,
|
251
|
+
249, Head (Above), Silly Copter Hat,
|
252
|
+
250, Head (Above), Skull Skulletor Hood,
|
253
|
+
251, Head (Above), Straight Long Hair,
|
254
|
+
252, Head (Above), Straight Long Purple Hair,
|
255
|
+
253, Head (Above), Straw Hat,
|
256
|
+
254, Head (Above), Techno Horns,
|
257
|
+
255, Head (Above), Tie-Dye Bandana Bald,
|
258
|
+
256, Head (Above), Trunks Hair,
|
259
|
+
257, Head (Above), Zorg Hair,
|
260
|
+
258, Head (Below), Bald Unkempt,
|
261
|
+
259, Head (Below), Bleached Vertical Spikes,
|
262
|
+
260, Head (Below), Blue Vertical Spikes,
|
263
|
+
261, Head (Below), Bob Hair,
|
264
|
+
262, Head (Below), Cornrows Dark Hair,
|
265
|
+
263, Head (Below), Cornrows Dark Topknot Hair,
|
266
|
+
264, Head (Below), Cornrows Green Hair,
|
267
|
+
265, Head (Below), Cornrows Light Hair,
|
268
|
+
266, Head (Below), Cropped Cut Dark,
|
269
|
+
267, Head (Below), Double Pigtail Hair Brown,
|
270
|
+
268, Head (Below), Double Pigtail Hair Pink,
|
271
|
+
269, Head (Below), Double Spike,
|
272
|
+
270, Head (Below), Face Chain,
|
273
|
+
271, Head (Below), Grey Ceaser, Gray Ceaser
|
274
|
+
272, Head (Below), Meditation Circlet,
|
275
|
+
273, Head (Below), Messy Bun,
|
276
|
+
274, Head (Below), Messy Hair Dark,
|
277
|
+
275, Head (Below), Messy Hair Light,
|
278
|
+
276, Head (Below), Metal Skullcap,
|
279
|
+
277, Head (Below), Mohawk Hair Neon Blue,
|
280
|
+
278, Head (Below), Mohawk Hair Neon Pink,
|
281
|
+
279, Head (Below), Mohawk Hair,
|
282
|
+
280, Head (Below), Pompadour,
|
283
|
+
281, Head (Below), Punker Spike Neon Green,
|
284
|
+
282, Head (Below), Punker Spike Neon Pink,
|
285
|
+
283, Head (Below), Purple Fro Hawk,
|
286
|
+
284, Head (Below), Rough Punk Hair Black,
|
287
|
+
285, Head (Below), Rough Punk Hair Pink,
|
288
|
+
286, Head (Below), Ruby Rhod Hair,
|
289
|
+
287, Head (Below), Slicked Blonde Hair,
|
290
|
+
288, Head (Below), Slicked Dark Hair,
|
291
|
+
289, Head (Below), Sushi Chef Bandana,
|
292
|
+
290, Head (Below), Well Combed Hair Blk, Well Combed Hair Black
|
293
|
+
291, Head (Below), Well Combed Hair Brwn, Well Combed Hair Brown
|
294
|
+
292, Head (Below), Widows Peak Blue Hair,
|
295
|
+
293, Head (Below), Widows Peak Hair,
|
data/config/spritesheet.png
CHANGED
Binary file
|
data/lib/cyberpunks/version.rb
CHANGED
data/lib/cyberpunks.rb
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
## 3rd party
|
2
2
|
require 'pixelart/base'
|
3
|
+
require 'backgrounds/base'
|
4
|
+
require 'artfactory/base'
|
3
5
|
|
4
6
|
|
5
7
|
|
@@ -8,45 +10,39 @@ require 'cyberpunks/version' # note: let version always go first
|
|
8
10
|
|
9
11
|
|
10
12
|
|
11
|
-
## forward define superclass for image
|
12
|
-
module Cyberpunks
|
13
|
-
class Image < Pixelart::Image; end
|
14
|
-
end
|
15
|
-
|
16
13
|
###
|
17
14
|
## add convenience pre-configurated generatored with build-in spritesheet (see config)
|
18
|
-
|
19
15
|
module Cyberpunks
|
20
|
-
|
21
|
-
def self.generator
|
22
|
-
@generator ||= Pixelart::Generator.new( "#{root}/config/spritesheet.png",
|
23
|
-
"#{root}/config/spritesheet.csv",
|
24
|
-
width: 32,
|
25
|
-
height: 32 )
|
26
|
-
end
|
27
|
-
|
28
|
-
|
29
|
-
class Image
|
30
|
-
def self.generate( *values, background: nil )
|
31
|
-
img = Cyberpunks.generator.generate( *values, background: background )
|
32
|
-
## note: unwrap inner image before passing on to c'tor (requires ChunkyPNG image for now)
|
33
|
-
new( 32, 32, img.image )
|
34
|
-
end # method Image.generate
|
35
|
-
end # class Image
|
36
|
-
|
37
|
-
|
38
16
|
class Spritesheet
|
17
|
+
def self.builtin
|
18
|
+
@builtin ||= Pixelart::Spritesheet.read( "#{Cyberpunks.root}/config/spritesheet.png",
|
19
|
+
"#{Cyberpunks.root}/config/spritesheet.csv",
|
20
|
+
width: 32,
|
21
|
+
height: 32 )
|
22
|
+
end
|
39
23
|
## note: for now class used for "namespace" only
|
40
24
|
def self.find_by( name: ) ## return archetype/attribute image by name
|
41
25
|
# note: pass along name as q (query string)
|
42
|
-
|
26
|
+
builtin.find_by( name: name )
|
43
27
|
end
|
44
28
|
end # class Spritesheet
|
45
29
|
## add convenience (alternate spelling) alias - why? why not?
|
46
30
|
SpriteSheet = Spritesheet
|
47
31
|
Sheet = Spritesheet
|
48
32
|
Sprite = Spritesheet
|
49
|
-
|
33
|
+
|
34
|
+
|
35
|
+
class Image < Pixelart::Image
|
36
|
+
def self.generator
|
37
|
+
@generator ||= Artfactory.use( Cyberpunks::Sheet.builtin,
|
38
|
+
image_class: Image )
|
39
|
+
end
|
40
|
+
|
41
|
+
def self.generate( *names )
|
42
|
+
generator.generate( *names )
|
43
|
+
end
|
44
|
+
end # class Image
|
45
|
+
end # module Cyberpunks
|
50
46
|
|
51
47
|
|
52
48
|
### add some convenience shortcuts
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cyberpunks
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gerald Bauer
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-06-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pixelart
|
@@ -16,14 +16,28 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 1.3.
|
19
|
+
version: 1.3.2
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 1.3.
|
26
|
+
version: 1.3.2
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: artfactory
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 0.2.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.2.0
|
27
41
|
- !ruby/object:Gem::Dependency
|
28
42
|
name: rdoc
|
29
43
|
requirement: !ruby/object:Gem::Requirement
|