ar_protobuf_store 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,15 @@
1
- ---
2
- SHA1:
3
- metadata.gz: 5e31f0c3826a5143c28a8fe5550e33b904543dc7
4
- data.tar.gz: c01dfde52028a487d5bff218d73b1392e4231789
5
- SHA512:
6
- metadata.gz: 8cd627729104767d7d3fd31f8bcfe99f30c98d73a60894a43e599f6fd9cc59fbb22d2ff60d2fb3206be4a36bc07bdbc6e7823b742a1f36809289873917fb295e
7
- data.tar.gz: aae5c4e36ae7aec655c4ca15042015cb017ed41dcc3ef2ff594e464f824cd6131fd5275bba99574c33ab752bc0a4b7fd4ccb9e933fbdb0976fd49640f9f6e13c
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ ZGE3YzY5ODAyNThiYzI3Y2FiMjhkYTE4OTZiNTYyODUyYTQ2YmM1MA==
5
+ data.tar.gz: !binary |-
6
+ NjczZmZhNGE0ZjQzMTRiNWI0Nzc4ZWE1ZDNiMWU3ZTI5NmZhZGI0NQ==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ NTM1NzVjMjc1ZDYyYzJhZjg4YjZiZjAzZGUzMWRkYWI2MWRmZGUxNjQ2NTQw
10
+ OGQzZTNkMTM0YTdlYTY1NDRkMjUzMmIyMjUzM2NmOWM3YTI4MjJlYWM3NzMz
11
+ ODQwMmM0YzRhODhiMzMzYmM2ZGQ2OTk3NjJmMTU1MWI5MDFkZGQ=
12
+ data.tar.gz: !binary |-
13
+ ZmRhNWQxNTFiOGIyNWYyYjQ0MjBkYmU1YTRhMzlmZWVlN2M2NGM0YzcyMDA5
14
+ OWE1OGMwNDcwZDYxZDIyYzI2YTRhM2JjY2RiMGQ1MTZjYWIxNGIzMjE1NDdh
15
+ YTM3MmIwZjBlZDQ2N2JhZTAxYjIxZGQwZTEzNThhNGFkNjc4MzM=
data/.gitignore CHANGED
@@ -1,3 +1,5 @@
1
1
  doc/
2
2
  pkg/
3
3
  Gemfile.lock
4
+ *.gemfile.lock
5
+ coverage
@@ -24,3 +24,6 @@ matrix:
24
24
  gemfile: gemfiles/rails4.1_protobuf.gemfile
25
25
  - rvm: 1.8.7
26
26
  gemfile: gemfiles/rails4.1_ruby_protobuf.gemfile
27
+ addons:
28
+ code_climate:
29
+ repo_token: 6bdbd657ebc3097c1ca86672a45b6408a457a5d80cea234937f4d4adfbf004bd
@@ -1,3 +1,7 @@
1
+ ### 0.2.1 / 2014-05-20
2
+
3
+ Tweak detection of field types so booleans are detected.
4
+
1
5
  ### 0.2.0 / 2014-05-20
2
6
 
3
7
  Fix Railtie, so it doesn't error.
data/README.md CHANGED
@@ -45,12 +45,18 @@ class FooExtras < ::Protobuf::Message
45
45
  # Auto-generated protobuf compiler output here!
46
46
  end
47
47
 
48
+ # FooModel would have a schema like:
49
+ # create_table :foo_model do |t|
50
+ # # Recommend setting a limit that's biggish so it will be stored as a binary
51
+ # # blob by MySQL instead of a binary varchar.
52
+ # t.binary :extras, :limit => 1.megabyte
53
+ # end
48
54
  class FooModel < ActiveRecord::Base
49
55
  # The old, YAML-based version would look like:
50
56
  # store :extras, :accessors => :foo, :bar
51
57
 
52
58
  # The new, protobuf-based version would look like:
53
- marshal_store :extras, FooExtras
59
+ protobuf_store :extras, FooExtras
54
60
  end
55
61
  ```
56
62
 
@@ -22,6 +22,7 @@ Gem::Specification.new do |gem|
22
22
  # Install this by default to make development easier
23
23
  gem.add_development_dependency "ruby-protocol-buffers", "~> 1.5"
24
24
 
25
+ gem.add_development_dependency "codeclimate-test-reporter"
25
26
  gem.add_development_dependency "pry", "~> 0.9"
26
27
  gem.add_development_dependency "sqlite3", "~> 1.3"
27
28
  gem.add_development_dependency "appraisal", "~> 1.0.0"
@@ -34,18 +34,20 @@ module ArProtobufStore
34
34
  name = key[:name]
35
35
  coercer = case key[:type]
36
36
  when :int
37
- ".to_i"
37
+ "%s.to_i"
38
38
  when :float
39
- ".to_f"
39
+ "%s.to_f"
40
40
  when :string
41
- ".to_s"
41
+ "%s.to_s"
42
+ when :bool
43
+ "!!%s"
42
44
  else
43
- ""
45
+ "%s"
44
46
  end
45
47
  class_eval <<-"END_EVAL", __FILE__, __LINE__
46
48
  def #{name}=(value)
47
49
  self.#{store_attribute}_will_change!
48
- self.#{store_attribute}.#{name} = value#{coercer}
50
+ self.#{store_attribute}.#{name} = #{coercer % 'value'}
49
51
  end
50
52
  def #{name}
51
53
  self.#{store_attribute}.#{name}
@@ -40,6 +40,8 @@ module ArProtobufStore
40
40
  t = case field
41
41
  when ProtocolBuffers::Field::StringField
42
42
  :string
43
+ when ProtocolBuffers::Field::BoolField
44
+ :bool
43
45
  when ProtocolBuffers::Field::VarintField
44
46
  :int
45
47
  when ProtocolBuffers::Field::FloatField, ProtocolBuffers::Field::DoubleField
@@ -41,7 +41,9 @@ module ArProtobufStore
41
41
  t = case field
42
42
  when Protobuf::Field::StringField
43
43
  :string
44
- when Protobuf::Field::VarintField
44
+ when Protobuf::Field::BoolField
45
+ :bool
46
+ when Protobuf::Field::IntegerField, Protobuf::Field::Uint32Field, Protobuf::Field::Uint64Field
45
47
  :int
46
48
  when Protobuf::Field::FloatField
47
49
  :float
@@ -1,4 +1,4 @@
1
1
  module ArProtobufStore
2
2
  # ar_protobuf_store version
3
- VERSION = "0.2.0"
3
+ VERSION = "0.2.1"
4
4
  end
@@ -3,6 +3,11 @@ require "ar_protobuf_store"
3
3
 
4
4
  require "active_record"
5
5
 
6
+ if RUBY_VERSION > "1.8.7"
7
+ require "codeclimate-test-reporter"
8
+ CodeClimate::TestReporter.start
9
+ end
10
+
6
11
  ActiveRecord::Base.establish_connection(:adapter => "sqlite3", :database => ":memory:")
7
12
  ActiveRecord::Schema.verbose = false
8
13
 
metadata CHANGED
@@ -1,108 +1,153 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: ar_protobuf_store
3
- version: !ruby/object:Gem::Version
4
- version: 0.2.0
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.1
5
5
  platform: ruby
6
- authors:
6
+ authors:
7
7
  - Hsiu-Fan Wang
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
-
12
- date: 2014-05-20 00:00:00 Z
13
- dependencies:
14
- - !ruby/object:Gem::Dependency
15
- requirement: &id001 !ruby/object:Gem::Requirement
16
- requirements:
17
- - - ">="
18
- - !ruby/object:Gem::Version
19
- version: "3.0"
11
+ date: 2014-07-24 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: activerecord
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ! '>='
18
+ - !ruby/object:Gem::Version
19
+ version: '3.0'
20
20
  - - <=
21
- - !ruby/object:Gem::Version
21
+ - !ruby/object:Gem::Version
22
22
  version: 4.1.1
23
- version_requirements: *id001
24
- prerelease: false
25
23
  type: :runtime
26
- name: activerecord
27
- - !ruby/object:Gem::Dependency
28
- requirement: &id002 !ruby/object:Gem::Requirement
29
- requirements:
30
- - - ~>
31
- - !ruby/object:Gem::Version
32
- version: "1.5"
33
- version_requirements: *id002
34
24
  prerelease: false
35
- type: :development
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: '3.0'
30
+ - - <=
31
+ - !ruby/object:Gem::Version
32
+ version: 4.1.1
33
+ - !ruby/object:Gem::Dependency
36
34
  name: ruby-protocol-buffers
37
- - !ruby/object:Gem::Dependency
38
- requirement: &id003 !ruby/object:Gem::Requirement
39
- requirements:
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
40
37
  - - ~>
41
- - !ruby/object:Gem::Version
42
- version: "0.9"
43
- version_requirements: *id003
38
+ - !ruby/object:Gem::Version
39
+ version: '1.5'
40
+ type: :development
44
41
  prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ~>
45
+ - !ruby/object:Gem::Version
46
+ version: '1.5'
47
+ - !ruby/object:Gem::Dependency
48
+ name: codeclimate-test-reporter
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
45
54
  type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ! '>='
59
+ - !ruby/object:Gem::Version
60
+ version: '0'
61
+ - !ruby/object:Gem::Dependency
46
62
  name: pry
47
- - !ruby/object:Gem::Dependency
48
- requirement: &id004 !ruby/object:Gem::Requirement
49
- requirements:
63
+ requirement: !ruby/object:Gem::Requirement
64
+ requirements:
50
65
  - - ~>
51
- - !ruby/object:Gem::Version
52
- version: "1.3"
53
- version_requirements: *id004
54
- prerelease: false
66
+ - !ruby/object:Gem::Version
67
+ version: '0.9'
55
68
  type: :development
69
+ prerelease: false
70
+ version_requirements: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - ~>
73
+ - !ruby/object:Gem::Version
74
+ version: '0.9'
75
+ - !ruby/object:Gem::Dependency
56
76
  name: sqlite3
57
- - !ruby/object:Gem::Dependency
58
- requirement: &id005 !ruby/object:Gem::Requirement
59
- requirements:
77
+ requirement: !ruby/object:Gem::Requirement
78
+ requirements:
60
79
  - - ~>
61
- - !ruby/object:Gem::Version
62
- version: 1.0.0
63
- version_requirements: *id005
64
- prerelease: false
80
+ - !ruby/object:Gem::Version
81
+ version: '1.3'
65
82
  type: :development
83
+ prerelease: false
84
+ version_requirements: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ~>
87
+ - !ruby/object:Gem::Version
88
+ version: '1.3'
89
+ - !ruby/object:Gem::Dependency
66
90
  name: appraisal
67
- - !ruby/object:Gem::Dependency
68
- requirement: &id006 !ruby/object:Gem::Requirement
69
- requirements:
91
+ requirement: !ruby/object:Gem::Requirement
92
+ requirements:
70
93
  - - ~>
71
- - !ruby/object:Gem::Version
72
- version: "2.4"
73
- version_requirements: *id006
74
- prerelease: false
94
+ - !ruby/object:Gem::Version
95
+ version: 1.0.0
75
96
  type: :development
97
+ prerelease: false
98
+ version_requirements: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - ~>
101
+ - !ruby/object:Gem::Version
102
+ version: 1.0.0
103
+ - !ruby/object:Gem::Dependency
76
104
  name: rspec
77
- - !ruby/object:Gem::Dependency
78
- requirement: &id007 !ruby/object:Gem::Requirement
79
- requirements:
105
+ requirement: !ruby/object:Gem::Requirement
106
+ requirements:
80
107
  - - ~>
81
- - !ruby/object:Gem::Version
82
- version: "0.2"
83
- version_requirements: *id007
84
- prerelease: false
108
+ - !ruby/object:Gem::Version
109
+ version: '2.4'
85
110
  type: :development
111
+ prerelease: false
112
+ version_requirements: !ruby/object:Gem::Requirement
113
+ requirements:
114
+ - - ~>
115
+ - !ruby/object:Gem::Version
116
+ version: '2.4'
117
+ - !ruby/object:Gem::Dependency
86
118
  name: rubygems-tasks
87
- - !ruby/object:Gem::Dependency
88
- requirement: &id008 !ruby/object:Gem::Requirement
89
- requirements:
119
+ requirement: !ruby/object:Gem::Requirement
120
+ requirements:
90
121
  - - ~>
91
- - !ruby/object:Gem::Version
92
- version: "0.8"
93
- version_requirements: *id008
94
- prerelease: false
122
+ - !ruby/object:Gem::Version
123
+ version: '0.2'
95
124
  type: :development
125
+ prerelease: false
126
+ version_requirements: !ruby/object:Gem::Requirement
127
+ requirements:
128
+ - - ~>
129
+ - !ruby/object:Gem::Version
130
+ version: '0.2'
131
+ - !ruby/object:Gem::Dependency
96
132
  name: yard
133
+ requirement: !ruby/object:Gem::Requirement
134
+ requirements:
135
+ - - ~>
136
+ - !ruby/object:Gem::Version
137
+ version: '0.8'
138
+ type: :development
139
+ prerelease: false
140
+ version_requirements: !ruby/object:Gem::Requirement
141
+ requirements:
142
+ - - ~>
143
+ - !ruby/object:Gem::Version
144
+ version: '0.8'
97
145
  description: Like Ar::Store, but with Protocol Buffers
98
146
  email: hfwang@porkbuns.net
99
147
  executables: []
100
-
101
148
  extensions: []
102
-
103
149
  extra_rdoc_files: []
104
-
105
- files:
150
+ files:
106
151
  - .document
107
152
  - .gitignore
108
153
  - .rspec
@@ -117,17 +162,11 @@ files:
117
162
  - Rakefile
118
163
  - ar_protobuf_store.gemspec
119
164
  - gemfiles/rails3.2_protobuf.gemfile
120
- - gemfiles/rails3.2_protobuf.gemfile.lock
121
165
  - gemfiles/rails3.2_ruby_protobuf.gemfile
122
- - gemfiles/rails3.2_ruby_protobuf.gemfile.lock
123
166
  - gemfiles/rails4.0_protobuf.gemfile
124
- - gemfiles/rails4.0_protobuf.gemfile.lock
125
167
  - gemfiles/rails4.0_ruby_protobuf.gemfile
126
- - gemfiles/rails4.0_ruby_protobuf.gemfile.lock
127
168
  - gemfiles/rails4.1_protobuf.gemfile
128
- - gemfiles/rails4.1_protobuf.gemfile.lock
129
169
  - gemfiles/rails4.1_ruby_protobuf.gemfile
130
- - gemfiles/rails4.1_ruby_protobuf.gemfile.lock
131
170
  - lib/ar_protobuf_store.rb
132
171
  - lib/ar_protobuf_store/codekitchen_protobuf_parser.rb
133
172
  - lib/ar_protobuf_store/protobuf_parser.rb
@@ -139,32 +178,30 @@ files:
139
178
  - spec/macks_protobuf_spec.rb
140
179
  - spec/spec_helper.rb
141
180
  homepage: https://rubygems.org/gems/ar_protobuf_store
142
- licenses:
181
+ licenses:
143
182
  - MIT
144
183
  metadata: {}
145
-
146
184
  post_install_message:
147
185
  rdoc_options: []
148
-
149
- require_paths:
186
+ require_paths:
150
187
  - lib
151
- required_ruby_version: !ruby/object:Gem::Requirement
152
- requirements:
153
- - &id009
154
- - ">="
155
- - !ruby/object:Gem::Version
156
- version: "0"
157
- required_rubygems_version: !ruby/object:Gem::Requirement
158
- requirements:
159
- - *id009
188
+ required_ruby_version: !ruby/object:Gem::Requirement
189
+ requirements:
190
+ - - ! '>='
191
+ - !ruby/object:Gem::Version
192
+ version: '0'
193
+ required_rubygems_version: !ruby/object:Gem::Requirement
194
+ requirements:
195
+ - - ! '>='
196
+ - !ruby/object:Gem::Version
197
+ version: '0'
160
198
  requirements: []
161
-
162
199
  rubyforge_project:
163
- rubygems_version: 2.0.14
200
+ rubygems_version: 2.2.2
164
201
  signing_key:
165
202
  specification_version: 4
166
203
  summary: Serialize Ar attributes with Protocol Buffers
167
- test_files:
204
+ test_files:
168
205
  - spec/ar_protobuf_store_spec.rb
169
206
  - spec/codekitchen_protobuf_spec.rb
170
207
  - spec/localshred_protobuf_spec.rb
@@ -1,130 +0,0 @@
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)
@@ -1,125 +0,0 @@
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)
@@ -1,129 +0,0 @@
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)
@@ -1,124 +0,0 @@
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
- mime-types (1.25.1)
53
- minitest (5.3.4)
54
- multi_json (1.10.1)
55
- polyglot (0.3.4)
56
- pry (0.9.12.6)
57
- coderay (~> 1.0)
58
- method_source (~> 0.8)
59
- slop (~> 3.4)
60
- rack (1.5.2)
61
- rack-test (0.6.2)
62
- rack (>= 1.0)
63
- rails (4.1.1)
64
- actionmailer (= 4.1.1)
65
- actionpack (= 4.1.1)
66
- actionview (= 4.1.1)
67
- activemodel (= 4.1.1)
68
- activerecord (= 4.1.1)
69
- activesupport (= 4.1.1)
70
- bundler (>= 1.3.0, < 2.0)
71
- railties (= 4.1.1)
72
- sprockets-rails (~> 2.0)
73
- railties (4.1.1)
74
- actionpack (= 4.1.1)
75
- activesupport (= 4.1.1)
76
- rake (>= 0.8.7)
77
- thor (>= 0.18.1, < 2.0)
78
- rake (10.3.2)
79
- rspec (2.14.1)
80
- rspec-core (~> 2.14.0)
81
- rspec-expectations (~> 2.14.0)
82
- rspec-mocks (~> 2.14.0)
83
- rspec-core (2.14.8)
84
- rspec-expectations (2.14.5)
85
- diff-lcs (>= 1.1.3, < 2.0)
86
- rspec-mocks (2.14.6)
87
- ruby-protocol-buffers (1.5.1)
88
- ruby_protobuf (0.4.11)
89
- rubygems-tasks (0.2.4)
90
- slop (3.5.0)
91
- sprockets (2.12.1)
92
- hike (~> 1.2)
93
- multi_json (~> 1.0)
94
- rack (~> 1.0)
95
- tilt (~> 1.1, != 1.3.0)
96
- sprockets-rails (2.1.3)
97
- actionpack (>= 3.0)
98
- activesupport (>= 3.0)
99
- sprockets (~> 2.8)
100
- sqlite3 (1.3.9)
101
- thor (0.19.1)
102
- thread_safe (0.3.3)
103
- tilt (1.4.1)
104
- treetop (1.4.15)
105
- polyglot
106
- polyglot (>= 0.3.1)
107
- tzinfo (1.1.0)
108
- thread_safe (~> 0.1)
109
- yard (0.8.7.4)
110
-
111
- PLATFORMS
112
- ruby
113
-
114
- DEPENDENCIES
115
- appraisal (~> 1.0.0)
116
- ar_protobuf_store!
117
- pry (~> 0.9)
118
- rails (~> 4.0)
119
- rspec (~> 2.4)
120
- ruby-protocol-buffers (~> 1.5)
121
- ruby_protobuf (~> 0.4)
122
- rubygems-tasks (~> 0.2)
123
- sqlite3 (~> 1.3)
124
- yard (~> 0.8)
@@ -1,129 +0,0 @@
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.1)
125
- rspec (~> 2.4)
126
- ruby-protocol-buffers (~> 1.5)
127
- rubygems-tasks (~> 0.2)
128
- sqlite3 (~> 1.3)
129
- yard (~> 0.8)
@@ -1,124 +0,0 @@
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
- mime-types (1.25.1)
53
- minitest (5.3.4)
54
- multi_json (1.10.1)
55
- polyglot (0.3.4)
56
- pry (0.9.12.6)
57
- coderay (~> 1.0)
58
- method_source (~> 0.8)
59
- slop (~> 3.4)
60
- rack (1.5.2)
61
- rack-test (0.6.2)
62
- rack (>= 1.0)
63
- rails (4.1.1)
64
- actionmailer (= 4.1.1)
65
- actionpack (= 4.1.1)
66
- actionview (= 4.1.1)
67
- activemodel (= 4.1.1)
68
- activerecord (= 4.1.1)
69
- activesupport (= 4.1.1)
70
- bundler (>= 1.3.0, < 2.0)
71
- railties (= 4.1.1)
72
- sprockets-rails (~> 2.0)
73
- railties (4.1.1)
74
- actionpack (= 4.1.1)
75
- activesupport (= 4.1.1)
76
- rake (>= 0.8.7)
77
- thor (>= 0.18.1, < 2.0)
78
- rake (10.3.2)
79
- rspec (2.14.1)
80
- rspec-core (~> 2.14.0)
81
- rspec-expectations (~> 2.14.0)
82
- rspec-mocks (~> 2.14.0)
83
- rspec-core (2.14.8)
84
- rspec-expectations (2.14.5)
85
- diff-lcs (>= 1.1.3, < 2.0)
86
- rspec-mocks (2.14.6)
87
- ruby-protocol-buffers (1.5.1)
88
- ruby_protobuf (0.4.11)
89
- rubygems-tasks (0.2.4)
90
- slop (3.5.0)
91
- sprockets (2.12.1)
92
- hike (~> 1.2)
93
- multi_json (~> 1.0)
94
- rack (~> 1.0)
95
- tilt (~> 1.1, != 1.3.0)
96
- sprockets-rails (2.1.3)
97
- actionpack (>= 3.0)
98
- activesupport (>= 3.0)
99
- sprockets (~> 2.8)
100
- sqlite3 (1.3.9)
101
- thor (0.19.1)
102
- thread_safe (0.3.3)
103
- tilt (1.4.1)
104
- treetop (1.4.15)
105
- polyglot
106
- polyglot (>= 0.3.1)
107
- tzinfo (1.1.0)
108
- thread_safe (~> 0.1)
109
- yard (0.8.7.4)
110
-
111
- PLATFORMS
112
- ruby
113
-
114
- DEPENDENCIES
115
- appraisal (~> 1.0.0)
116
- ar_protobuf_store!
117
- pry (~> 0.9)
118
- rails (~> 4.1)
119
- rspec (~> 2.4)
120
- ruby-protocol-buffers (~> 1.5)
121
- ruby_protobuf (~> 0.4)
122
- rubygems-tasks (~> 0.2)
123
- sqlite3 (~> 1.3)
124
- yard (~> 0.8)