libdolt 0.33.3 → 0.33.4
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/libdolt/version.rb +1 -1
- data/lib/libdolt/view/multi_repository.rb +1 -1
- data/lib/libdolt/view/single_repository.rb +1 -1
- data/lib/libdolt/view/smart_blob_renderer.rb +1 -1
- data/test/libdolt/view/multi_repository_test.rb +1 -1
- data/test/libdolt/view/single_repository_test.rb +1 -1
- metadata +2 -2
data/lib/libdolt/version.rb
CHANGED
@@ -29,7 +29,7 @@ module Dolt
|
|
29
29
|
return render_markup(path, content) if supported_markup_format?(path)
|
30
30
|
rescue StandardError => err
|
31
31
|
$stderr.puts("Failed rendering markup in #{path}, render syntax highlighted insted")
|
32
|
-
$stderr.puts("Original error was: #{err
|
32
|
+
$stderr.puts("Original error was: #{err}")
|
33
33
|
$stderr.puts(err.backtrace)
|
34
34
|
end
|
35
35
|
|
@@ -24,7 +24,7 @@ describe Dolt::View::MultiRepository do
|
|
24
24
|
|
25
25
|
describe "#repo_url" do
|
26
26
|
it "returns url prefixed with repository" do
|
27
|
-
assert_equal "/gitorious/some/url", repo_url("gitorious", "/some/url")
|
27
|
+
assert_equal "/gitorious/some/%C3%F5/url", repo_url("gitorious", "/some/\xC3\xF5/url")
|
28
28
|
end
|
29
29
|
|
30
30
|
it "returns url prefixed with repository name containing slashes" do
|
@@ -24,7 +24,7 @@ describe Dolt::View::SingleRepository do
|
|
24
24
|
|
25
25
|
describe "#repo_url" do
|
26
26
|
it "returns url unmodified" do
|
27
|
-
assert_equal "/some/url", repo_url("gitorious", "/some/url")
|
27
|
+
assert_equal "/some/url%C3%F5", repo_url("gitorious", "/some/url\xC3\xF5")
|
28
28
|
end
|
29
29
|
end
|
30
30
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: libdolt
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.33.
|
4
|
+
version: 0.33.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-09-
|
12
|
+
date: 2013-09-24 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rugged
|