├── .gitignore ├── .travis.yml ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── gemfiles ├── rails_41.gemfile ├── rails_42.gemfile ├── rails_50.gemfile ├── rails_51.gemfile ├── rails_52.gemfile └── rails_edge.gemfile ├── lib ├── msgpack_rails.rb └── msgpack_rails │ ├── activemodel │ └── serializers │ │ └── message_pack.rb │ ├── activesupport │ ├── core_ext │ │ └── object │ │ │ └── to_msgpack.rb │ ├── message_pack.rb │ └── message_pack │ │ ├── decoding.rb │ │ └── encoding.rb │ └── version.rb ├── msgpack_rails.gemspec └── test ├── msgpack_rails ├── core_ext_test.rb ├── decoding_test.rb ├── encoding_test.rb ├── fake_app.rb ├── models │ └── contact.rb ├── parsing_parameter_test.rb ├── rendering_test.rb └── serializer_test.rb └── test_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/msgpack_rails/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/msgpack_rails/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/msgpack_rails/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/msgpack_rails/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/msgpack_rails/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/msgpack_rails/HEAD/Rakefile -------------------------------------------------------------------------------- /gemfiles/rails_41.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/msgpack_rails/HEAD/gemfiles/rails_41.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_42.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/msgpack_rails/HEAD/gemfiles/rails_42.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_50.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/msgpack_rails/HEAD/gemfiles/rails_50.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_51.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/msgpack_rails/HEAD/gemfiles/rails_51.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_52.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/msgpack_rails/HEAD/gemfiles/rails_52.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_edge.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/msgpack_rails/HEAD/gemfiles/rails_edge.gemfile -------------------------------------------------------------------------------- /lib/msgpack_rails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/msgpack_rails/HEAD/lib/msgpack_rails.rb -------------------------------------------------------------------------------- /lib/msgpack_rails/activemodel/serializers/message_pack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/msgpack_rails/HEAD/lib/msgpack_rails/activemodel/serializers/message_pack.rb -------------------------------------------------------------------------------- /lib/msgpack_rails/activesupport/core_ext/object/to_msgpack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/msgpack_rails/HEAD/lib/msgpack_rails/activesupport/core_ext/object/to_msgpack.rb -------------------------------------------------------------------------------- /lib/msgpack_rails/activesupport/message_pack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/msgpack_rails/HEAD/lib/msgpack_rails/activesupport/message_pack.rb -------------------------------------------------------------------------------- /lib/msgpack_rails/activesupport/message_pack/decoding.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/msgpack_rails/HEAD/lib/msgpack_rails/activesupport/message_pack/decoding.rb -------------------------------------------------------------------------------- /lib/msgpack_rails/activesupport/message_pack/encoding.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/msgpack_rails/HEAD/lib/msgpack_rails/activesupport/message_pack/encoding.rb -------------------------------------------------------------------------------- /lib/msgpack_rails/version.rb: -------------------------------------------------------------------------------- 1 | module MsgpackRails 2 | VERSION = "0.4.3" 3 | end 4 | -------------------------------------------------------------------------------- /msgpack_rails.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/msgpack_rails/HEAD/msgpack_rails.gemspec -------------------------------------------------------------------------------- /test/msgpack_rails/core_ext_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/msgpack_rails/HEAD/test/msgpack_rails/core_ext_test.rb -------------------------------------------------------------------------------- /test/msgpack_rails/decoding_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/msgpack_rails/HEAD/test/msgpack_rails/decoding_test.rb -------------------------------------------------------------------------------- /test/msgpack_rails/encoding_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/msgpack_rails/HEAD/test/msgpack_rails/encoding_test.rb -------------------------------------------------------------------------------- /test/msgpack_rails/fake_app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/msgpack_rails/HEAD/test/msgpack_rails/fake_app.rb -------------------------------------------------------------------------------- /test/msgpack_rails/models/contact.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/msgpack_rails/HEAD/test/msgpack_rails/models/contact.rb -------------------------------------------------------------------------------- /test/msgpack_rails/parsing_parameter_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/msgpack_rails/HEAD/test/msgpack_rails/parsing_parameter_test.rb -------------------------------------------------------------------------------- /test/msgpack_rails/rendering_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/msgpack_rails/HEAD/test/msgpack_rails/rendering_test.rb -------------------------------------------------------------------------------- /test/msgpack_rails/serializer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/msgpack_rails/HEAD/test/msgpack_rails/serializer_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owenthereal/msgpack_rails/HEAD/test/test_helper.rb --------------------------------------------------------------------------------