straight_shooter 0.0.4 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/straight_shooter.rb +1 -1
- data/straight_shooter.gemspec +1 -1
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.5
|
data/lib/straight_shooter.rb
CHANGED
@@ -12,7 +12,7 @@ class StraightShooter
|
|
12
12
|
|
13
13
|
def initialize(url, filename = nil)
|
14
14
|
self.app = Qt::Application.new(ARGV)
|
15
|
-
self.page = Page.new(
|
15
|
+
self.page = Page.new(url, filename)
|
16
16
|
page.connect(page, SIGNAL('finished(bool)'), app, SLOT('quit()'))
|
17
17
|
end
|
18
18
|
|
data/straight_shooter.gemspec
CHANGED