Sha256: 4d4de408131aa8228c16acc29f5a39cc5301a2c1d300cfc2a5b80664484ed8c5
Contents?: true
Size: 959 Bytes
Versions: 1
Compression:
Stored size: 959 Bytes
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "google_custom_search" Gem::Specification.new do |s| s.name = "trusty_google_custom_search" s.version = '1.0.0' s.platform = Gem::Platform::RUBY s.authors = ["Eric Sipple"] s.email = ["sipple@trustarts.org"] s.homepage = "https://github.com/pgharts/google_custom_search/" s.summary = %q{Interface for google custom search} s.description = %q{Provides access to google custom search that can be integrated with a website.} s.add_dependency "hpricot", '~> 0.8.6' ignores = if File.exist?('.gitignore') File.read('.gitignore').split("\n").inject([]) {|a,p| a + Dir[p] } else [] end s.files = Dir['**/*'] - ignores s.test_files = Dir['test/**/*','spec/**/*','features/**/*'] - ignores # s.executables = Dir['bin/*'] - ignores s.require_paths = ["lib"] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
trusty_google_custom_search-1.0.0 | trusty-google-custom-search.gemspec |