ar_protobuf_store 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 9e6a1e83da90459c353c2e1413bdcdb47bcd48be
4
+ data.tar.gz: e46eed8ebdbc9d69a8e8307a0d8277e524ab811e
5
+ SHA512:
6
+ metadata.gz: 057ec4648b962462b933a9d3b2159d54014705c039e563b2c0b771ec8f70d5e6d0bbdabe46679191404ec4ed297ce79d24bd35cc13459dbcbe85ae6b014e5e2e
7
+ data.tar.gz: 1144fc345613cd99b0a3fd3b8eb6b4c3d6696ad0f38a3f9368c30c9c166051fdb636a07a6a784880738450febfcd45bf44b4afefc32d81f3ea13562f99648167
data/.document ADDED
@@ -0,0 +1,3 @@
1
+ -
2
+ ChangeLog.md
3
+ LICENSE.txt
data/.gitignore ADDED
@@ -0,0 +1,3 @@
1
+ doc/
2
+ pkg/
3
+ Gemfile.lock
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --colour --format documentation
data/.travis.yml ADDED
@@ -0,0 +1,24 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.8.7
4
+ - 1.9.3
5
+ - 2.0.0
6
+ - 2.1.0
7
+ - 2.1.1
8
+ gemfile:
9
+ - gemfiles/rails3.2_protobuf.gemfile
10
+ - gemfiles/rails3.2_ruby_protobuf.gemfile
11
+ - gemfiles/rails4.0_protobuf.gemfile
12
+ - gemfiles/rails4.0_ruby_protobuf.gemfile
13
+ - gemfiles/rails4.1_protobuf.gemfile
14
+ - gemfiles/rails4.1_ruby_protobuf.gemfile
15
+ matrix:
16
+ exclude:
17
+ - rvm: 1.8.7
18
+ gemfile: gemfiles/rails4.0_protobuf.gemfile
19
+ - rvm: 1.8.7
20
+ gemfile: gemfiles/rails4.0_ruby_protobuf.gemfile
21
+ - rvm: 1.8.7
22
+ gemfile: gemfiles/rails4.1_protobuf.gemfile
23
+ - rvm: 1.8.7
24
+ gemfile: gemfiles/rails4.1_ruby_protobuf.gemfile
data/.yardopts ADDED
@@ -0,0 +1 @@
1
+ --markup markdown --title "ar_protobuf_store Documentation" --protected
data/Appraisals ADDED
@@ -0,0 +1,14 @@
1
+ RAILS_VERSIONS = ["3.2", "4.0", "4.1"]
2
+ PROTOBUF_SPECS = [
3
+ ["protobuf", "~> 3.0"],
4
+ ["ruby_protobuf", "~> 0.4"]
5
+ ]
6
+
7
+ RAILS_VERSIONS.each do |rails|
8
+ PROTOBUF_SPECS.each do |protobuf|
9
+ appraise "rails#{rails}_#{protobuf.first}" do
10
+ gem "rails", "~> #{rails}"
11
+ gem *protobuf
12
+ end
13
+ end
14
+ end
data/ChangeLog.md ADDED
@@ -0,0 +1,3 @@
1
+ ### 0.1.0 / 2014-05-19
2
+
3
+ Initial release: stuff works.
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in ar_protobuf_store.gemspec
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2014 Hsiu-Fan Wang
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/LICENSE.txt ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2014 Hsiu-Fan Wang
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,63 @@
1
+ # ar_protobuf_store
2
+
3
+ [![Gem Version](http://img.shields.io/gem/v/ar_protobuf_store.svg)][gem]
4
+ [![Build Status](http://img.shields.io/travis/hfwang/ar_protobuf_store.svg)][travis]
5
+ [![MIT license](http://img.shields.io/badge/license-MIT-red.svg)][license]
6
+
7
+ [gem]: https://rubygems.org/gems/ar_protobuf_store
8
+ [travis]: https://travis-ci.org/hfwang/ar_protobuf_store
9
+ [license]: https://github.com/hfwang/ar_protobuf_store/blob/master/LICENSE.txt
10
+
11
+ * [Homepage](https://rubygems.org/gems/ar_protobuf_store)
12
+ * [Documentation](http://rubydoc.info/gems/ar_protobuf_store/frames)
13
+ * [Email](mailto:hfwang at porkbuns.net)
14
+
15
+ ## Description
16
+
17
+ Rails/ActiveRecord 3 comes with a cool ActiveRecord::Store feature
18
+ that allows for creating a fairly lightweight schema-less
19
+ model. However, it uses YAML, which has poor performance and is just
20
+ generally silly.
21
+
22
+ This gem enhances ActiveRecord to allow storing values in a binary Protocol
23
+ Buffer blob. This adds a degree of type-safety and schema management without
24
+ having to deal with the migration pain of adding and removing columns to a
25
+ regular SQL table. (As well as removing the possibility of indexing the internal
26
+ values.)
27
+
28
+ This gem is known to work with the three "major" Ruby Protocol Buffer libraries (here listed in descending order of speed):
29
+
30
+ * [protobuf](http://rubygems.org/gems/protobuf) ([localshred on Github](https://github.com/localshred/protobuf))
31
+ * [ruby-protocol-buffers](http://rubygems.org/gems/ruby-protocol-buffers) ([Codekitchen on Github](https://github.com/codekitchen/ruby-protocol-buffers))
32
+ * [ruby_protobuf](http://rubygems.org/gems/ruby_protobuf) ([macks on Github](https://github.com/macks/ruby-protobuf))
33
+
34
+ ## Install
35
+
36
+ $ gem install ar_protobuf_store
37
+
38
+ ## Examples
39
+
40
+ You can call `ar_protobuf_store` similarly to how you would previously have
41
+ called store:
42
+
43
+ ```ruby
44
+ class FooExtras < ::Protobuf::Message
45
+ # Auto-generated protobuf compiler output here!
46
+ end
47
+
48
+ class FooModel < ActiveRecord::Base
49
+ # The old, YAML-based version would look like:
50
+ # store :extras, :accessors => :foo, :bar
51
+
52
+ # The new, protobuf-based version would look like:
53
+ marshal_store :extras, FooExtras
54
+ end
55
+ ```
56
+
57
+ ## Requirements
58
+
59
+ ## Copyright
60
+
61
+ Copyright (c) 2014 Hsiu-Fan Wang
62
+
63
+ See {file:LICENSE.txt} for details.
data/Rakefile ADDED
@@ -0,0 +1,40 @@
1
+ # encoding: utf-8
2
+
3
+ require 'rubygems'
4
+ require 'rake'
5
+
6
+ begin
7
+ gem 'rubygems-tasks', '~> 0.2'
8
+ require 'rubygems/tasks'
9
+
10
+ Gem::Tasks.new
11
+ rescue LoadError => e
12
+ warn e.message
13
+ warn "Run `gem install rubygems-tasks` to install Gem::Tasks."
14
+ end
15
+
16
+ begin
17
+ gem 'rspec', '~> 2.4'
18
+ require 'rspec/core/rake_task'
19
+
20
+ RSpec::Core::RakeTask.new
21
+ rescue LoadError => e
22
+ task :spec do
23
+ abort "Please run `gem install rspec` to install RSpec."
24
+ end
25
+ end
26
+
27
+ task :test => :spec
28
+ task :default => :spec
29
+
30
+ begin
31
+ gem 'yard', '~> 0.8'
32
+ require 'yard'
33
+
34
+ YARD::Rake::YardocTask.new
35
+ rescue LoadError => e
36
+ task :yard do
37
+ abort "Please run `gem install yard` to install YARD."
38
+ end
39
+ end
40
+ task :doc => :yard
@@ -0,0 +1,31 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ require File.expand_path("../lib/ar_protobuf_store/version", __FILE__)
4
+
5
+ Gem::Specification.new do |gem|
6
+ gem.name = "ar_protobuf_store"
7
+ gem.version = ArProtobufStore::VERSION
8
+ gem.summary = %q{Serialize Ar attributes with Protocol Buffers}
9
+ gem.description = %q{Like Ar::Store, but with Protocol Buffers}
10
+ gem.license = "MIT"
11
+ gem.authors = ["Hsiu-Fan Wang"]
12
+ gem.email = "hfwang@porkbuns.net"
13
+ gem.homepage = "https://rubygems.org/gems/ar_protobuf_store"
14
+
15
+ gem.files = `git ls-files`.split($/)
16
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
17
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
18
+ gem.require_paths = ["lib"]
19
+
20
+ gem.add_runtime_dependency "activerecord", ">= 3.0", "<= 4.1.1"
21
+
22
+ # Install this by default to make development easier
23
+ gem.add_development_dependency "ruby-protocol-buffers", "~> 1.5"
24
+
25
+ gem.add_development_dependency "pry", "~> 0.9"
26
+ gem.add_development_dependency "sqlite3", "~> 1.3"
27
+ gem.add_development_dependency "appraisal", "~> 1.0.0"
28
+ gem.add_development_dependency "rspec", "~> 2.4"
29
+ gem.add_development_dependency "rubygems-tasks", "~> 0.2"
30
+ gem.add_development_dependency "yard", "~> 0.8"
31
+ end
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "~> 3.2"
6
+ gem "protobuf", "~> 3.0"
7
+
8
+ gemspec :path => "../"
@@ -0,0 +1,130 @@
1
+ PATH
2
+ remote: ../
3
+ specs:
4
+ ar_protobuf_store (0.1.0)
5
+ activerecord (>= 3.0, <= 4.1.1)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actionmailer (3.2.18)
11
+ actionpack (= 3.2.18)
12
+ mail (~> 2.5.4)
13
+ actionpack (3.2.18)
14
+ activemodel (= 3.2.18)
15
+ activesupport (= 3.2.18)
16
+ builder (~> 3.0.0)
17
+ erubis (~> 2.7.0)
18
+ journey (~> 1.0.4)
19
+ rack (~> 1.4.5)
20
+ rack-cache (~> 1.2)
21
+ rack-test (~> 0.6.1)
22
+ sprockets (~> 2.2.1)
23
+ activemodel (3.2.18)
24
+ activesupport (= 3.2.18)
25
+ builder (~> 3.0.0)
26
+ activerecord (3.2.18)
27
+ activemodel (= 3.2.18)
28
+ activesupport (= 3.2.18)
29
+ arel (~> 3.0.2)
30
+ tzinfo (~> 0.3.29)
31
+ activeresource (3.2.18)
32
+ activemodel (= 3.2.18)
33
+ activesupport (= 3.2.18)
34
+ activesupport (3.2.18)
35
+ i18n (~> 0.6, >= 0.6.4)
36
+ multi_json (~> 1.0)
37
+ appraisal (1.0.0)
38
+ bundler
39
+ rake
40
+ thor (>= 0.14.0)
41
+ arel (3.0.3)
42
+ builder (3.0.4)
43
+ coderay (1.1.0)
44
+ diff-lcs (1.2.5)
45
+ erubis (2.7.0)
46
+ hike (1.2.3)
47
+ i18n (0.6.9)
48
+ journey (1.0.4)
49
+ json (1.8.1)
50
+ mail (2.5.4)
51
+ mime-types (~> 1.16)
52
+ treetop (~> 1.4.8)
53
+ method_source (0.8.2)
54
+ middleware (0.1.0)
55
+ mime-types (1.25.1)
56
+ multi_json (1.10.1)
57
+ polyglot (0.3.4)
58
+ protobuf (3.0.4)
59
+ activesupport (>= 3.2)
60
+ middleware
61
+ multi_json
62
+ thor
63
+ pry (0.9.12.6)
64
+ coderay (~> 1.0)
65
+ method_source (~> 0.8)
66
+ slop (~> 3.4)
67
+ rack (1.4.5)
68
+ rack-cache (1.2)
69
+ rack (>= 0.4)
70
+ rack-ssl (1.3.4)
71
+ rack
72
+ rack-test (0.6.2)
73
+ rack (>= 1.0)
74
+ rails (3.2.18)
75
+ actionmailer (= 3.2.18)
76
+ actionpack (= 3.2.18)
77
+ activerecord (= 3.2.18)
78
+ activeresource (= 3.2.18)
79
+ activesupport (= 3.2.18)
80
+ bundler (~> 1.0)
81
+ railties (= 3.2.18)
82
+ railties (3.2.18)
83
+ actionpack (= 3.2.18)
84
+ activesupport (= 3.2.18)
85
+ rack-ssl (~> 1.3.2)
86
+ rake (>= 0.8.7)
87
+ rdoc (~> 3.4)
88
+ thor (>= 0.14.6, < 2.0)
89
+ rake (10.3.2)
90
+ rdoc (3.12.2)
91
+ json (~> 1.4)
92
+ rspec (2.14.1)
93
+ rspec-core (~> 2.14.0)
94
+ rspec-expectations (~> 2.14.0)
95
+ rspec-mocks (~> 2.14.0)
96
+ rspec-core (2.14.8)
97
+ rspec-expectations (2.14.5)
98
+ diff-lcs (>= 1.1.3, < 2.0)
99
+ rspec-mocks (2.14.6)
100
+ ruby-protocol-buffers (1.5.1)
101
+ rubygems-tasks (0.2.4)
102
+ slop (3.5.0)
103
+ sprockets (2.2.2)
104
+ hike (~> 1.2)
105
+ multi_json (~> 1.0)
106
+ rack (~> 1.0)
107
+ tilt (~> 1.1, != 1.3.0)
108
+ sqlite3 (1.3.9)
109
+ thor (0.19.1)
110
+ tilt (1.4.1)
111
+ treetop (1.4.15)
112
+ polyglot
113
+ polyglot (>= 0.3.1)
114
+ tzinfo (0.3.39)
115
+ yard (0.8.7.4)
116
+
117
+ PLATFORMS
118
+ ruby
119
+
120
+ DEPENDENCIES
121
+ appraisal (~> 1.0.0)
122
+ ar_protobuf_store!
123
+ protobuf (~> 3.0)
124
+ pry (~> 0.9)
125
+ rails (~> 3.2)
126
+ rspec (~> 2.4)
127
+ ruby-protocol-buffers (~> 1.5)
128
+ rubygems-tasks (~> 0.2)
129
+ sqlite3 (~> 1.3)
130
+ yard (~> 0.8)
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "~> 3.2"
6
+ gem "ruby_protobuf", "~> 0.4"
7
+
8
+ gemspec :path => "../"
@@ -0,0 +1,125 @@
1
+ PATH
2
+ remote: ../
3
+ specs:
4
+ ar_protobuf_store (0.1.0)
5
+ activerecord (>= 3.0, <= 4.1.1)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actionmailer (3.2.18)
11
+ actionpack (= 3.2.18)
12
+ mail (~> 2.5.4)
13
+ actionpack (3.2.18)
14
+ activemodel (= 3.2.18)
15
+ activesupport (= 3.2.18)
16
+ builder (~> 3.0.0)
17
+ erubis (~> 2.7.0)
18
+ journey (~> 1.0.4)
19
+ rack (~> 1.4.5)
20
+ rack-cache (~> 1.2)
21
+ rack-test (~> 0.6.1)
22
+ sprockets (~> 2.2.1)
23
+ activemodel (3.2.18)
24
+ activesupport (= 3.2.18)
25
+ builder (~> 3.0.0)
26
+ activerecord (3.2.18)
27
+ activemodel (= 3.2.18)
28
+ activesupport (= 3.2.18)
29
+ arel (~> 3.0.2)
30
+ tzinfo (~> 0.3.29)
31
+ activeresource (3.2.18)
32
+ activemodel (= 3.2.18)
33
+ activesupport (= 3.2.18)
34
+ activesupport (3.2.18)
35
+ i18n (~> 0.6, >= 0.6.4)
36
+ multi_json (~> 1.0)
37
+ appraisal (1.0.0)
38
+ bundler
39
+ rake
40
+ thor (>= 0.14.0)
41
+ arel (3.0.3)
42
+ builder (3.0.4)
43
+ coderay (1.1.0)
44
+ diff-lcs (1.2.5)
45
+ erubis (2.7.0)
46
+ hike (1.2.3)
47
+ i18n (0.6.9)
48
+ journey (1.0.4)
49
+ json (1.8.1)
50
+ mail (2.5.4)
51
+ mime-types (~> 1.16)
52
+ treetop (~> 1.4.8)
53
+ method_source (0.8.2)
54
+ mime-types (1.25.1)
55
+ multi_json (1.10.1)
56
+ polyglot (0.3.4)
57
+ pry (0.9.12.6)
58
+ coderay (~> 1.0)
59
+ method_source (~> 0.8)
60
+ slop (~> 3.4)
61
+ rack (1.4.5)
62
+ rack-cache (1.2)
63
+ rack (>= 0.4)
64
+ rack-ssl (1.3.4)
65
+ rack
66
+ rack-test (0.6.2)
67
+ rack (>= 1.0)
68
+ rails (3.2.18)
69
+ actionmailer (= 3.2.18)
70
+ actionpack (= 3.2.18)
71
+ activerecord (= 3.2.18)
72
+ activeresource (= 3.2.18)
73
+ activesupport (= 3.2.18)
74
+ bundler (~> 1.0)
75
+ railties (= 3.2.18)
76
+ railties (3.2.18)
77
+ actionpack (= 3.2.18)
78
+ activesupport (= 3.2.18)
79
+ rack-ssl (~> 1.3.2)
80
+ rake (>= 0.8.7)
81
+ rdoc (~> 3.4)
82
+ thor (>= 0.14.6, < 2.0)
83
+ rake (10.3.2)
84
+ rdoc (3.12.2)
85
+ json (~> 1.4)
86
+ rspec (2.14.1)
87
+ rspec-core (~> 2.14.0)
88
+ rspec-expectations (~> 2.14.0)
89
+ rspec-mocks (~> 2.14.0)
90
+ rspec-core (2.14.8)
91
+ rspec-expectations (2.14.5)
92
+ diff-lcs (>= 1.1.3, < 2.0)
93
+ rspec-mocks (2.14.6)
94
+ ruby-protocol-buffers (1.5.1)
95
+ ruby_protobuf (0.4.11)
96
+ rubygems-tasks (0.2.4)
97
+ slop (3.5.0)
98
+ sprockets (2.2.2)
99
+ hike (~> 1.2)
100
+ multi_json (~> 1.0)
101
+ rack (~> 1.0)
102
+ tilt (~> 1.1, != 1.3.0)
103
+ sqlite3 (1.3.9)
104
+ thor (0.19.1)
105
+ tilt (1.4.1)
106
+ treetop (1.4.15)
107
+ polyglot
108
+ polyglot (>= 0.3.1)
109
+ tzinfo (0.3.39)
110
+ yard (0.8.7.4)
111
+
112
+ PLATFORMS
113
+ ruby
114
+
115
+ DEPENDENCIES
116
+ appraisal (~> 1.0.0)
117
+ ar_protobuf_store!
118
+ pry (~> 0.9)
119
+ rails (~> 3.2)
120
+ rspec (~> 2.4)
121
+ ruby-protocol-buffers (~> 1.5)
122
+ ruby_protobuf (~> 0.4)
123
+ rubygems-tasks (~> 0.2)
124
+ sqlite3 (~> 1.3)
125
+ yard (~> 0.8)
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "~> 4.0"
6
+ gem "protobuf", "~> 3.0"
7
+
8
+ gemspec :path => "../"
@@ -0,0 +1,129 @@
1
+ PATH
2
+ remote: ../
3
+ specs:
4
+ ar_protobuf_store (0.1.0)
5
+ activerecord (>= 3.0, <= 4.1.1)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actionmailer (4.1.1)
11
+ actionpack (= 4.1.1)
12
+ actionview (= 4.1.1)
13
+ mail (~> 2.5.4)
14
+ actionpack (4.1.1)
15
+ actionview (= 4.1.1)
16
+ activesupport (= 4.1.1)
17
+ rack (~> 1.5.2)
18
+ rack-test (~> 0.6.2)
19
+ actionview (4.1.1)
20
+ activesupport (= 4.1.1)
21
+ builder (~> 3.1)
22
+ erubis (~> 2.7.0)
23
+ activemodel (4.1.1)
24
+ activesupport (= 4.1.1)
25
+ builder (~> 3.1)
26
+ activerecord (4.1.1)
27
+ activemodel (= 4.1.1)
28
+ activesupport (= 4.1.1)
29
+ arel (~> 5.0.0)
30
+ activesupport (4.1.1)
31
+ i18n (~> 0.6, >= 0.6.9)
32
+ json (~> 1.7, >= 1.7.7)
33
+ minitest (~> 5.1)
34
+ thread_safe (~> 0.1)
35
+ tzinfo (~> 1.1)
36
+ appraisal (1.0.0)
37
+ bundler
38
+ rake
39
+ thor (>= 0.14.0)
40
+ arel (5.0.1.20140414130214)
41
+ builder (3.2.2)
42
+ coderay (1.1.0)
43
+ diff-lcs (1.2.5)
44
+ erubis (2.7.0)
45
+ hike (1.2.3)
46
+ i18n (0.6.9)
47
+ json (1.8.1)
48
+ mail (2.5.4)
49
+ mime-types (~> 1.16)
50
+ treetop (~> 1.4.8)
51
+ method_source (0.8.2)
52
+ middleware (0.1.0)
53
+ mime-types (1.25.1)
54
+ minitest (5.3.4)
55
+ multi_json (1.10.1)
56
+ polyglot (0.3.4)
57
+ protobuf (3.0.4)
58
+ activesupport (>= 3.2)
59
+ middleware
60
+ multi_json
61
+ thor
62
+ pry (0.9.12.6)
63
+ coderay (~> 1.0)
64
+ method_source (~> 0.8)
65
+ slop (~> 3.4)
66
+ rack (1.5.2)
67
+ rack-test (0.6.2)
68
+ rack (>= 1.0)
69
+ rails (4.1.1)
70
+ actionmailer (= 4.1.1)
71
+ actionpack (= 4.1.1)
72
+ actionview (= 4.1.1)
73
+ activemodel (= 4.1.1)
74
+ activerecord (= 4.1.1)
75
+ activesupport (= 4.1.1)
76
+ bundler (>= 1.3.0, < 2.0)
77
+ railties (= 4.1.1)
78
+ sprockets-rails (~> 2.0)
79
+ railties (4.1.1)
80
+ actionpack (= 4.1.1)
81
+ activesupport (= 4.1.1)
82
+ rake (>= 0.8.7)
83
+ thor (>= 0.18.1, < 2.0)
84
+ rake (10.3.2)
85
+ rspec (2.14.1)
86
+ rspec-core (~> 2.14.0)
87
+ rspec-expectations (~> 2.14.0)
88
+ rspec-mocks (~> 2.14.0)
89
+ rspec-core (2.14.8)
90
+ rspec-expectations (2.14.5)
91
+ diff-lcs (>= 1.1.3, < 2.0)
92
+ rspec-mocks (2.14.6)
93
+ ruby-protocol-buffers (1.5.1)
94
+ rubygems-tasks (0.2.4)
95
+ slop (3.5.0)
96
+ sprockets (2.12.1)
97
+ hike (~> 1.2)
98
+ multi_json (~> 1.0)
99
+ rack (~> 1.0)
100
+ tilt (~> 1.1, != 1.3.0)
101
+ sprockets-rails (2.1.3)
102
+ actionpack (>= 3.0)
103
+ activesupport (>= 3.0)
104
+ sprockets (~> 2.8)
105
+ sqlite3 (1.3.9)
106
+ thor (0.19.1)
107
+ thread_safe (0.3.3)
108
+ tilt (1.4.1)
109
+ treetop (1.4.15)
110
+ polyglot
111
+ polyglot (>= 0.3.1)
112
+ tzinfo (1.1.0)
113
+ thread_safe (~> 0.1)
114
+ yard (0.8.7.4)
115
+
116
+ PLATFORMS
117
+ ruby
118
+
119
+ DEPENDENCIES
120
+ appraisal (~> 1.0.0)
121
+ ar_protobuf_store!
122
+ protobuf (~> 3.0)
123
+ pry (~> 0.9)
124
+ rails (~> 4.0)
125
+ rspec (~> 2.4)
126
+ ruby-protocol-buffers (~> 1.5)
127
+ rubygems-tasks (~> 0.2)
128
+ sqlite3 (~> 1.3)
129
+ yard (~> 0.8)
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "~> 4.0"
6
+ gem "ruby_protobuf", "~> 0.4"
7
+
8
+ gemspec :path => "../"