straight_shooter 0.0.1 → 0.0.2

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/.gitignore ADDED
@@ -0,0 +1 @@
1
+ pkg/*
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.1
1
+ 0.0.2
@@ -14,7 +14,7 @@ class Page < Qt::Object
14
14
  def initialize(url, filename = nil)
15
15
  super()
16
16
 
17
- new_app
17
+ app # to init the app
18
18
 
19
19
  self.url = url
20
20
  self.filename = filename ? filename.gsub(/.png$/, "") + ".png" : url.split("//").last.split("/").first + ".png"
@@ -0,0 +1,55 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{straight_shooter}
8
+ s.version = "0.0.2"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Nathan Herald"]
12
+ s.date = %q{2010-02-12}
13
+ s.default_executable = %q{straight_shooter}
14
+ s.description = %q{Takes screenshots of sites using WebKit and Qt}
15
+ s.email = %q{nathan@myobie.com}
16
+ s.executables = ["straight_shooter"]
17
+ s.extra_rdoc_files = [
18
+ "LICENSE",
19
+ "README.markdown",
20
+ "TODO"
21
+ ]
22
+ s.files = [
23
+ ".gitignore",
24
+ "FIXME",
25
+ "LICENSE",
26
+ "README.markdown",
27
+ "Rakefile",
28
+ "TODO",
29
+ "VERSION",
30
+ "bin/straight_shooter",
31
+ "lib/straight_shooter.rb",
32
+ "lib/straight_shooter/page.rb",
33
+ "straight_shooter.gemspec",
34
+ "ubuntu-setup.sh"
35
+ ]
36
+ s.homepage = %q{http://github.com/myobie/straight_shooter}
37
+ s.rdoc_options = ["--charset=UTF-8"]
38
+ s.require_paths = ["lib"]
39
+ s.rubygems_version = %q{1.3.5}
40
+ s.summary = %q{Taking screenshots of web sites is no longer hard}
41
+
42
+ if s.respond_to? :specification_version then
43
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
44
+ s.specification_version = 3
45
+
46
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
47
+ s.add_development_dependency(%q<bacon>, [">= 0"])
48
+ else
49
+ s.add_dependency(%q<bacon>, [">= 0"])
50
+ end
51
+ else
52
+ s.add_dependency(%q<bacon>, [">= 0"])
53
+ end
54
+ end
55
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: straight_shooter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan Herald
@@ -33,6 +33,7 @@ extra_rdoc_files:
33
33
  - README.markdown
34
34
  - TODO
35
35
  files:
36
+ - .gitignore
36
37
  - FIXME
37
38
  - LICENSE
38
39
  - README.markdown
@@ -42,6 +43,7 @@ files:
42
43
  - bin/straight_shooter
43
44
  - lib/straight_shooter.rb
44
45
  - lib/straight_shooter/page.rb
46
+ - straight_shooter.gemspec
45
47
  - ubuntu-setup.sh
46
48
  has_rdoc: true
47
49
  homepage: http://github.com/myobie/straight_shooter