matterhorn_whymper 1.5.0 → 1.5.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- ZDU0MzNhMzRhYWM3OTE3YTY1MTAxZThmMmI5M2MzMzFjOWQzNjkxMA==
4
+ MmExMTI3YjhlYjFlMjYyYzg0YWEzOWY0ODkxOTZjZjU2OTJlMDZkYw==
5
5
  data.tar.gz: !binary |-
6
- OGQzMjM1YzlmODA2NTE5OTBhMTVjNTRhYzZlOWYwYzYxNDE3MmQ1Mw==
6
+ OGU4YjZhZjJkNWY1OGM5NjhmYzllYmIxZTcyOWZjNGM5ZDEwZjNhYQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- NjJjYjY0OWFkNWUzZjczODRkNzI2ZTViMjI2OWJjNjI3YjU0YzM1N2Y3YmYw
10
- YWQ0YWQ2ODVjYWQwMDRiOTBlZmE3MzM5MjVkMmRhZDJhMzAzYTBiMjYwYWNj
11
- ZGMxMGFmMzk1ZWRkZTc4NDQ3ZmFmMjJmMGM3YjJmOWEyM2Q3NmM=
9
+ OWMzY2JiODkxNDA2ZWY0MzMxYTgwMTc3Nzk3MjgxMDkxYjQ1ZjhhYTYyMGEx
10
+ ZjA1MmRmOWNmMzljNDlkN2I1NzRkNTdlZDAzM2NkZGIwM2UyNmM0MDMwOTIx
11
+ M2NjOGYzOTk1MjdkNDllMTE4YTAzNjUxMDY3MWRhMTAzYzA1Mjg=
12
12
  data.tar.gz: !binary |-
13
- Njg4NjVjYWU5ZTk5NTk2Y2Y1M2EwYjY0ZjIwY2U5MTA0Yjc1MzVjNmYzYjli
14
- YjkyMjFiNTU4NzE3ODhjMTBjYTdkMjJiZGNiMmFmNzUzOWMxMmRmYWEwYjI4
15
- ZTIwMjFkZGZiODdiMjk2MjE1NjBjMjhlMTAyMGM1N2IyYTM3ZGY=
13
+ NTI3MGY1NzZkZDUxODFlOWRkNDYxNzk5OTJmMjQ0YjBjZjA0M2E1MTRkZjMy
14
+ NWMwNDBiMDk5NmE3Y2IwYjc3ZWI5ODc3Zjg1NDUxMThmODdmYzZmZjZkZjM2
15
+ ZTkxN2YwMGNkNjczNThhZWM3ZjdjMjRhZjRjYWY3MThmZDhmYWI=
data/.gitignore CHANGED
@@ -7,7 +7,6 @@ Gemfile.lock
7
7
  InstalledFiles
8
8
  _yardoc
9
9
  coverage
10
- doc/
11
10
  lib/bundler/man
12
11
  pkg
13
12
  rdoc
data/doc/cutting.smil ADDED
@@ -0,0 +1,23 @@
1
+ <?xml version="1.1" encoding="UTF-8" standalone="yes"?>
2
+ <!--
3
+ - A good source of information about SMIL is this:
4
+ - http://service.real.com/help/library/guides/realone/ProductionGuide/HTML/htmfiles/timing.htm
5
+ -->
6
+ <smil xmlns="http://www.w3.org/ns/SMIL" version="3.0">
7
+ <!-- The head tag, even if empty, is absolutely required since otherwise the SMIL parser
8
+ - starts duplicating elements. -->
9
+ <head/>
10
+ <body>
11
+ <seq>
12
+ <!-- Play video.mp4 from the 0s to the 2s marker of its timeline. -->
13
+ <video src="${source}" clipBegin="0s" clipEnd="2s"/>
14
+ <!-- Play video.mp4 from the 10s to the 22s marker of its timeline.
15
+ - In conjunction with the previous video tag this cuts out 8s from position 2s to 10s -->
16
+ <video src="${source}" clipBegin="10s" clipEnd="22s"/>
17
+ <!-- Play video.mp4 from the 30s marker to the end of its timeline.
18
+ - In conjunction with the previous video tag this cuts out 8s from position 22s to 30s
19
+ - Please note that the clip end must be provided. -->
20
+ <video src="${source}" clipBegin="30s" clipEnd="60s"/>
21
+ </seq>
22
+ </body>
23
+ </smil>
data/doc/release.md ADDED
@@ -0,0 +1,5 @@
1
+ ## Release Matterhorn Whymper GEM
2
+
3
+ be rake spec
4
+ be rake build
5
+ be rake release
@@ -0,0 +1,16 @@
1
+ <?xml version="1.1" encoding="UTF-8"?>
2
+ <smil xmlns="http://www.w3.org/ns/SMIL">
3
+ <head>
4
+ </head>
5
+ <body>
6
+ <par dur="88728ms">
7
+ <seq dur="84000ms">
8
+ <video begin="0ms" dur="84000ms" src="source1/mux_2013-10-28T08_09_34_841.mov"/>
9
+ </seq>
10
+ <seq dur="81867ms">
11
+ <video begin="6861ms" dur="32000ms" src="source2/video_2013-10-28T08_09_41_702.mov"/>
12
+ <video begin="40861ms" dur="47867ms" src="source2/video_2013-10-28T08_10_15_702.mov"/>
13
+ </seq>
14
+ </par>
15
+ </body>
16
+ </smil>
@@ -102,12 +102,12 @@ class Matterhorn::Endpoint::Group < Matterhorn::Endpoint
102
102
  if roles.kind_of?(String)
103
103
  form_param['roles'] = roles
104
104
  elsif roles.kind_of?(Array)
105
- form_param['roles'] = roles.compact.join(',')
105
+ form_param['roles'] = roles.compact.uniq.join(',')
106
106
  end
107
107
  if users.kind_of?(String)
108
108
  form_param['users'] = users
109
109
  elsif users.kind_of?(Array)
110
- form_param['users'] = users.compact.join(',')
110
+ form_param['users'] = users.compact.uniq.join(',')
111
111
  end
112
112
  form_param
113
113
  end
@@ -5,7 +5,7 @@ module MatterhornWhymper
5
5
 
6
6
  # -------------------------------------------------------------------------- const definitions ---
7
7
 
8
- VERSION = "1.5.0"
8
+ VERSION = "1.5.1"
9
9
 
10
10
 
11
11
  end # -------------------------------------------------------------------- end MatterhornWhymper ---
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: matterhorn_whymper
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.0
4
+ version: 1.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Fritschi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-09-23 00:00:00.000000000 Z
11
+ date: 2015-09-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: multipart-post
@@ -137,6 +137,9 @@ files:
137
137
  - LICENSE.txt
138
138
  - README.md
139
139
  - Rakefile
140
+ - doc/cutting.smil
141
+ - doc/release.md
142
+ - doc/source+partial.smil
140
143
  - lib/matterhorn/acl.rb
141
144
  - lib/matterhorn/dublin_core.rb
142
145
  - lib/matterhorn/endpoint.rb