Sha256: f54acb26c2e5afe1017efec1b8a632b517c4648cd670721cbf5d710f722df168
Contents?: true
Size: 1000 Bytes
Versions: 1
Compression:
Stored size: 1000 Bytes
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 end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
msgpack_rails-0.3.0 | msgpack_rails.gemspec |