Sha256: 830ce8c34b93e872ad1e125c334384ef38ab1920d122d0b5de9e6da946202524
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.1' 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.1 | trusty-google-custom-search.gemspec |