web_grep 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: c3227a0d2994fdaf379572fc7dc089fb772b70f6
4
+ data.tar.gz: 197b8a5aa3088295888e4349a095684f1ca74656
5
+ SHA512:
6
+ metadata.gz: ade710caac2058b7d3522c9cb4742d1b9be116513c75e55ff204212abb9d789b80ed1b35f0695aa7471bb4959d85918864b2c354aae94f5889b3bf5de1ca7a9f
7
+ data.tar.gz: e2700740630b8fcf74dc9136358f2f8c1b61389297430907c31d099026f17c064f5111b152e78133b600798a3af74b7a71f3d77a647733bb480e32f5acd54857
data/MIT-LICENSE.md ADDED
@@ -0,0 +1,22 @@
1
+ The MIT License (MIT)
2
+ =====================
3
+
4
+ Copyright (c) 2014 Vladislav Petrov <electronnicchest@gmail.com>
5
+
6
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
7
+ this software and associated documentation files (the "Software"), to deal in
8
+ the Software without restriction, including without limitation the rights to
9
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
10
+ of the Software, and to permit persons to whom the Software is furnished to do
11
+ so, subject to the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be included in all
14
+ copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
+ SOFTWARE.
@@ -0,0 +1,3 @@
1
+ module WebGrep
2
+ VERSION = '0.0.1'
3
+ end
data/lib/web_grep.rb ADDED
@@ -0,0 +1,3 @@
1
+ module WebGrep
2
+ autoload :VERSION, 'web_grep/version'
3
+ end
data/web_grep.gemspec ADDED
@@ -0,0 +1,21 @@
1
+ require './lib/web_grep/version'
2
+
3
+ Gem::Specification.new 'web_grep', WebGrep::VERSION do |s|
4
+ s.homepage = 'http://rubygems.org/gems/web_grep'
5
+ s.date = '2014-06-26'
6
+ s.summary = 'Web grep is a grep for web pages'
7
+ s.description = 'Web grep is a grep for web pages'
8
+ s.author = 'Vladislav Petrov'
9
+ s.email = 'electronicchest@gmail.com'
10
+ s.license = 'MIT'
11
+ s.platform = Gem::Platform::RUBY
12
+ s.post_install_message = 'Thanks for installing!'
13
+
14
+ s.required_ruby_version = '>= 2.1.2'
15
+ s.required_rubygems_version = '>= 2.3.0'
16
+
17
+ s.files = `git ls-files`.split
18
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split
19
+ s.executables = `git ls-files -- bin/*`.split.map{ |f| File.basename(f) }
20
+ s.require_paths = ['lib']
21
+ end
metadata ADDED
@@ -0,0 +1,47 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: web_grep
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Vladislav Petrov
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-06-26 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Web grep is a grep for web pages
14
+ email: electronicchest@gmail.com
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - MIT-LICENSE.md
20
+ - lib/web_grep.rb
21
+ - lib/web_grep/version.rb
22
+ - web_grep.gemspec
23
+ homepage: http://rubygems.org/gems/web_grep
24
+ licenses:
25
+ - MIT
26
+ metadata: {}
27
+ post_install_message: Thanks for installing!
28
+ rdoc_options: []
29
+ require_paths:
30
+ - lib
31
+ required_ruby_version: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - ">="
34
+ - !ruby/object:Gem::Version
35
+ version: 2.1.2
36
+ required_rubygems_version: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: 2.3.0
41
+ requirements: []
42
+ rubyforge_project:
43
+ rubygems_version: 2.3.0
44
+ signing_key:
45
+ specification_version: 4
46
+ summary: Web grep is a grep for web pages
47
+ test_files: []