Sha256: 49a31b8bf54bdc0e183504debd8fbf51c9cb4b34f9e3e8a7bcb0ebf0c155c41c

Contents?: true

Size: 1.48 KB

Versions: 1

Compression:

Stored size: 1.48 KB

Contents

# frozen_string_literal: true
require_relative "lib/p2p_streams_channel/version"

Gem::Specification.new do |spec|
  spec.name = "p2p_streams_channel"
  spec.version = P2pStreamsChannel::VERSION
  spec.authors = ["theforestvn88"]
  spec.email = ["theforestvn88@gmail.com"]

  spec.summary = "rails p2p turbo streams channel"
  spec.description = "rails p2p turbo streams channel"
  spec.homepage = "https://github.com/theforestvn88/p2p_streams_channel"
  spec.required_ruby_version = ">= 2.6.0"

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = "https://github.com/theforestvn88/p2p_streams_channel"
  spec.metadata["changelog_uri"] = "https://github.com/theforestvn88/p2p_streams_channel"

  # 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(__dir__) do
    `git ls-files -z`.split("\x0").reject do |f|
      (File.expand_path(f) == __FILE__) ||
        f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor Gemfile])
    end
  end
  spec.bindir = "exe"
  spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_dependency "rails"
  spec.add_dependency 'turbo-rails'
  spec.add_dependency 'stimulus-rails'

  spec.add_development_dependency 'rake'
  spec.add_development_dependency 'rspec-rails'
  spec.test_files = Dir["spec/**/*"]
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
p2p_streams_channel-0.0.2 p2p_streams_channel.gemspec