vj-sdk 0.6.8 → 0.6.9
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION.yml +1 -1
- data/lib/videojuicer/assets.rb +5 -0
- data/lib/videojuicer/presentation.rb +2 -0
- data/spec/presentation_spec.rb +5 -2
- data/vj-sdk.gemspec +1 -1
- metadata +3 -3
data/VERSION.yml
CHANGED
data/lib/videojuicer/assets.rb
CHANGED
data/spec/presentation_spec.rb
CHANGED
@@ -92,13 +92,16 @@ describe Videojuicer::Presentation do
|
|
92
92
|
end
|
93
93
|
|
94
94
|
it "should know it has the default document_content" do
|
95
|
-
p @presentation.document_content
|
96
95
|
@presentation.has_default_content?.should == true
|
97
96
|
end
|
98
97
|
|
99
98
|
it "should know it doesn't have the default document_content" do
|
100
99
|
@presentation.document_content = "{% image %}{% id 1 %}{% endimage %}"
|
101
|
-
|
100
|
+
@presentation.has_default_content?.should == false
|
101
|
+
end
|
102
|
+
|
103
|
+
it "should return false if there is any xml in the string" do
|
104
|
+
@presentation.document_content = "{% image %}{% id 1 %}{% endimage %} <br/>"
|
102
105
|
@presentation.has_default_content?.should == false
|
103
106
|
end
|
104
107
|
|
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.6.
|
8
|
+
s.version = "0.6.9"
|
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"]
|
metadata
CHANGED