webrobots 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 (5) hide show
  1. data/LICENSE.txt +21 -17
  2. data/Rakefile +3 -3
  3. data/VERSION +1 -1
  4. data/webrobots.gemspec +68 -0
  5. metadata +7 -6
data/LICENSE.txt CHANGED
@@ -1,20 +1,24 @@
1
- Copyright (c) 2011 Akinori MUSHA
1
+ Copyright (c) 2010, 2011 Akinori MUSHA
2
2
 
3
- Permission is hereby granted, free of charge, to any person obtaining
4
- a copy of this software and associated documentation files (the
5
- "Software"), to deal in the Software without restriction, including
6
- without limitation the rights to use, copy, modify, merge, publish,
7
- distribute, sublicense, and/or sell copies of the Software, and to
8
- permit persons to whom the Software is furnished to do so, subject to
9
- the following conditions:
3
+ All rights reserved.
10
4
 
11
- The above copyright notice and this permission notice shall be
12
- included in all copies or substantial portions of the Software.
5
+ Redistribution and use in source and binary forms, with or without
6
+ modification, are permitted provided that the following conditions
7
+ are met:
8
+ 1. Redistributions of source code must retain the above copyright
9
+ notice, this list of conditions and the following disclaimer.
10
+ 2. Redistributions in binary form must reproduce the above copyright
11
+ notice, this list of conditions and the following disclaimer in the
12
+ documentation and/or other materials provided with the distribution.
13
13
 
14
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
14
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17
+ ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20
+ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23
+ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24
+ SUCH DAMAGE.
data/Rakefile CHANGED
@@ -14,10 +14,10 @@ Jeweler::Tasks.new do |gem|
14
14
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
15
15
  gem.name = "webrobots"
16
16
  # gem.homepage = "http://github.com/knu/webrobots"
17
- gem.license = "MIT"
18
- gem.summary = %Q{A library to help write robots.txt compliant web robots}
17
+ gem.license = "2-clause BSDL"
18
+ gem.summary = %Q{A Ruby library to help write robots.txt compliant web robots}
19
19
  gem.description = <<-'EOS'
20
- This library helps write robots.txt compliant web robots.
20
+ This library helps write robots.txt compliant web robots in Ruby.
21
21
  EOS
22
22
  gem.email = "knu@idaemons.org"
23
23
  gem.authors = ["Akinori MUSHA"]
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.1
1
+ 0.0.2
data/webrobots.gemspec ADDED
@@ -0,0 +1,68 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{webrobots}
8
+ s.version = "0.0.2"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Akinori MUSHA"]
12
+ s.date = %q{2011-01-03}
13
+ s.description = %q{This library helps write robots.txt compliant web robots in Ruby.
14
+ }
15
+ s.email = %q{knu@idaemons.org}
16
+ s.extra_rdoc_files = [
17
+ "LICENSE.txt",
18
+ "README.rdoc"
19
+ ]
20
+ s.files = [
21
+ ".document",
22
+ "Gemfile",
23
+ "Gemfile.lock",
24
+ "LICENSE.txt",
25
+ "README.rdoc",
26
+ "Rakefile",
27
+ "VERSION",
28
+ "lib/webrobots.rb",
29
+ "lib/webrobots/robotstxt.rb",
30
+ "lib/webrobots/robotstxt.ry",
31
+ "test/helper.rb",
32
+ "test/test_webrobots.rb",
33
+ "webrobots.gemspec"
34
+ ]
35
+ s.licenses = ["2-clause BSDL"]
36
+ s.require_paths = ["lib"]
37
+ s.rubygems_version = %q{1.4.1}
38
+ s.summary = %q{A Ruby library to help write robots.txt compliant web robots}
39
+ s.test_files = [
40
+ "test/helper.rb",
41
+ "test/test_webrobots.rb"
42
+ ]
43
+
44
+ if s.respond_to? :specification_version then
45
+ s.specification_version = 3
46
+
47
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
48
+ s.add_runtime_dependency(%q<racc>, [">= 0"])
49
+ s.add_development_dependency(%q<shoulda>, [">= 0"])
50
+ s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
51
+ s.add_development_dependency(%q<jeweler>, ["~> 1.5.1"])
52
+ s.add_development_dependency(%q<rcov>, [">= 0"])
53
+ else
54
+ s.add_dependency(%q<racc>, [">= 0"])
55
+ s.add_dependency(%q<shoulda>, [">= 0"])
56
+ s.add_dependency(%q<bundler>, ["~> 1.0.0"])
57
+ s.add_dependency(%q<jeweler>, ["~> 1.5.1"])
58
+ s.add_dependency(%q<rcov>, [">= 0"])
59
+ end
60
+ else
61
+ s.add_dependency(%q<racc>, [">= 0"])
62
+ s.add_dependency(%q<shoulda>, [">= 0"])
63
+ s.add_dependency(%q<bundler>, ["~> 1.0.0"])
64
+ s.add_dependency(%q<jeweler>, ["~> 1.5.1"])
65
+ s.add_dependency(%q<rcov>, [">= 0"])
66
+ end
67
+ end
68
+
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: webrobots
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
  - Akinori MUSHA
@@ -93,7 +93,7 @@ dependencies:
93
93
  prerelease: false
94
94
  name: rcov
95
95
  description: |
96
- This library helps write robots.txt compliant web robots.
96
+ This library helps write robots.txt compliant web robots in Ruby.
97
97
 
98
98
  email: knu@idaemons.org
99
99
  executables: []
@@ -116,10 +116,11 @@ files:
116
116
  - lib/webrobots/robotstxt.ry
117
117
  - test/helper.rb
118
118
  - test/test_webrobots.rb
119
+ - webrobots.gemspec
119
120
  has_rdoc: true
120
121
  homepage:
121
122
  licenses:
122
- - MIT
123
+ - 2-clause BSDL
123
124
  post_install_message:
124
125
  rdoc_options: []
125
126
 
@@ -149,7 +150,7 @@ rubyforge_project:
149
150
  rubygems_version: 1.4.1
150
151
  signing_key:
151
152
  specification_version: 3
152
- summary: A library to help write robots.txt compliant web robots
153
+ summary: A Ruby library to help write robots.txt compliant web robots
153
154
  test_files:
154
155
  - test/helper.rb
155
156
  - test/test_webrobots.rb