Sha256: c6ec5aa7647299775f21b1bdd3437e1aa5f68b6ed513c736728d0cc9900ac573
Contents?: true
Size: 1.3 KB
Versions: 4
Compression:
Stored size: 1.3 KB
Contents
lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) # Dir.glob("./**/**/*.rb").each { |path| require path } require "spotlight_search/version" Gem::Specification.new do |s| s.name = 'spotlight_search' s.version = SpotlightSearch::VERSION s.date = '2019-05-29' s.summary = "This gem should help reduce the efforts in the admin panel. It has search, sort and pagination included." s.description = "This gem should help reduce the efforts in the admin panel. It has search, sort and pagination included" s.authors = ["Anbazhagan Palani"] s.email = 'anbu@commutatus.com' s.homepage = 'https://github.com/commutatus/spotlight-search' s.license = 'MIT' s.files = Dir.chdir(File.expand_path('..', __FILE__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } end # s.bindir = "exe" # s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) } # s.require_paths = ["lib"] s.add_development_dependency "bundler", "~> 2.0" s.add_development_dependency "rake", "~> 10.0" s.add_development_dependency "rails", "~> 5.0.7" s.add_development_dependency "rspec", "~> 3.0" s.add_runtime_dependency 'axlsx' s.add_runtime_dependency 'zip-zip' end
Version data entries
4 entries across 4 versions & 1 rubygems