Sha256: 9e19eba351a6dd5c9ef5e53ccaaa70c224b68e8f2ed3cb3e9ba931959e5236a0

Contents?: true

Size: 1.19 KB

Versions: 2

Compression:

Stored size: 1.19 KB

Contents

require_relative 'lib/jason/version'

Gem::Specification.new do |spec|
  spec.name          = "jason-rails"
  spec.version       = Jason::VERSION
  spec.authors       = ["James Rees"]
  spec.email         = ["jarees@gmail.com"]

  spec.summary       = "Reactive user interfaces with minimal boilerplate, using Rails + Redux"
  spec.homepage      = "https://github.com/jamesr2323/jason"
  spec.license       = "MIT"
  spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")

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

  # 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('..', __FILE__)) do
    `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  end
  spec.executables   = []
  spec.require_paths = ["lib"]

  spec.add_dependency "rails", ">= 5"
  spec.add_dependency "connection_pool", ">= 2.2.3"
  spec.add_dependency "redis", ">= 4"
  spec.add_dependency "jsondiff"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
jason-rails-0.4.1 jason-rails.gemspec
jason-rails-0.4.0 jason-rails.gemspec