lapse 0.0.21 → 0.0.22
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/lib/lapse/client/clips.rb +9 -0
- data/lib/lapse/version.rb +1 -1
- metadata +18 -9
- checksums.yaml +0 -7
data/lib/lapse/client/clips.rb
CHANGED
|
@@ -32,6 +32,15 @@ module Lapse
|
|
|
32
32
|
post("clips/#{clip_id}/submit_frames", params).body
|
|
33
33
|
end
|
|
34
34
|
|
|
35
|
+
def modify_frames(clip_id, publish_ids, unpublish_ids)
|
|
36
|
+
params = {
|
|
37
|
+
publish_ids: publish_ids,
|
|
38
|
+
unpublish_ids: unpublish_ids
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
post("clips/#{clip_id}/modify_frames", params).body
|
|
42
|
+
end
|
|
43
|
+
|
|
35
44
|
def publish_clip(clip_id, title = nil)
|
|
36
45
|
params = {
|
|
37
46
|
:clip => {
|
data/lib/lapse/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lapse
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.22
|
|
5
|
+
prerelease:
|
|
5
6
|
platform: ruby
|
|
6
7
|
authors:
|
|
7
8
|
- Sam Soffes
|
|
@@ -10,11 +11,12 @@ authors:
|
|
|
10
11
|
autorequire:
|
|
11
12
|
bindir: bin
|
|
12
13
|
cert_chain: []
|
|
13
|
-
date: 2013-06-
|
|
14
|
+
date: 2013-06-28 00:00:00.000000000 Z
|
|
14
15
|
dependencies:
|
|
15
16
|
- !ruby/object:Gem::Dependency
|
|
16
17
|
name: multi_json
|
|
17
18
|
requirement: !ruby/object:Gem::Requirement
|
|
19
|
+
none: false
|
|
18
20
|
requirements:
|
|
19
21
|
- - ~>
|
|
20
22
|
- !ruby/object:Gem::Version
|
|
@@ -22,6 +24,7 @@ dependencies:
|
|
|
22
24
|
type: :runtime
|
|
23
25
|
prerelease: false
|
|
24
26
|
version_requirements: !ruby/object:Gem::Requirement
|
|
27
|
+
none: false
|
|
25
28
|
requirements:
|
|
26
29
|
- - ~>
|
|
27
30
|
- !ruby/object:Gem::Version
|
|
@@ -29,15 +32,17 @@ dependencies:
|
|
|
29
32
|
- !ruby/object:Gem::Dependency
|
|
30
33
|
name: hashie
|
|
31
34
|
requirement: !ruby/object:Gem::Requirement
|
|
35
|
+
none: false
|
|
32
36
|
requirements:
|
|
33
|
-
- - '>='
|
|
37
|
+
- - ! '>='
|
|
34
38
|
- !ruby/object:Gem::Version
|
|
35
39
|
version: '0'
|
|
36
40
|
type: :runtime
|
|
37
41
|
prerelease: false
|
|
38
42
|
version_requirements: !ruby/object:Gem::Requirement
|
|
43
|
+
none: false
|
|
39
44
|
requirements:
|
|
40
|
-
- - '>='
|
|
45
|
+
- - ! '>='
|
|
41
46
|
- !ruby/object:Gem::Version
|
|
42
47
|
version: '0'
|
|
43
48
|
description: Ruby gem for working with the Everlapse API.
|
|
@@ -85,26 +90,30 @@ files:
|
|
|
85
90
|
homepage: https://github.com/seesawco/lapse-rb
|
|
86
91
|
licenses:
|
|
87
92
|
- MIT
|
|
88
|
-
metadata: {}
|
|
89
93
|
post_install_message:
|
|
90
94
|
rdoc_options: []
|
|
91
95
|
require_paths:
|
|
92
96
|
- lib
|
|
93
97
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
98
|
+
none: false
|
|
94
99
|
requirements:
|
|
95
|
-
- - '>='
|
|
100
|
+
- - ! '>='
|
|
96
101
|
- !ruby/object:Gem::Version
|
|
97
102
|
version: 1.8.7
|
|
98
103
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
104
|
+
none: false
|
|
99
105
|
requirements:
|
|
100
|
-
- - '>='
|
|
106
|
+
- - ! '>='
|
|
101
107
|
- !ruby/object:Gem::Version
|
|
102
108
|
version: '0'
|
|
109
|
+
segments:
|
|
110
|
+
- 0
|
|
111
|
+
hash: -2574086700697754158
|
|
103
112
|
requirements: []
|
|
104
113
|
rubyforge_project:
|
|
105
|
-
rubygems_version:
|
|
114
|
+
rubygems_version: 1.8.23
|
|
106
115
|
signing_key:
|
|
107
|
-
specification_version:
|
|
116
|
+
specification_version: 3
|
|
108
117
|
summary: Ruby gem for working with the Everlapse API.
|
|
109
118
|
test_files:
|
|
110
119
|
- test/lapse/client/clips_test.rb
|
checksums.yaml
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
SHA1:
|
|
3
|
-
metadata.gz: 168a955c5cd2a439f6dd61f1e31e498875113219
|
|
4
|
-
data.tar.gz: 5e4b430daca0c427c21f892ca927063d847de42b
|
|
5
|
-
SHA512:
|
|
6
|
-
metadata.gz: 062e32bd1b49a028c91a7d3bd482afd9db6fc7dcea7c4098f9ac630b50770024fea42b865a4dbbd6d12a18ac918ce38bf6ff1b0d5add1540c70f4738d0e3de14
|
|
7
|
-
data.tar.gz: 94d4c6572d1f65d629bcd740ac6f9f04186b294e8950789f1256ffa837b992cecc4dc35c812fa0beb5f670050965722bf246d1f59789b825d75d71029da31c0c
|