Sha256: d09f2efa29aff08e8a5ba92d6cba0de694e6ca14acc3afa0bd7b2ce2c560718f

Contents?: true

Size: 1.14 KB

Versions: 1

Compression:

Stored size: 1.14 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'msgpack_rails/version'

Gem::Specification.new do |spec|
  spec.name          = "msgpack_rails"
  spec.version       = MsgpackRails::VERSION
  spec.authors       = ["Jingwen Owen Ou"]
  spec.email         = ["jingweno@gmail.com"]
  spec.description   = %q{Message Pack for Rails.}
  spec.summary       = %q{The Rails way to serialize/deserialize with Message Pack.}
  spec.homepage      = "https://github.com/jingweno/msgpack_rails"
  spec.license       = "MIT"

  spec.files         = `git ls-files`.split($/)
  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_runtime_dependency "activesupport", ">= 3.0"
  if RUBY_ENGINE == "jruby"
    spec.add_runtime_dependency "msgpack-jruby"
  else
    spec.add_runtime_dependency "msgpack"
  end

  spec.add_development_dependency "rake", "~> 10.3.1"
  spec.add_development_dependency "minitest", "~> 5.3.3"
  spec.add_development_dependency "rails", ">= 4.1.0"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
msgpack_rails-0.4.3 msgpack_rails.gemspec