omniscientjs 0.1.0
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 +7 -0
- data/.gitignore +9 -0
- data/.rspec +2 -0
- data/.travis.yml +5 -0
- data/CODE_OF_CONDUCT.md +49 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +41 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/omniscientjs.rb +6 -0
- data/lib/omniscientjs/version.rb +3 -0
- data/omniscientjs.gemspec +33 -0
- data/vendor/javascripts/omniscient.js +3014 -0
- data/vendor/javascripts/wget-log +12 -0
- metadata +102 -0
@@ -0,0 +1,12 @@
|
|
1
|
+
--2016-12-20 16:53:17-- http://cdnjs.cloudflare.com/ajax/libs/omniscient/4.1.1/omniscient.js
|
2
|
+
Resolving cdnjs.cloudflare.com... 104.19.193.102, 104.19.194.102, 104.19.195.102, ...
|
3
|
+
Connecting to cdnjs.cloudflare.com|104.19.193.102|:80... failed: Operation timed out.
|
4
|
+
Connecting to cdnjs.cloudflare.com|104.19.194.102|:80... failed: Operation timed out.
|
5
|
+
Connecting to cdnjs.cloudflare.com|104.19.195.102|:80... failed: Operation timed out.
|
6
|
+
Connecting to cdnjs.cloudflare.com|104.19.196.102|:80... failed: Operation timed out.
|
7
|
+
Connecting to cdnjs.cloudflare.com|104.19.192.102|:80... failed: Operation timed out.
|
8
|
+
Connecting to cdnjs.cloudflare.com|2400:cb00:2048:1::6813:c066|:80... failed: No route to host.
|
9
|
+
Connecting to cdnjs.cloudflare.com|2400:cb00:2048:1::6813:c166|:80... failed: No route to host.
|
10
|
+
Connecting to cdnjs.cloudflare.com|2400:cb00:2048:1::6813:c266|:80... failed: No route to host.
|
11
|
+
Connecting to cdnjs.cloudflare.com|2400:cb00:2048:1::6813:c366|:80... failed: No route to host.
|
12
|
+
Connecting to cdnjs.cloudflare.com|2400:cb00:2048:1::6813:c466|:80... failed: No route to host.
|
metadata
ADDED
@@ -0,0 +1,102 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: omniscientjs
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- karthiknamburu
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-01-09 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.12'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.12'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.0'
|
55
|
+
description: A Gem to Integrate Omniscient javascript
|
56
|
+
email:
|
57
|
+
- namburu.karthik@gmail.com
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- ".gitignore"
|
63
|
+
- ".rspec"
|
64
|
+
- ".travis.yml"
|
65
|
+
- CODE_OF_CONDUCT.md
|
66
|
+
- Gemfile
|
67
|
+
- LICENSE.txt
|
68
|
+
- README.md
|
69
|
+
- Rakefile
|
70
|
+
- bin/console
|
71
|
+
- bin/setup
|
72
|
+
- lib/omniscientjs.rb
|
73
|
+
- lib/omniscientjs/version.rb
|
74
|
+
- omniscientjs.gemspec
|
75
|
+
- vendor/javascripts/omniscient.js
|
76
|
+
- vendor/javascripts/wget-log
|
77
|
+
homepage: https://github.com/karthiknamburu/omniscientjs
|
78
|
+
licenses:
|
79
|
+
- MIT
|
80
|
+
metadata:
|
81
|
+
allowed_push_host: https://rubygems.org
|
82
|
+
post_install_message:
|
83
|
+
rdoc_options: []
|
84
|
+
require_paths:
|
85
|
+
- lib
|
86
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - ">="
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: '0'
|
91
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - ">="
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: '0'
|
96
|
+
requirements: []
|
97
|
+
rubyforge_project:
|
98
|
+
rubygems_version: 2.6.7
|
99
|
+
signing_key:
|
100
|
+
specification_version: 4
|
101
|
+
summary: A Gem to Integrate Omniscient javascript
|
102
|
+
test_files: []
|