Sha256: 7fcabcf62335d5977424d1cb11ec86ddd8e92b2ddc3bb245134d2a2916f436f2
Contents?: true
Size: 1.94 KB
Versions: 21
Compression:
Stored size: 1.94 KB
Contents
# frozen_string_literal: true require_relative "lib/neeto_commons_backend/version" Gem::Specification.new do |spec| spec.name = "neeto-commons-backend" spec.version = NeetoCommonsBackend::VERSION spec.authors = ["Prasanth Chaduvula"] spec.email = ["prasanth.chaduvula@bigbinary.com"] spec.summary = "Keeps all the common code of neeto products at one place" spec.homepage = "https://github.com/bigbinary/neeto-commons-backend" spec.required_ruby_version = ">= 3.1.2" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = "https://github.com/bigbinary/neeto-commons-backend" # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. spec.files = Dir.chdir(File.expand_path(__dir__)) do `git ls-files -z`.split("\x0").reject do |f| (f == __FILE__) || f.match(%r{\A(?:(?:test|spec|features)/|\.(?:git|travis|circleci)|appveyor)}) end end spec.bindir = "bin" spec.require_paths = ["lib"] # Uncomment to register a new dependency of your gem # spec.add_dependency "example-gem", "~> 1.0" spec.add_dependency "actionview" spec.add_dependency "bullet" spec.add_dependency "database_cleaner" spec.add_dependency "honeybadger" spec.add_dependency "kaminari" spec.add_dependency "premailer-rails" spec.add_dependency "rack-attack" spec.add_dependency "rack-cors" spec.add_dependency "rack-mini-profiler" spec.add_dependency "rack-timeout" spec.add_dependency "rails_email_preview" spec.add_dependency "rake" spec.add_dependency "redis" spec.add_dependency "sidekiq" spec.add_dependency "sidekiq-cron" spec.add_dependency "sidekiq-failures" spec.add_dependency "omniauth-google-oauth2" spec.add_dependency "pundit" spec.add_dependency "webmock" # For more information and examples about making a new gem, checkout our # guide at: https://bundler.io/guides/creating_gem.html end
Version data entries
21 entries across 21 versions & 1 rubygems
Version | Path |
---|---|
neeto-commons-backend-1.0.89 | neeto-commons-backend.gemspec |