Sha256: c971b36e24b97b2f8b8692406744343ce9ec3d4ea10e3e9d736787e27e4607c8

Contents?: true

Size: 1.14 KB

Versions: 3

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 "activemodel", "~> 4.1.0"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
msgpack_rails-0.4.2 msgpack_rails.gemspec
msgpack_rails-0.4.1 msgpack_rails.gemspec
msgpack_rails-0.4.0 msgpack_rails.gemspec