Sha256: 09179b5054e9f26345c5b8e24452666e3494df53cc26281364301e1fc980496b
Contents?: true
Size: 1.3 KB
Versions: 8
Compression:
Stored size: 1.3 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'jit_preloader/version' Gem::Specification.new do |spec| spec.name = "jit_preloader" spec.version = JitPreloader::VERSION spec.authors = ["Kyle d'Oliveira"] spec.email = ["kyle.doliveira@clio.com"] spec.summary = %q{Tool to understand N+1 queries and to remove them} spec.description = %q{The JitPreloader has the ability to send notifications when N+1 queries occur to help guage how problematic they are for your code base and a way to remove all of the commons explicitly or automatically} spec.homepage = "" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.add_dependency "activerecord", "~> 4.2" spec.add_dependency "activesupport" spec.add_development_dependency "bundler", "~> 1.7" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec" spec.add_development_dependency "database_cleaner" spec.add_development_dependency "sqlite3" spec.add_development_dependency "byebug" end
Version data entries
8 entries across 8 versions & 1 rubygems