cinesync 0.9.6
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/.document +5 -0
- data/.gitignore +21 -0
- data/LICENSE +20 -0
- data/README.markdown +53 -0
- data/Rakefile +59 -0
- data/Samples/Export Notes to CSV.rb +33 -0
- data/VERSION +1 -0
- data/cineSync Session v3 Schema.rnc +164 -0
- data/cinesync.gemspec +76 -0
- data/lib/cinesync/color_grading.rb +70 -0
- data/lib/cinesync/event_handler.rb +67 -0
- data/lib/cinesync/frame_annotation.rb +19 -0
- data/lib/cinesync/mask.rb +41 -0
- data/lib/cinesync/media_file.rb +122 -0
- data/lib/cinesync/pixel_ratio.rb +22 -0
- data/lib/cinesync/play_range.rb +21 -0
- data/lib/cinesync/session.rb +24 -0
- data/lib/cinesync/ui/standard_additions.rb +473 -0
- data/lib/cinesync/ui/win32_save_file_dialog.rb +95 -0
- data/lib/cinesync/ui.rb +68 -0
- data/lib/cinesync/xml.rb +436 -0
- data/lib/cinesync/zoom_state.rb +18 -0
- data/lib/cinesync.rb +46 -0
- data/test/helper.rb +10 -0
- metadata +128 -0
metadata
ADDED
@@ -0,0 +1,128 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: cinesync
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 9
|
8
|
+
- 6
|
9
|
+
version: 0.9.6
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- Jonathon Mah
|
13
|
+
- Rising Sun Research
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2010-05-08 00:00:00 +09:30
|
19
|
+
default_executable:
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
22
|
+
name: activesupport
|
23
|
+
prerelease: false
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
requirements:
|
26
|
+
- - ">="
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
segments:
|
29
|
+
- 2
|
30
|
+
- 3
|
31
|
+
version: "2.3"
|
32
|
+
type: :runtime
|
33
|
+
version_requirements: *id001
|
34
|
+
- !ruby/object:Gem::Dependency
|
35
|
+
name: andand
|
36
|
+
prerelease: false
|
37
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - ">="
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
segments:
|
42
|
+
- 1
|
43
|
+
- 3
|
44
|
+
- 1
|
45
|
+
version: 1.3.1
|
46
|
+
type: :runtime
|
47
|
+
version_requirements: *id002
|
48
|
+
- !ruby/object:Gem::Dependency
|
49
|
+
name: builder
|
50
|
+
prerelease: false
|
51
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - ">="
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
segments:
|
56
|
+
- 2
|
57
|
+
- 1
|
58
|
+
version: "2.1"
|
59
|
+
type: :runtime
|
60
|
+
version_requirements: *id003
|
61
|
+
description: " This gem provides a Ruby interface to the cineSync session file format,\n which is used by cineSync's scripting system. Use it to integrate\n cineSync into your workflow.\n"
|
62
|
+
email:
|
63
|
+
- jmah@cinesync.com
|
64
|
+
- info@cinesync.com
|
65
|
+
executables: []
|
66
|
+
|
67
|
+
extensions: []
|
68
|
+
|
69
|
+
extra_rdoc_files:
|
70
|
+
- LICENSE
|
71
|
+
- README.markdown
|
72
|
+
files:
|
73
|
+
- .document
|
74
|
+
- .gitignore
|
75
|
+
- LICENSE
|
76
|
+
- README.markdown
|
77
|
+
- Rakefile
|
78
|
+
- Samples/Export Notes to CSV.rb
|
79
|
+
- VERSION
|
80
|
+
- cineSync Session v3 Schema.rnc
|
81
|
+
- cinesync.gemspec
|
82
|
+
- lib/cinesync.rb
|
83
|
+
- lib/cinesync/color_grading.rb
|
84
|
+
- lib/cinesync/event_handler.rb
|
85
|
+
- lib/cinesync/frame_annotation.rb
|
86
|
+
- lib/cinesync/mask.rb
|
87
|
+
- lib/cinesync/media_file.rb
|
88
|
+
- lib/cinesync/pixel_ratio.rb
|
89
|
+
- lib/cinesync/play_range.rb
|
90
|
+
- lib/cinesync/session.rb
|
91
|
+
- lib/cinesync/ui.rb
|
92
|
+
- lib/cinesync/ui/standard_additions.rb
|
93
|
+
- lib/cinesync/ui/win32_save_file_dialog.rb
|
94
|
+
- lib/cinesync/xml.rb
|
95
|
+
- lib/cinesync/zoom_state.rb
|
96
|
+
- test/helper.rb
|
97
|
+
has_rdoc: true
|
98
|
+
homepage: http://github.com/jmah/cinesync
|
99
|
+
licenses: []
|
100
|
+
|
101
|
+
post_install_message:
|
102
|
+
rdoc_options:
|
103
|
+
- --charset=UTF-8
|
104
|
+
require_paths:
|
105
|
+
- lib
|
106
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
segments:
|
111
|
+
- 0
|
112
|
+
version: "0"
|
113
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
segments:
|
118
|
+
- 0
|
119
|
+
version: "0"
|
120
|
+
requirements: []
|
121
|
+
|
122
|
+
rubyforge_project:
|
123
|
+
rubygems_version: 1.3.6
|
124
|
+
signing_key:
|
125
|
+
specification_version: 3
|
126
|
+
summary: Library for scripting the cineSync collaborative video review tool
|
127
|
+
test_files:
|
128
|
+
- test/helper.rb
|