Sha256: 8b92785d66aaad0de05a0abdd609892f81d9377aadf65662db00232de4cc1269
Contents?: true
Size: 1.28 KB
Versions: 2
Compression:
Stored size: 1.28 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", "~> 13.0.1" s.add_development_dependency "rails", "~> 5.2.4.2" s.add_development_dependency "rspec", "~> 3.0" s.add_runtime_dependency 'caxlsx', "~> 3.0.1" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
spotlight_search-0.3.3 | spotlight_search.gemspec |
spotlight_search-0.3.2 | spotlight_search.gemspec |