trusty_google_custom_search 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ NTQyYTY1OWMzYjc4MzQ5NmE4MTQ0Y2Q5ODllMzgzZmUzNzgxODZjNQ==
5
+ data.tar.gz: !binary |-
6
+ MjgwNGNmODUzYTRlMDAxYTI0MmYwMGY0Y2MxMWRjNzYyMTFmODk1ZQ==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ ZGNkNzVhYTI2Y2YyM2NiZGRhMGE1YWIwNWJjNzg1MzI1MGM2ZjRiMWU1Yzli
10
+ OTRlZGVhYjU2MmE5ZWYwODNmMmQxN2Q5YzI5NDliMTFkMWViNzdiNDM0MTM1
11
+ ZjllMDYwNjcyZjA1Y2FhYjYzMTRmODIzNTlmOGVkNzJkNDViNzg=
12
+ data.tar.gz: !binary |-
13
+ ZTI1YzM2YmQ5NTllNTVmYTY5ODVmNWY5MTFmNGMzZTFiYzBjYWNlMjViYTZl
14
+ MTg4MDg5YTg5NGQzNjBjYTI4NWFkN2U4NzNjMjFhNmQyYTRhNTNlOTE4MjUw
15
+ YTQ2MGRhN2E0ZDJlNGU5YWYyMGNkZWRlOWY3NzRmYzhmNmVmM2U=
data/Gemfile ADDED
@@ -0,0 +1,2 @@
1
+ source "https://rubygems.org"
2
+ gem "trustygems", "~> 0.1.0"
@@ -0,0 +1,12 @@
1
+ GEM
2
+ remote: https://rubygems.org/
3
+ specs:
4
+ rake (10.4.2)
5
+ trustygems (0.1.0)
6
+ rake
7
+
8
+ PLATFORMS
9
+ ruby
10
+
11
+ DEPENDENCIES
12
+ trustygems (~> 0.1.0)
data/Rakefile CHANGED
@@ -1,28 +1,6 @@
1
1
  require 'rake'
2
2
  require 'rake/testtask'
3
- require 'rake/rdoctask'
4
3
  require "spec"
5
4
  require "spec/rake/spectask"
5
+ require "trustygems"
6
6
 
7
- desc 'Default: run unit tests.'
8
- task :default => :test
9
-
10
- desc 'Test the google_custom_search plugin.'
11
- Spec::Rake::SpecTask.new(:test) do |t|
12
- plugin_root = File.dirname(__FILE__)
13
- # t.rcov = true
14
- # t.rcov_opts = lambda do
15
- # IO.readlines("#{plugin_root}/spec/rcov.opts").map {|l| l.chomp.split " "}.flatten
16
- # end
17
- t.spec_opts = ['--options', "\"#{plugin_root}/spec/spec.opts\""]
18
- t.spec_files = FileList[].include(File.join(plugin_root, 'spec', '**/*_spec.rb'))
19
- end
20
-
21
- desc 'Generate documentation for the google_custom_search plugin.'
22
- Rake::RDocTask.new(:rdoc) do |rdoc|
23
- rdoc.rdoc_dir = 'rdoc'
24
- rdoc.title = 'GoogleCustomSearch'
25
- rdoc.options << '--line-numbers' << '--inline-source'
26
- rdoc.rdoc_files.include('README')
27
- rdoc.rdoc_files.include('lib/**/*.rb')
28
- end
@@ -0,0 +1,2 @@
1
+ gemspec: trusty-google-custom-search.gemspec
2
+ deploy_command: gem push
@@ -4,7 +4,7 @@ require "google_custom_search"
4
4
 
5
5
  Gem::Specification.new do |s|
6
6
  s.name = "trusty_google_custom_search"
7
- s.version = '1.0.1'
7
+ s.version = '1.0.2'
8
8
  s.platform = Gem::Platform::RUBY
9
9
  s.authors = ["Eric Sipple"]
10
10
  s.email = ["sipple@trustarts.org"]
metadata CHANGED
@@ -1,20 +1,18 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trusty_google_custom_search
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
5
- prerelease:
4
+ version: 1.0.2
6
5
  platform: ruby
7
6
  authors:
8
7
  - Eric Sipple
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2014-12-09 00:00:00.000000000 Z
11
+ date: 2015-07-21 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: hpricot
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
17
  - - ~>
20
18
  - !ruby/object:Gem::Version
@@ -22,7 +20,6 @@ dependencies:
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
24
  - - ~>
28
25
  - !ruby/object:Gem::Version
@@ -35,15 +32,18 @@ executables: []
35
32
  extensions: []
36
33
  extra_rdoc_files: []
37
34
  files:
35
+ - Gemfile
36
+ - Gemfile.lock
37
+ - MIT-LICENSE
38
+ - README
39
+ - Rakefile
40
+ - config/trustygems.yml
38
41
  - init.rb
39
42
  - install.rb
43
+ - lib/google_custom_search.rb
40
44
  - lib/google_custom_search/search.rb
41
45
  - lib/google_custom_search/search_result.rb
42
46
  - lib/google_custom_search/search_result_item.rb
43
- - lib/google_custom_search.rb
44
- - MIT-LICENSE
45
- - Rakefile
46
- - README
47
47
  - spec/google_custom_search/search_result_item_spec.rb
48
48
  - spec/google_custom_search/search_result_spec.rb
49
49
  - spec/google_custom_search/search_spec.rb
@@ -55,27 +55,26 @@ files:
55
55
  - uninstall.rb
56
56
  homepage: https://github.com/pgharts/google_custom_search/
57
57
  licenses: []
58
+ metadata: {}
58
59
  post_install_message:
59
60
  rdoc_options: []
60
61
  require_paths:
61
62
  - lib
62
63
  required_ruby_version: !ruby/object:Gem::Requirement
63
- none: false
64
64
  requirements:
65
65
  - - ! '>='
66
66
  - !ruby/object:Gem::Version
67
67
  version: '0'
68
68
  required_rubygems_version: !ruby/object:Gem::Requirement
69
- none: false
70
69
  requirements:
71
70
  - - ! '>='
72
71
  - !ruby/object:Gem::Version
73
72
  version: '0'
74
73
  requirements: []
75
74
  rubyforge_project:
76
- rubygems_version: 1.8.29
75
+ rubygems_version: 2.4.5
77
76
  signing_key:
78
- specification_version: 3
77
+ specification_version: 4
79
78
  summary: Interface for google custom search
80
79
  test_files:
81
80
  - spec/google_custom_search/search_result_item_spec.rb