all spaces to tabs

This commit is contained in:
noformnocontent 2013-02-11 01:22:26 +01:00
parent 508aa4352c
commit 43eae3e1f7
20 changed files with 723 additions and 723 deletions

View file

@ -2,10 +2,10 @@
require 'time'
def test var, message
unless var
puts message
exit
end
unless var
puts message
exit
end
end
path = File.dirname File.expand_path(__FILE__)
@ -21,30 +21,30 @@ test length, "Couldn't find length"
test signature, "Couldn't find signature"
unless File.exists? "#{release_path}/Tentia.app/Contents/Resources/dsa_pub.pem"
puts "#{release_path}/Tentia.app/Contents/dsa_pub.pem"
exit
puts "#{release_path}/Tentia.app/Contents/dsa_pub.pem"
exit
end
xml = <<XML
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:sparkle="http://www.andymatuschak.org/xml-namespaces/sparkle" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Tentia's Changelog</title>
<link>http://jabs.nu/Tentia/download/Appcast.xml</link>
<description>Most recent changes with links to updates.</description>
<language>en</language>
<item>
<title>Version #{version}</title>
<sparkle:minimumSystemVersion>10.5.0</sparkle:minimumSystemVersion>
<sparkle:releaseNotesLink>http://jabs.nu/Tentia/download/ReleaseNotes.html</sparkle:releaseNotesLink>
<pubDate>#{Time.now.rfc2822}</pubDate>
<enclosure url="http://jabs.nu/Tentia/download/Tentia.app.zip"
sparkle:version="#{version}"
length="#{length}"
type="application/octet-stream"
sparkle:dsaSignature="#{signature}" />
</item>
</channel>
<channel>
<title>Tentia's Changelog</title>
<link>http://jabs.nu/Tentia/download/Appcast.xml</link>
<description>Most recent changes with links to updates.</description>
<language>en</language>
<item>
<title>Version #{version}</title>
<sparkle:minimumSystemVersion>10.5.0</sparkle:minimumSystemVersion>
<sparkle:releaseNotesLink>http://jabs.nu/Tentia/download/ReleaseNotes.html</sparkle:releaseNotesLink>
<pubDate>#{Time.now.rfc2822}</pubDate>
<enclosure url="http://jabs.nu/Tentia/download/Tentia.app.zip"
sparkle:version="#{version}"
length="#{length}"
type="application/octet-stream"
sparkle:dsaSignature="#{signature}" />
</item>
</channel>
</rss>
XML