google_suggest 0.0.2 → 0.0.3

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/Gemfile ADDED
@@ -0,0 +1,10 @@
1
+ source "http://rubygems.org"
2
+
3
+ gem 'nokogiri'
4
+
5
+ group :development, :test do
6
+ gem 'json', :platform => :ruby_18
7
+ gem 'rake'
8
+ gem 'rspec', '~> 2.8.0'
9
+ end
10
+
data/Gemfile.lock ADDED
@@ -0,0 +1,24 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ diff-lcs (1.1.3)
5
+ json (1.6.4)
6
+ nokogiri (1.5.0)
7
+ rake (0.9.2.2)
8
+ rspec (2.8.0)
9
+ rspec-core (~> 2.8.0)
10
+ rspec-expectations (~> 2.8.0)
11
+ rspec-mocks (~> 2.8.0)
12
+ rspec-core (2.8.0)
13
+ rspec-expectations (2.8.0)
14
+ diff-lcs (~> 1.1.2)
15
+ rspec-mocks (2.8.0)
16
+
17
+ PLATFORMS
18
+ ruby
19
+
20
+ DEPENDENCIES
21
+ json
22
+ nokogiri
23
+ rake
24
+ rspec (~> 2.8.0)
data/LICENCE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License
2
+
3
+ Copyright (c) 2010 Tatsuya Sato
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ require 'rspec/core/rake_task'
2
+
3
+ RSpec::Core::RakeTask.new do |t|
4
+ t.pattern = 'spec/**/*_spec.rb'
5
+ t.rspec_opts = '-c -fd'
6
+ end
7
+
8
+ task :default => :spec
metadata CHANGED
@@ -1,70 +1,65 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: google_suggest
3
- version: !ruby/object:Gem::Version
4
- prerelease: false
5
- segments:
6
- - 0
7
- - 0
8
- - 2
9
- version: 0.0.2
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.3
5
+ prerelease:
10
6
  platform: ruby
11
- authors:
7
+ authors:
12
8
  - Tatsuya Sato
13
9
  autorequire:
14
10
  bindir: bin
15
11
  cert_chain: []
16
-
17
- date: 2011-05-17 00:00:00 +09:00
18
- default_executable:
19
- dependencies: []
20
-
12
+ date: 2012-01-17 00:00:00.000000000Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: nokogiri
16
+ requirement: &3824240 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: *3824240
21
25
  description:
22
26
  email: satoryu.1981@gmail.com
23
27
  executables: []
24
-
25
28
  extensions: []
26
-
27
29
  extra_rdoc_files: []
28
-
29
- files:
30
+ files:
31
+ - Gemfile
32
+ - Gemfile.lock
33
+ - LICENCE.txt
34
+ - Rakefile
30
35
  - lib/google_suggest.rb
36
+ - spec/google_suggest_spec.rb
31
37
  - spec/sample_ja.xml
32
- - spec/google_suggest-spec.rb
33
- - spec/spec_helper.rb
34
38
  - spec/sample_us.xml
35
- has_rdoc: true
39
+ - spec/spec_helper.rb
36
40
  homepage: http://github.com/satoryu/google_suggest/
37
41
  licenses: []
38
-
39
42
  post_install_message:
40
43
  rdoc_options: []
41
-
42
- require_paths:
44
+ require_paths:
43
45
  - lib
44
- required_ruby_version: !ruby/object:Gem::Requirement
46
+ required_ruby_version: !ruby/object:Gem::Requirement
45
47
  none: false
46
- requirements:
47
- - - ">="
48
- - !ruby/object:Gem::Version
49
- segments:
50
- - 1
51
- - 8
52
- - 7
48
+ requirements:
49
+ - - ! '>='
50
+ - !ruby/object:Gem::Version
53
51
  version: 1.8.7
54
- required_rubygems_version: !ruby/object:Gem::Requirement
52
+ required_rubygems_version: !ruby/object:Gem::Requirement
55
53
  none: false
56
- requirements:
57
- - - ">="
58
- - !ruby/object:Gem::Version
59
- segments:
60
- - 0
61
- version: "0"
54
+ requirements:
55
+ - - ! '>='
56
+ - !ruby/object:Gem::Version
57
+ version: '0'
62
58
  requirements: []
63
-
64
59
  rubyforge_project:
65
- rubygems_version: 1.3.7
60
+ rubygems_version: 1.8.10
66
61
  signing_key:
67
62
  specification_version: 3
68
- summary: A gem which allows us to retrieve suggest words from Google in your Ruby Code.
63
+ summary: A gem which allows us to retrieve suggest words from Google in your Ruby
64
+ Code.
69
65
  test_files: []
70
-