phantomjs-linux 0.0.1
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/.DS_Store +0 -0
- data/.gitignore +18 -0
- data/.rspec +2 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README.md +29 -0
- data/Rakefile +2 -0
- data/lib/phantomjs-linux/version.rb +5 -0
- data/lib/phantomjs-linux.rb +13 -0
- data/phantomjs-linux.gemspec +19 -0
- data/spec/phantomjs-linux_spec.rb +13 -0
- data/spec/spec_helper.rb +8 -0
- data/vendor/.DS_Store +0 -0
- data/vendor/phantomjs/.DS_Store +0 -0
- data/vendor/phantomjs/linux/.DS_Store +0 -0
- data/vendor/phantomjs/linux/LICENSE.BSD +22 -0
- data/vendor/phantomjs/linux/VERSION +1 -0
- data/vendor/phantomjs/linux/bin/Info.plist +12 -0
- data/vendor/phantomjs/linux/bin/phantomjs +0 -0
- data/vendor/phantomjs/linux/lib/libQtCore.la +28 -0
- data/vendor/phantomjs/linux/lib/libQtCore.prl +7 -0
- data/vendor/phantomjs/linux/lib/libQtCore.so +0 -0
- data/vendor/phantomjs/linux/lib/libQtCore.so.4 +0 -0
- data/vendor/phantomjs/linux/lib/libQtCore.so.4.8 +0 -0
- data/vendor/phantomjs/linux/lib/libQtCore.so.4.8.0 +0 -0
- data/vendor/phantomjs/linux/lib/libQtGui.la +28 -0
- data/vendor/phantomjs/linux/lib/libQtGui.prl +7 -0
- data/vendor/phantomjs/linux/lib/libQtGui.so +0 -0
- data/vendor/phantomjs/linux/lib/libQtGui.so.4 +0 -0
- data/vendor/phantomjs/linux/lib/libQtGui.so.4.8 +0 -0
- data/vendor/phantomjs/linux/lib/libQtGui.so.4.8.0 +0 -0
- data/vendor/phantomjs/linux/lib/libQtNetwork.la +28 -0
- data/vendor/phantomjs/linux/lib/libQtNetwork.prl +7 -0
- data/vendor/phantomjs/linux/lib/libQtNetwork.so +0 -0
- data/vendor/phantomjs/linux/lib/libQtNetwork.so.4 +0 -0
- data/vendor/phantomjs/linux/lib/libQtNetwork.so.4.8 +0 -0
- data/vendor/phantomjs/linux/lib/libQtNetwork.so.4.8.0 +0 -0
- data/vendor/phantomjs/linux/lib/libQtWebKit.la +28 -0
- data/vendor/phantomjs/linux/lib/libQtWebKit.prl +6 -0
- data/vendor/phantomjs/linux/lib/libQtWebKit.so +0 -0
- data/vendor/phantomjs/linux/lib/libQtWebKit.so.4 +0 -0
- data/vendor/phantomjs/linux/lib/libQtWebKit.so.4.9 +0 -0
- data/vendor/phantomjs/linux/lib/libQtWebKit.so.4.9.0 +0 -0
- metadata +102 -0
data/.DS_Store
ADDED
Binary file
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2012 Maxwell Salzberg
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# Phantomjs::Linux
|
2
|
+
|
3
|
+
TODO: Write a gem description
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'phantomjs-linux'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install phantomjs-linux
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
TODO: Write usage instructions here
|
22
|
+
|
23
|
+
## Contributing
|
24
|
+
|
25
|
+
1. Fork it
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
+
3. Commit your changes (`git commit -am 'Added some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
require "phantomjs-linux/version"
|
2
|
+
|
3
|
+
module Phantomjs
|
4
|
+
def self.executable_path
|
5
|
+
Linux.full_path
|
6
|
+
end
|
7
|
+
|
8
|
+
module Linux
|
9
|
+
def self.full_path
|
10
|
+
File.join(File.dirname(__FILE__), '..', 'vendor', 'phantomjs', 'linux', 'bin', 'phantomjs')
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
require File.expand_path('../lib/phantomjs-linux/version', __FILE__)
|
3
|
+
|
4
|
+
Gem::Specification.new do |gem|
|
5
|
+
gem.authors = ["Maxwell Salzberg"]
|
6
|
+
gem.email = ["maxwell@joindiaspora.com"]
|
7
|
+
gem.description = %q{phantomjs binaries for linux}
|
8
|
+
gem.summary = %q{its just the depdencies vendored}
|
9
|
+
gem.homepage = "https://github.com/maxwell/phantomjs-linux"
|
10
|
+
|
11
|
+
gem.files = `git ls-files`.split($\)
|
12
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
13
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
14
|
+
gem.name = "phantomjs-linux"
|
15
|
+
gem.require_paths = ["lib"]
|
16
|
+
gem.version = Phantomjs::Linux::VERSION
|
17
|
+
|
18
|
+
gem.add_development_dependency 'rspec', '~> 2.9'
|
19
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Phantomjs do
|
4
|
+
describe '.executable_path' do
|
5
|
+
it 'works' do
|
6
|
+
File.exists?(Phantomjs.executable_path).should == true
|
7
|
+
end
|
8
|
+
|
9
|
+
it 'points to a linux path' do
|
10
|
+
Phantomjs.executable_path.should match /linux/
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
data/spec/spec_helper.rb
ADDED
data/vendor/.DS_Store
ADDED
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,22 @@
|
|
1
|
+
Redistribution and use in source and binary forms, with or without
|
2
|
+
modification, are permitted provided that the following conditions are met:
|
3
|
+
|
4
|
+
* Redistributions of source code must retain the above copyright
|
5
|
+
notice, this list of conditions and the following disclaimer.
|
6
|
+
* Redistributions in binary form must reproduce the above copyright
|
7
|
+
notice, this list of conditions and the following disclaimer in the
|
8
|
+
documentation and/or other materials provided with the distribution.
|
9
|
+
* Neither the name of the <organization> nor the
|
10
|
+
names of its contributors may be used to endorse or promote products
|
11
|
+
derived from this software without specific prior written permission.
|
12
|
+
|
13
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
14
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
15
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
16
|
+
ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
|
17
|
+
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
18
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
19
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
20
|
+
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
21
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
22
|
+
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
@@ -0,0 +1 @@
|
|
1
|
+
phantomjs-1.5.0-liunx-x86-dynamic
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd">
|
3
|
+
<plist version="0.9">
|
4
|
+
<dict>
|
5
|
+
<key>CFBundleExecutable</key>
|
6
|
+
<string>phantomjs</string>
|
7
|
+
<key>CFBundleIdentifier</key>
|
8
|
+
<string>org.phantomjs</string>
|
9
|
+
<key>LSUIElement</key>
|
10
|
+
<string>1</string>
|
11
|
+
</dict>
|
12
|
+
</plist>
|
Binary file
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# libQtCore.la - a libtool library file
|
2
|
+
# Generated by qmake/libtool (2.01a) (Qt 4.8.0) on: Fri Jan 13 11:58:43 2012
|
3
|
+
# The name that we can dlopen(3).
|
4
|
+
dlname='libQtCore.so.4'
|
5
|
+
|
6
|
+
# Names of this library.
|
7
|
+
library_names='libQtCore.so.4.8.0 libQtCore.so.4 libQtCore.so'
|
8
|
+
|
9
|
+
# The name of the static archive.
|
10
|
+
old_library='libQtCore.a'
|
11
|
+
|
12
|
+
# Libraries that this one depends upon.
|
13
|
+
dependency_libs='-L/home/turnip/phantomjs/src/qt/lib -lpthread '
|
14
|
+
|
15
|
+
# Version information for libQtCore.la
|
16
|
+
current=48
|
17
|
+
age=0
|
18
|
+
revision=0
|
19
|
+
|
20
|
+
# Is this an already installed library.
|
21
|
+
installed=yes
|
22
|
+
|
23
|
+
# Files to dlopen/dlpreopen.
|
24
|
+
dlopen=''
|
25
|
+
dlpreopen=''
|
26
|
+
|
27
|
+
# Directory that this library needs to be installed in:
|
28
|
+
libdir='/home/turnip/phantomjs/src/qt/lib'
|
@@ -0,0 +1,7 @@
|
|
1
|
+
QMAKE_PRL_BUILD_DIR = /home/turnip/phantomjs/src/qt/src/corelib/
|
2
|
+
QMAKE_PRO_INPUT = corelib.pro
|
3
|
+
QMAKE_PRL_TARGET = libQtCore.so.4.8.0
|
4
|
+
QMAKE_PRL_DEFINES = QT_SHARED
|
5
|
+
QMAKE_PRL_CONFIG = lex yacc warn_on uic resources qt warn_on release incremental link_prl gdb_dwarf_index qpa def_files_disabled no_mocdepend release qt_no_framework release shared dll qpa largefile precompile_header mmx 3dnow sse sse2 sse3 ssse3 sse4_1 sse4_2 avx exceptions_off dylib create_prl link_prl depend_includepath QTDIR_build qt_install_headers qt warn_on depend_includepath qmake_cache target_qt hide_symbols create_libtool create_pc explicitlib moc thread shared dll
|
6
|
+
QMAKE_PRL_VERSION = 4.8.0
|
7
|
+
QMAKE_PRL_LIBS = -L/home/turnip/phantomjs/src/qt/lib -lpthread
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# libQtGui.la - a libtool library file
|
2
|
+
# Generated by qmake/libtool (2.01a) (Qt 4.8.0) on: Fri Jan 13 11:58:47 2012
|
3
|
+
# The name that we can dlopen(3).
|
4
|
+
dlname='libQtGui.so.4'
|
5
|
+
|
6
|
+
# Names of this library.
|
7
|
+
library_names='libQtGui.so.4.8.0 libQtGui.so.4 libQtGui.so'
|
8
|
+
|
9
|
+
# The name of the static archive.
|
10
|
+
old_library='libQtGui.a'
|
11
|
+
|
12
|
+
# Libraries that this one depends upon.
|
13
|
+
dependency_libs='-L/home/turnip/phantomjs/src/qt/lib -lQtCore -L/home/turnip/phantomjs/src/qt/lib -lpthread '
|
14
|
+
|
15
|
+
# Version information for libQtGui.la
|
16
|
+
current=48
|
17
|
+
age=0
|
18
|
+
revision=0
|
19
|
+
|
20
|
+
# Is this an already installed library.
|
21
|
+
installed=yes
|
22
|
+
|
23
|
+
# Files to dlopen/dlpreopen.
|
24
|
+
dlopen=''
|
25
|
+
dlpreopen=''
|
26
|
+
|
27
|
+
# Directory that this library needs to be installed in:
|
28
|
+
libdir='/home/turnip/phantomjs/src/qt/lib'
|
@@ -0,0 +1,7 @@
|
|
1
|
+
QMAKE_PRL_BUILD_DIR = /home/turnip/phantomjs/src/qt/src/gui/
|
2
|
+
QMAKE_PRO_INPUT = gui.pro
|
3
|
+
QMAKE_PRL_TARGET = libQtGui.so.4.8.0
|
4
|
+
QMAKE_PRL_DEFINES = QT_SHARED
|
5
|
+
QMAKE_PRL_CONFIG = lex yacc warn_on uic resources qt warn_on release incremental link_prl gdb_dwarf_index qpa def_files_disabled no_mocdepend release qt_no_framework release shared dll qpa largefile precompile_header mmx 3dnow sse sse2 sse3 ssse3 sse4_1 sse4_2 avx exceptions_off dylib create_prl link_prl depend_includepath QTDIR_build qt_install_headers qt warn_on depend_includepath qmake_cache target_qt hide_symbols create_libtool create_pc explicitlib opentype moc thread shared dll
|
6
|
+
QMAKE_PRL_VERSION = 4.8.0
|
7
|
+
QMAKE_PRL_LIBS = -L/home/turnip/phantomjs/src/qt/lib -lQtCore -L/home/turnip/phantomjs/src/qt/lib -lpthread
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# libQtNetwork.la - a libtool library file
|
2
|
+
# Generated by qmake/libtool (2.01a) (Qt 4.8.0) on: Fri Jan 13 11:58:44 2012
|
3
|
+
# The name that we can dlopen(3).
|
4
|
+
dlname='libQtNetwork.so.4'
|
5
|
+
|
6
|
+
# Names of this library.
|
7
|
+
library_names='libQtNetwork.so.4.8.0 libQtNetwork.so.4 libQtNetwork.so'
|
8
|
+
|
9
|
+
# The name of the static archive.
|
10
|
+
old_library='libQtNetwork.a'
|
11
|
+
|
12
|
+
# Libraries that this one depends upon.
|
13
|
+
dependency_libs='-L/home/turnip/phantomjs/src/qt/lib -lQtCore -L/home/turnip/phantomjs/src/qt/lib -lpthread '
|
14
|
+
|
15
|
+
# Version information for libQtNetwork.la
|
16
|
+
current=48
|
17
|
+
age=0
|
18
|
+
revision=0
|
19
|
+
|
20
|
+
# Is this an already installed library.
|
21
|
+
installed=yes
|
22
|
+
|
23
|
+
# Files to dlopen/dlpreopen.
|
24
|
+
dlopen=''
|
25
|
+
dlpreopen=''
|
26
|
+
|
27
|
+
# Directory that this library needs to be installed in:
|
28
|
+
libdir='/home/turnip/phantomjs/src/qt/lib'
|
@@ -0,0 +1,7 @@
|
|
1
|
+
QMAKE_PRL_BUILD_DIR = /home/turnip/phantomjs/src/qt/src/network/
|
2
|
+
QMAKE_PRO_INPUT = network.pro
|
3
|
+
QMAKE_PRL_TARGET = libQtNetwork.so.4.8.0
|
4
|
+
QMAKE_PRL_DEFINES = QT_SHARED
|
5
|
+
QMAKE_PRL_CONFIG = lex yacc warn_on uic resources qt warn_on release incremental link_prl gdb_dwarf_index qpa def_files_disabled no_mocdepend release qt_no_framework release shared dll qpa largefile precompile_header mmx 3dnow sse sse2 sse3 ssse3 sse4_1 sse4_2 avx exceptions_off dylib create_prl link_prl depend_includepath QTDIR_build qt_install_headers qt warn_on depend_includepath qmake_cache target_qt hide_symbols create_libtool create_pc explicitlib moc thread shared dll
|
6
|
+
QMAKE_PRL_VERSION = 4.8.0
|
7
|
+
QMAKE_PRL_LIBS = -L/home/turnip/phantomjs/src/qt/lib -lQtCore -L/home/turnip/phantomjs/src/qt/lib -lpthread
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# libQtWebKit.la - a libtool library file
|
2
|
+
# Generated by qmake/libtool (2.01a) (Qt 4.8.0) on: Fri Jan 13 14:45:44 2012
|
3
|
+
# The name that we can dlopen(3).
|
4
|
+
dlname='libQtWebKit.so.4'
|
5
|
+
|
6
|
+
# Names of this library.
|
7
|
+
library_names='libQtWebKit.so.4.9.0 libQtWebKit.so.4 libQtWebKit.so'
|
8
|
+
|
9
|
+
# The name of the static archive.
|
10
|
+
old_library='libQtWebKit.a'
|
11
|
+
|
12
|
+
# Libraries that this one depends upon.
|
13
|
+
dependency_libs='-L/home/turnip/phantomjs/src/qt/lib -L../../WebCore/release -L../../JavaScriptCore/release -lwebcore -L/home/turnip/phantomjs/src/qt/lib -ljscore -lQtGui -lQtNetwork -lQtCore -lpthread '
|
14
|
+
|
15
|
+
# Version information for libQtWebKit.la
|
16
|
+
current=49
|
17
|
+
age=0
|
18
|
+
revision=0
|
19
|
+
|
20
|
+
# Is this an already installed library.
|
21
|
+
installed=yes
|
22
|
+
|
23
|
+
# Files to dlopen/dlpreopen.
|
24
|
+
dlopen=''
|
25
|
+
dlpreopen=''
|
26
|
+
|
27
|
+
# Directory that this library needs to be installed in:
|
28
|
+
libdir='/home/turnip/phantomjs/src/qt/lib'
|
@@ -0,0 +1,6 @@
|
|
1
|
+
QMAKE_PRL_BUILD_DIR = /home/turnip/phantomjs/src/qt/src/3rdparty/webkit/Source/WebKit/qt/
|
2
|
+
QMAKE_PRO_INPUT = QtWebKit.pro
|
3
|
+
QMAKE_PRL_TARGET = libQtWebKit.so.4.9.0
|
4
|
+
QMAKE_PRL_DEFINES = QT_SHARED
|
5
|
+
QMAKE_PRL_CONFIG = lex yacc uic resources qt release incremental link_prl gdb_dwarf_index qpa def_files_disabled no_mocdepend release qt_no_framework release shared dll qpa largefile precompile_header mmx 3dnow sse sse2 sse3 ssse3 sse4_1 sse4_2 avx exceptions_off dylib create_prl link_prl depend_includepath QTDIR_build building-libs depend_includepath embedded standalone_package depend_includepath include_webinspector production production embedded no_debug_info link_pkgconfig production qt_install_headers qt warn_on depend_includepath qmake_cache target_qt hide_symbols create_libtool create_pc moc thread shared dll
|
6
|
+
QMAKE_PRL_VERSION = 4.9.0
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
metadata
ADDED
@@ -0,0 +1,102 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: phantomjs-linux
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Maxwell Salzberg
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-05-03 00:00:00.000000000Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: rspec
|
16
|
+
requirement: &70328041150020 !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '2.9'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: *70328041150020
|
25
|
+
description: phantomjs binaries for linux
|
26
|
+
email:
|
27
|
+
- maxwell@joindiaspora.com
|
28
|
+
executables: []
|
29
|
+
extensions: []
|
30
|
+
extra_rdoc_files: []
|
31
|
+
files:
|
32
|
+
- .DS_Store
|
33
|
+
- .gitignore
|
34
|
+
- .rspec
|
35
|
+
- Gemfile
|
36
|
+
- LICENSE
|
37
|
+
- README.md
|
38
|
+
- Rakefile
|
39
|
+
- lib/phantomjs-linux.rb
|
40
|
+
- lib/phantomjs-linux/version.rb
|
41
|
+
- phantomjs-linux.gemspec
|
42
|
+
- spec/phantomjs-linux_spec.rb
|
43
|
+
- spec/spec_helper.rb
|
44
|
+
- vendor/.DS_Store
|
45
|
+
- vendor/phantomjs/.DS_Store
|
46
|
+
- vendor/phantomjs/linux/.DS_Store
|
47
|
+
- vendor/phantomjs/linux/LICENSE.BSD
|
48
|
+
- vendor/phantomjs/linux/VERSION
|
49
|
+
- vendor/phantomjs/linux/bin/Info.plist
|
50
|
+
- vendor/phantomjs/linux/bin/phantomjs
|
51
|
+
- vendor/phantomjs/linux/lib/libQtCore.la
|
52
|
+
- vendor/phantomjs/linux/lib/libQtCore.prl
|
53
|
+
- vendor/phantomjs/linux/lib/libQtCore.so
|
54
|
+
- vendor/phantomjs/linux/lib/libQtCore.so.4
|
55
|
+
- vendor/phantomjs/linux/lib/libQtCore.so.4.8
|
56
|
+
- vendor/phantomjs/linux/lib/libQtCore.so.4.8.0
|
57
|
+
- vendor/phantomjs/linux/lib/libQtGui.la
|
58
|
+
- vendor/phantomjs/linux/lib/libQtGui.prl
|
59
|
+
- vendor/phantomjs/linux/lib/libQtGui.so
|
60
|
+
- vendor/phantomjs/linux/lib/libQtGui.so.4
|
61
|
+
- vendor/phantomjs/linux/lib/libQtGui.so.4.8
|
62
|
+
- vendor/phantomjs/linux/lib/libQtGui.so.4.8.0
|
63
|
+
- vendor/phantomjs/linux/lib/libQtNetwork.la
|
64
|
+
- vendor/phantomjs/linux/lib/libQtNetwork.prl
|
65
|
+
- vendor/phantomjs/linux/lib/libQtNetwork.so
|
66
|
+
- vendor/phantomjs/linux/lib/libQtNetwork.so.4
|
67
|
+
- vendor/phantomjs/linux/lib/libQtNetwork.so.4.8
|
68
|
+
- vendor/phantomjs/linux/lib/libQtNetwork.so.4.8.0
|
69
|
+
- vendor/phantomjs/linux/lib/libQtWebKit.la
|
70
|
+
- vendor/phantomjs/linux/lib/libQtWebKit.prl
|
71
|
+
- vendor/phantomjs/linux/lib/libQtWebKit.so
|
72
|
+
- vendor/phantomjs/linux/lib/libQtWebKit.so.4
|
73
|
+
- vendor/phantomjs/linux/lib/libQtWebKit.so.4.9
|
74
|
+
- vendor/phantomjs/linux/lib/libQtWebKit.so.4.9.0
|
75
|
+
homepage: https://github.com/maxwell/phantomjs-linux
|
76
|
+
licenses: []
|
77
|
+
post_install_message:
|
78
|
+
rdoc_options: []
|
79
|
+
require_paths:
|
80
|
+
- lib
|
81
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
82
|
+
none: false
|
83
|
+
requirements:
|
84
|
+
- - ! '>='
|
85
|
+
- !ruby/object:Gem::Version
|
86
|
+
version: '0'
|
87
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
88
|
+
none: false
|
89
|
+
requirements:
|
90
|
+
- - ! '>='
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
version: '0'
|
93
|
+
requirements: []
|
94
|
+
rubyforge_project:
|
95
|
+
rubygems_version: 1.8.17
|
96
|
+
signing_key:
|
97
|
+
specification_version: 3
|
98
|
+
summary: its just the depdencies vendored
|
99
|
+
test_files:
|
100
|
+
- spec/phantomjs-linux_spec.rb
|
101
|
+
- spec/spec_helper.rb
|
102
|
+
has_rdoc:
|