rubypan 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.
data.tar.gz.sig ADDED
@@ -0,0 +1 @@
1
+ I`^}�q�]:0l���U4��Hb�ҏ�?H���������h���x��&�ٟ����D��e�4Ĺ�S>LXʓU��:)�����T��y�!���f�X5�"��e��k��L�`�s�t]R�g4Q�'��a����-�轝�z~�O�S�,��1
data/.autotest ADDED
@@ -0,0 +1,23 @@
1
+ # -*- ruby -*-
2
+
3
+ require 'autotest/restart'
4
+
5
+ # Autotest.add_hook :initialize do |at|
6
+ # at.extra_files << "../some/external/dependency.rb"
7
+ #
8
+ # at.libs << ":../some/external"
9
+ #
10
+ # at.add_exception 'vendor'
11
+ #
12
+ # at.add_mapping(/dependency.rb/) do |f, _|
13
+ # at.files_matching(/test_.*rb$/)
14
+ # end
15
+ #
16
+ # %w(TestA TestB).each do |klass|
17
+ # at.extra_class_map[klass] = "test/test_misc.rb"
18
+ # end
19
+ # end
20
+
21
+ # Autotest.add_hook :run_command do |at|
22
+ # system "rake build"
23
+ # end
data/History.txt ADDED
@@ -0,0 +1,6 @@
1
+ === 1.0.0 / 2009-04-16
2
+
3
+ * 1 major enhancement
4
+
5
+ * Birthday!
6
+
data/Manifest.txt ADDED
@@ -0,0 +1,8 @@
1
+ .autotest
2
+ History.txt
3
+ Manifest.txt
4
+ README.txt
5
+ Rakefile
6
+ lib/rubygems/commands/ferret_command.rb
7
+ lib/rubygems_plugin.rb
8
+ lib/rubypan.rb
data/README.txt ADDED
@@ -0,0 +1,50 @@
1
+ = rubypan
2
+
3
+ * http://seattlerb.rubygems.org
4
+
5
+ == DESCRIPTION:
6
+
7
+ A gem command plugin that adds `gem ferret` to perform fulltext searching of
8
+ http://rubypan.org. Requires RubyGems 1.3.2+
9
+
10
+ == FEATURES/PROBLEMS:
11
+
12
+ * Should be `gem search`, but it's taken.
13
+
14
+ == SYNOPSIS:
15
+
16
+ gem ferret Ryan Davis
17
+
18
+ == REQUIREMENTS:
19
+
20
+ * RubyGems 1.3.2
21
+ * A working internet connection
22
+
23
+ == INSTALL:
24
+
25
+ * sudo gem install rubypan
26
+
27
+ == LICENSE:
28
+
29
+ (The MIT License)
30
+
31
+ Copyright (c) 2009 Eric Hodel
32
+
33
+ Permission is hereby granted, free of charge, to any person obtaining
34
+ a copy of this software and associated documentation files (the
35
+ 'Software'), to deal in the Software without restriction, including
36
+ without limitation the rights to use, copy, modify, merge, publish,
37
+ distribute, sublicense, and/or sell copies of the Software, and to
38
+ permit persons to whom the Software is furnished to do so, subject to
39
+ the following conditions:
40
+
41
+ The above copyright notice and this permission notice shall be
42
+ included in all copies or substantial portions of the Software.
43
+
44
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
45
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
46
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
47
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
48
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
49
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
50
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Rakefile ADDED
@@ -0,0 +1,14 @@
1
+ # -*- ruby -*-
2
+
3
+ require 'rubygems'
4
+ require 'hoe'
5
+ require './lib/rubypan.rb'
6
+
7
+ Hoe.new('rubypan', Rubypan::VERSION) do |rp|
8
+ rp.rubyforge_name = 'seattlerb'
9
+ rp.developer('Eric Hodel', 'drbrain@segment7.net')
10
+
11
+ rp.spec_extras[:required_rubygems_version] = '>= 1.3.2'
12
+ end
13
+
14
+ # vim: syntax=Ruby
@@ -0,0 +1,47 @@
1
+ require 'rubygems/command'
2
+ require 'rubygems/commands/query_command'
3
+
4
+ ##
5
+ # A fulltext search for gems using http://rubypan.org
6
+
7
+ class Gem::Commands::FerretCommand < Gem::Commands::QueryCommand
8
+
9
+ def initialize
10
+ super 'search!', 'Search for text in gemspec fields via rubypan.org'
11
+
12
+ remove_option '--name-matches'
13
+ remove_option '--all'
14
+ remove_option '--installed'
15
+ remove_option '--version'
16
+
17
+ remove_option '--local'
18
+ remove_option '--remote'
19
+ remove_option '--both'
20
+ end
21
+
22
+ def arguments # :nodoc:
23
+ "TEXT text to serach for"
24
+ end
25
+
26
+ def defaults_str # :nodoc:
27
+ "--no-details"
28
+ end
29
+
30
+ def usage # :nodoc:
31
+ "#{program_name} [TEXT]"
32
+ end
33
+
34
+ def execute
35
+ search = URI.escape options[:args].join(' ')
36
+
37
+ search_uri = URI.parse "http://rubypan.org/search.Marshal?q=#{search}"
38
+
39
+ data = Gem::RemoteFetcher.fetcher.fetch_path search_uri
40
+
41
+ spec_tuples = Marshal.load data
42
+
43
+ output_query_results spec_tuples
44
+ end
45
+
46
+ end
47
+
@@ -0,0 +1,4 @@
1
+ require 'rubygems/command_manager'
2
+
3
+ Gem::CommandManager.instance.register_command :ferret
4
+
data/lib/rubypan.rb ADDED
@@ -0,0 +1,10 @@
1
+ ##
2
+ # Provides the `gem ferret` command that uses http://rubypan.org to perform
3
+ # fulltext searching.
4
+
5
+ class Rubypan
6
+
7
+ VERSION = '1.0'
8
+
9
+ end
10
+
metadata ADDED
@@ -0,0 +1,98 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rubypan
3
+ version: !ruby/object:Gem::Version
4
+ version: "1.0"
5
+ platform: ruby
6
+ authors:
7
+ - Eric Hodel
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain:
11
+ - |
12
+ -----BEGIN CERTIFICATE-----
13
+ MIIDNjCCAh6gAwIBAgIBADANBgkqhkiG9w0BAQUFADBBMRAwDgYDVQQDDAdkcmJy
14
+ YWluMRgwFgYKCZImiZPyLGQBGRYIc2VnbWVudDcxEzARBgoJkiaJk/IsZAEZFgNu
15
+ ZXQwHhcNMDcxMjIxMDIwNDE0WhcNMDgxMjIwMDIwNDE0WjBBMRAwDgYDVQQDDAdk
16
+ cmJyYWluMRgwFgYKCZImiZPyLGQBGRYIc2VnbWVudDcxEzARBgoJkiaJk/IsZAEZ
17
+ FgNuZXQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCbbgLrGLGIDE76
18
+ LV/cvxdEzCuYuS3oG9PrSZnuDweySUfdp/so0cDq+j8bqy6OzZSw07gdjwFMSd6J
19
+ U5ddZCVywn5nnAQ+Ui7jMW54CYt5/H6f2US6U0hQOjJR6cpfiymgxGdfyTiVcvTm
20
+ Gj/okWrQl0NjYOYBpDi+9PPmaH2RmLJu0dB/NylsDnW5j6yN1BEI8MfJRR+HRKZY
21
+ mUtgzBwF1V4KIZQ8EuL6I/nHVu07i6IkrpAgxpXUfdJQJi0oZAqXurAV3yTxkFwd
22
+ g62YrrW26mDe+pZBzR6bpLE+PmXCzz7UxUq3AE0gPHbiMXie3EFE0oxnsU3lIduh
23
+ sCANiQ8BAgMBAAGjOTA3MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQW
24
+ BBS5k4Z75VSpdM0AclG2UvzFA/VW5DANBgkqhkiG9w0BAQUFAAOCAQEAHagT4lfX
25
+ kP/hDaiwGct7XPuVGbrOsKRVD59FF5kETBxEc9UQ1clKWngf8JoVuEoKD774dW19
26
+ bU0GOVWO+J6FMmT/Cp7nuFJ79egMf/gy4gfUfQMuvfcr6DvZUPIs9P/TlK59iMYF
27
+ DIOQ3DxdF3rMzztNUCizN4taVscEsjCcgW6WkUJnGdqlu3OHWpQxZBJkBTjPCoc6
28
+ UW6on70SFPmAy/5Cq0OJNGEWBfgD9q7rrs/X8GGwUWqXb85RXnUVi/P8Up75E0ag
29
+ 14jEc90kN+C7oI/AGCBN0j6JnEtYIEJZibjjDJTSMWlUKKkj30kq7hlUC2CepJ4v
30
+ x52qPcexcYZR7w==
31
+ -----END CERTIFICATE-----
32
+
33
+ date: 2009-04-16 00:00:00 -07:00
34
+ default_executable:
35
+ dependencies:
36
+ - !ruby/object:Gem::Dependency
37
+ name: hoe
38
+ type: :development
39
+ version_requirement:
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ version: 1.12.1
45
+ version:
46
+ description: |-
47
+ A gem command plugin that adds `gem ferret` to perform fulltext searching of
48
+ http://rubypan.org. Requires RubyGems 1.3.2+
49
+ email:
50
+ - drbrain@segment7.net
51
+ executables: []
52
+
53
+ extensions: []
54
+
55
+ extra_rdoc_files:
56
+ - History.txt
57
+ - Manifest.txt
58
+ - README.txt
59
+ files:
60
+ - .autotest
61
+ - History.txt
62
+ - Manifest.txt
63
+ - README.txt
64
+ - Rakefile
65
+ - lib/rubygems/commands/ferret_command.rb
66
+ - lib/rubygems_plugin.rb
67
+ - lib/rubypan.rb
68
+ has_rdoc: true
69
+ homepage: http://seattlerb.rubygems.org
70
+ licenses: []
71
+
72
+ post_install_message:
73
+ rdoc_options:
74
+ - --main
75
+ - README.txt
76
+ require_paths:
77
+ - lib
78
+ required_ruby_version: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: "0"
83
+ version:
84
+ required_rubygems_version: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: 1.3.2
89
+ version:
90
+ requirements: []
91
+
92
+ rubyforge_project: seattlerb
93
+ rubygems_version: 1.3.2
94
+ signing_key:
95
+ specification_version: 3
96
+ summary: A gem command plugin that adds `gem ferret` to perform fulltext searching of http://rubypan.org
97
+ test_files: []
98
+
metadata.gz.sig ADDED
@@ -0,0 +1 @@
1
+ Ze�x�Cx{sjo��H��Y�2��-�K٦2(�Bvɛ`D�6�F�g�LC���5�鲚��u��D�<���/����$[x��ssU�$;�i�+���6