PhantomAnimationEditor 0.1.0
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.
- checksums.yaml +7 -0
- data/PhantomAnimationEditor.gemspec +20 -0
- data/bin/PhantomAnimationEditor +17 -0
- data/lib/phantom_animation_editor.rb +2 -0
- data/lib/phantom_animation_editor/adapter.rb +100 -0
- data/lib/phantom_animation_editor/editor_window.rb +363 -0
- data/lib/phantom_animation_editor/frame.rb +80 -0
- data/lib/phantom_animation_editor/frame_list.rb +110 -0
- data/lib/phantom_animation_editor/layout.glade +567 -0
- metadata +94 -0
metadata
ADDED
@@ -0,0 +1,94 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: PhantomAnimationEditor
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Rei Kagetsuki
|
8
|
+
- Rika Yoshida
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2016-09-14 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: phantom_svg
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - "~>"
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: '1.2'
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 1.2.3
|
24
|
+
type: :runtime
|
25
|
+
prerelease: false
|
26
|
+
version_requirements: !ruby/object:Gem::Requirement
|
27
|
+
requirements:
|
28
|
+
- - "~>"
|
29
|
+
- !ruby/object:Gem::Version
|
30
|
+
version: '1.2'
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 1.2.3
|
34
|
+
- !ruby/object:Gem::Dependency
|
35
|
+
name: gtk3
|
36
|
+
requirement: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '3.0'
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: 3.0.9
|
44
|
+
type: :runtime
|
45
|
+
prerelease: false
|
46
|
+
version_requirements: !ruby/object:Gem::Requirement
|
47
|
+
requirements:
|
48
|
+
- - "~>"
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: '3.0'
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: 3.0.9
|
54
|
+
description: Animation editor primarily targeted at making small but high quality
|
55
|
+
animations.
|
56
|
+
email: info@phantom.industries
|
57
|
+
executables:
|
58
|
+
- PhantomAnimationEditor
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- PhantomAnimationEditor.gemspec
|
63
|
+
- bin/PhantomAnimationEditor
|
64
|
+
- lib/phantom_animation_editor.rb
|
65
|
+
- lib/phantom_animation_editor/adapter.rb
|
66
|
+
- lib/phantom_animation_editor/editor_window.rb
|
67
|
+
- lib/phantom_animation_editor/frame.rb
|
68
|
+
- lib/phantom_animation_editor/frame_list.rb
|
69
|
+
- lib/phantom_animation_editor/layout.glade
|
70
|
+
homepage: https://github.com/PhantomCreation/PhantomAnimationEditor
|
71
|
+
licenses:
|
72
|
+
- GPL-3.0+
|
73
|
+
metadata: {}
|
74
|
+
post_install_message:
|
75
|
+
rdoc_options: []
|
76
|
+
require_paths:
|
77
|
+
- lib
|
78
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
84
|
+
requirements:
|
85
|
+
- - ">="
|
86
|
+
- !ruby/object:Gem::Version
|
87
|
+
version: '0'
|
88
|
+
requirements: []
|
89
|
+
rubyforge_project:
|
90
|
+
rubygems_version: 2.5.1
|
91
|
+
signing_key:
|
92
|
+
specification_version: 4
|
93
|
+
summary: Animation editor that generates frame animated SVG and animated PNG files
|
94
|
+
test_files: []
|