vj-sdk 0.7.2 → 0.7.3
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/VERSION.yml +1 -1
- data/lib/videojuicer/resource/collection.rb +2 -1
- data/spec/collection_spec.rb +5 -0
- data/vj-sdk.gemspec +1 -1
- metadata +3 -3
data/VERSION.yml
CHANGED
data/spec/collection_spec.rb
CHANGED
@@ -48,5 +48,10 @@ describe Videojuicer::Resource::Collection do
|
|
48
48
|
offset.should == 20
|
49
49
|
end
|
50
50
|
|
51
|
+
it "should be able to take a string as a page and limit argument" do
|
52
|
+
offset = Videojuicer::Resource::Collection.limit_from_page_number "2", "20"
|
53
|
+
offset.should == 20
|
54
|
+
end
|
55
|
+
|
51
56
|
|
52
57
|
end
|
data/vj-sdk.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{vj-sdk}
|
8
|
-
s.version = "0.7.
|
8
|
+
s.version = "0.7.3"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["danski", "thejohnny", "knowtheory", "sixones", "btab", "lamp"]
|
metadata
CHANGED