Sha256: db1821cc3d6bc1bff60c701f5fec58685954ca9f4b3ceb667dda91d2858b4ddb
Contents?: true
Size: 1.03 KB
Versions: 1
Compression:
Stored size: 1.03 KB
Contents
# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift lib unless $LOAD_PATH.include?(lib) require 'bullet/version' Gem::Specification.new do |s| s.name = 'bullet' s.version = Bullet::VERSION s.platform = Gem::Platform::RUBY s.authors = ['Richard Huang'] s.email = ['flyerhzm@gmail.com'] s.homepage = 'https://github.com/flyerhzm/bullet' s.summary = 'help to kill N+1 queries and unused eager loading.' s.description = 'help to kill N+1 queries and unused eager loading.' s.metadata = { 'changelog_uri' => 'https://github.com/flyerhzm/bullet/blob/master/CHANGELOG.md', 'source_code_uri' => 'https://github.com/flyerhzm/bullet' } s.license = 'MIT' s.required_rubygems_version = '>= 1.3.6' s.add_runtime_dependency 'activesupport', '>= 3.0.0' s.add_runtime_dependency 'uniform_notifier', '~> 1.11' s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.require_paths = ['lib'] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
bullet-5.8.0 | bullet.gemspec |