smartshot 0.0.4 → 0.0.5

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 07d19b4058ad42cf3bdf8052b704fd3d10e055fa
4
- data.tar.gz: 97ded265b43f40ea2b1362c0895582f072d9bc4c
3
+ metadata.gz: 25fbd0bb4b2dd0146e8cc472cc562279d8e07fa9
4
+ data.tar.gz: b6a2d9c4a6f2f07fb227d31dca08b2d936e2b071
5
5
  SHA512:
6
- metadata.gz: 4fceaf0316fb5e021d4b6d619df5625c80ec6f8c38f8d98b18be7074558911d419ca16e070bd63b071d1f1b13fcd6f2afbcbc1889caaf1821f56ae455935320a
7
- data.tar.gz: 5e1eebac8cb15dc6dac5a35fe0430aa14983f2fcc93bccb920b3489d5a68800834112ce1f620b7b70abf58e6a5f35f4843b580388086c939570b2b8974ee3de6
6
+ metadata.gz: 4826398f418533772f2ddd1f1ec0c00fb56d743eda1a5dcb36f32abefa258be00acb2c2939d74d9d64f1b638f86d1fea6a89dee47d2c89e29c9041e87b7512b9
7
+ data.tar.gz: 6afe330171bca59c2843a5f16f6e4fff0e0b446b56911a7244d04346154f8d30bc85c60983caa0a93daadd8d193c84f2ab7e01d638347dfd719ee63055ec940c
data/README.md CHANGED
@@ -47,6 +47,9 @@ fetcher.take_screenshot! url: 'http://some.page.with/deep/iframes',
47
47
 
48
48
  # It's also possible to just wait for some time (for example, 5 seconds)
49
49
  fetcher.take_screenshot! url: 'http://google.com', output: '/tmp/google.png', sleep: 5
50
+
51
+ # You can also wait for multiple elements instead of just one
52
+ fetcher.take_screenshot! wait_for_element: ['p.first', 'div#container']
50
53
  ```
51
54
 
52
55
  Besides the five custom options presented so far, it's possible to pass the same options accepted by
data/bin/phantomjs-32 ADDED
Binary file
data/bin/phantomjs-64 ADDED
Binary file
@@ -21,7 +21,9 @@ module Smartshot
21
21
  begin
22
22
  visit options.delete(:url)
23
23
  inside_frames options.delete(:frames_path) do
24
- page.find options.delete(:wait_for_element)
24
+ [options.delete(:wait_for_element)].flatten.each do |element|
25
+ page.find element
26
+ end
25
27
  end
26
28
 
27
29
  timeout = options.delete(:sleep)
@@ -1,3 +1,3 @@
1
1
  module Smartshot
2
- VERSION = '0.0.4'
2
+ VERSION = '0.0.5'
3
3
  end
@@ -3,10 +3,11 @@ require 'test_helper'
3
3
  class SmartshotTest < MiniTest::Unit::TestCase
4
4
 
5
5
  DATA_DIR = File.expand_path(File.dirname(__FILE__) + '/data')
6
+ PHANTOMJS_DIR = File.expand_path(File.dirname(__FILE__) + '/../bin/phantomjs-' + (1.size * 8).to_s)
6
7
 
7
8
  def setup
8
9
  FileUtils.mkdir_p(DATA_DIR) unless File.directory?(DATA_DIR)
9
- @smartshot = Smartshot::Screenshot.new
10
+ @smartshot = Smartshot::Screenshot.new(phantomjs: PHANTOMJS_DIR)
10
11
  end
11
12
 
12
13
  def test_http
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: smartshot
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Caio Almeida
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-05-05 00:00:00.000000000 Z
11
+ date: 2015-05-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -99,7 +99,9 @@ description: |-
99
99
  optionally waiting for elements (defined by CSS selectors) that can be inside iframes
100
100
  email:
101
101
  - caiosba@gmail.com
102
- executables: []
102
+ executables:
103
+ - phantomjs-32
104
+ - phantomjs-64
103
105
  extensions: []
104
106
  extra_rdoc_files: []
105
107
  files:
@@ -109,6 +111,8 @@ files:
109
111
  - LICENSE.txt
110
112
  - README.md
111
113
  - Rakefile
114
+ - bin/phantomjs-32
115
+ - bin/phantomjs-64
112
116
  - lib/smartshot.rb
113
117
  - lib/smartshot/errors.rb
114
118
  - lib/smartshot/screenshot.rb