websnapshot 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/PostInstall.txt +0 -4
  2. data/README.rdoc +15 -7
  3. data/lib/websnapshot.rb +1 -1
  4. metadata +6 -6
data/PostInstall.txt CHANGED
@@ -1,7 +1,3 @@
1
1
 
2
2
  For more information on websnapshot, see http://websnapshot.rubyforge.org
3
3
 
4
- NOTE: Change this information in PostInstall.txt
5
- You can also delete it if you don't want it.
6
-
7
-
data/README.rdoc CHANGED
@@ -1,26 +1,34 @@
1
1
  = websnapshot
2
2
 
3
- * http://github.com/#{github_username}/#{project_name}
3
+ * http://github.com/bearmini/websnapshot
4
4
 
5
5
  == DESCRIPTION:
6
6
 
7
- FIX (describe your package)
7
+ This is an application and a library to capture images of web pages.
8
8
 
9
9
  == FEATURES/PROBLEMS:
10
10
 
11
- * FIX (list of features or problems)
11
+ * You can take a snapshot image of an web page.
12
+ * You can specify dimensions of an artifact image.
13
+ * You can specify delay before taking a snapshot. (not implemented yet. planed)
12
14
 
13
15
  == SYNOPSIS:
14
16
 
15
- FIX (code sample of usage)
17
+ $ websnapshot http://google.com
16
18
 
17
19
  == REQUIREMENTS:
18
20
 
19
- * FIX (list of requirements)
21
+ * For Ubuntu
22
+ $ sudo apt-get install ruby-gnome2-dev webkit-1.0 libgtk2.0-dev
23
+
24
+ * For Mac OS X
25
+ $ sudo port install rb-gnome webkit-gtk
26
+ (You may be need Xcode installed)
27
+
20
28
 
21
29
  == INSTALL:
22
30
 
23
- * FIX (sudo gem install, anything else)
31
+ * sudo gem install websnapshot
24
32
 
25
33
  == LICENSE:
26
34
 
@@ -45,4 +53,4 @@ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
45
53
  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
46
54
  CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
47
55
  TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
48
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
56
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/lib/websnapshot.rb CHANGED
@@ -8,7 +8,7 @@ unless defined? Websnapshot
8
8
 
9
9
 
10
10
  module Websnapshot
11
- VERSION = '0.0.1'
11
+ VERSION = '0.0.2'
12
12
 
13
13
  def self.take(url, options = {})
14
14
  saved_filename = nil
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: websnapshot
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 27
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 1
10
- version: 0.0.1
9
+ - 2
10
+ version: 0.0.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Takashi Oguma
@@ -49,7 +49,7 @@ dependencies:
49
49
  version: 2.9.4
50
50
  type: :development
51
51
  version_requirements: *id002
52
- description: FIX (describe your package)
52
+ description: This is an application and a library to capture images of web pages.
53
53
  email:
54
54
  - bear.mini@gmail.com
55
55
  executables:
@@ -81,7 +81,7 @@ files:
81
81
  - test/test_websnapshot.rb
82
82
  - test/test_websnapshot_cli.rb
83
83
  - .gemtest
84
- homepage: http://github.com/#{github_username}/#{project_name}
84
+ homepage: http://github.com/bearmini/websnapshot
85
85
  licenses: []
86
86
 
87
87
  post_install_message: PostInstall.txt
@@ -114,7 +114,7 @@ rubyforge_project: websnapshot
114
114
  rubygems_version: 1.7.2
115
115
  signing_key:
116
116
  specification_version: 3
117
- summary: FIX (describe your package)
117
+ summary: This is an application and a library to capture images of web pages.
118
118
  test_files:
119
119
  - test/test_helper.rb
120
120
  - test/test_websnapshot.rb