bigbroda 0.0.7 → 0.1.0.pre

Sign up to get free protection for your applications and to get access to all the features.
Files changed (45) hide show
  1. checksums.yaml +4 -4
  2. data/Appraisals +15 -0
  3. data/Gemfile +1 -0
  4. data/README.md +39 -21
  5. data/Rakefile +5 -2
  6. data/{google_bigquery.gemspec → bigbroda.gemspec} +2 -2
  7. data/gemfiles/rails_3.gemfile +20 -0
  8. data/gemfiles/rails_4.0.3.gemfile +20 -0
  9. data/gemfiles/rails_4.0.3.gemfile.lock +176 -0
  10. data/gemfiles/rails_4.1.gemfile +20 -0
  11. data/gemfiles/rails_4.1.gemfile.lock +182 -0
  12. data/gemfiles/rails_4.2.gemfile +20 -0
  13. data/gemfiles/rails_4.2.gemfile.lock +202 -0
  14. data/gemfiles/rails_4.gemfile +20 -0
  15. data/gemfiles/rails_4.gemfile.lock +176 -0
  16. data/lib/active_record/connection_adapters/bigquery_adapter.rb +32 -601
  17. data/lib/active_record/connection_adapters/rails_41.rb +607 -0
  18. data/lib/active_record/connection_adapters/rails_42.rb +628 -0
  19. data/lib/{google_bigquery → bigbroda}/auth.rb +3 -3
  20. data/lib/{google_bigquery → bigbroda}/client.rb +3 -3
  21. data/lib/{google_bigquery → bigbroda}/config.rb +1 -1
  22. data/lib/{google_bigquery → bigbroda}/dataset.rb +23 -23
  23. data/lib/{google_bigquery → bigbroda}/engine.rb +4 -4
  24. data/lib/{google_bigquery → bigbroda}/jobs.rb +28 -28
  25. data/lib/bigbroda/project.rb +16 -0
  26. data/lib/{google_bigquery → bigbroda}/railtie.rb +3 -3
  27. data/lib/{google_bigquery → bigbroda}/table.rb +19 -19
  28. data/lib/{google_bigquery → bigbroda}/table_data.rb +7 -7
  29. data/lib/bigbroda/version.rb +3 -0
  30. data/lib/bigbroda.rb +27 -0
  31. data/lib/generators/{google_bigquery → bigbroda}/install/install_generator.rb +2 -2
  32. data/lib/generators/templates/{bigquery.rb.erb → bigbroda.rb.erb} +1 -1
  33. data/spec/dummy/config/application.rb +1 -1
  34. data/spec/functional/adapter/adapter_spec.rb +40 -38
  35. data/spec/functional/auth_spec.rb +3 -3
  36. data/spec/functional/config_spec.rb +5 -5
  37. data/spec/functional/dataset_spec.rb +19 -19
  38. data/spec/functional/project_spec.rb +4 -4
  39. data/spec/functional/table_data_spec.rb +13 -13
  40. data/spec/functional/table_spec.rb +30 -30
  41. data/spec/spec_helper.rb +2 -2
  42. metadata +32 -20
  43. data/lib/google_bigquery/project.rb +0 -16
  44. data/lib/google_bigquery/version.rb +0 -3
  45. data/lib/google_bigquery.rb +0 -27
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ee5bfec85d610513c98a0859842ce00827fc6447
4
- data.tar.gz: 5ac1a4183d960946834461d5baa585b4510e1e1e
3
+ metadata.gz: 30ae436ef0074519a2634dda8e3e2e6324df1ac6
4
+ data.tar.gz: 186f377356cac61af11cd320d874dcb789e7abb4
5
5
  SHA512:
6
- metadata.gz: 930b75e37fd5402f3468651d2d2f3574ee82675fd952290c8a6bc613df221c60eae84c69361d1a5ff216a1f8d333545c5aea35f5e2cd377ff6acd5dde55090dc
7
- data.tar.gz: bda1e4134eac5eeb36be1ed4ed9e7b47a0e9d2384ee3bcaf8b3778afe7bd1ec02485215fc36d7c4abb579f83913989e200f935ff429571b6f6369d4366812fb4
6
+ metadata.gz: 7a9a530c0563e30dcbb5c823dea3064cd99630e055b1a8af7012be084716ceefb65465493097d8a231e06ad8275f87fa90e5f121798f16c99e911df74aad4b92
7
+ data.tar.gz: 18e881b5e9437851ceb8e8c4557b43806045b85bd14a4808c228193dc215153528cd9b3331e286020502f77cf27157812f311c92983ca3c9a66a36c15cb63420
data/Appraisals ADDED
@@ -0,0 +1,15 @@
1
+ appraise "rails-4" do
2
+ gem "rails", "4.0.0"
3
+ end
4
+
5
+ appraise "rails-4.0.3" do
6
+ gem "rails", "4.0.3"
7
+ end
8
+
9
+ appraise "rails-4.1" do
10
+ gem "rails", "4.1.0"
11
+ end
12
+
13
+ appraise "rails-4.2" do
14
+ gem "rails", "4.2.0"
15
+ end
data/Gemfile CHANGED
@@ -9,6 +9,7 @@ gem "pry"
9
9
  gem 'pry-remote'
10
10
  gem 'pry-nav'
11
11
  gem 'sqlite3'
12
+ gem "appraisal"
12
13
 
13
14
  group :test do
14
15
  gem "rspec"
data/README.md CHANGED
@@ -15,22 +15,24 @@ So, use BigQuery as an OLAP (Online Analytical Processing) service, not as OLTP
15
15
 
16
16
  ## Installation
17
17
 
18
- Add 'google_bigquery' to your application's Gemfile or install it yourself as:
18
+ Add 'bigbroda' to your application's Gemfile or install it yourself as:
19
19
 
20
20
  $ gem install bigbroda
21
21
 
22
22
  ## Rails / ActiveRecord:
23
23
 
24
- This gem supports ActiveRecord >= 4
24
+ This gem supports ActiveRecord 4.0 / 4.1.
25
+
26
+ Support for 4.2 is on the way!.
25
27
 
26
28
  #### Configure GoogleBigQuery:
27
29
 
28
- rails g google_bigquery:install
30
+ rails g bigbroda:install
29
31
 
30
32
  Or generate a file in config/initializers/bigquery.rb with the following contents:
31
33
 
32
34
  ```ruby
33
- GoogleBigquery::Config.setup do |config|
35
+ BigBroda::Config.setup do |config|
34
36
  config.pass_phrase = ["pass_phrase"]
35
37
  config.key_file = ["key_file"]
36
38
  config.scope = ["scope"]
@@ -210,16 +212,17 @@ Note:
210
212
  + Big query does not provide a way to update columns nor delete, so update_column, or remove_column migration are cancelled with an catched exception.
211
213
  + Also the schema_migrations table is not created in DB, is created as a json file in db/schema_migrations.json instead. Be sure to add the file in your version control.
212
214
 
215
+
213
216
  ## Standalone Client:
214
217
 
215
218
  ### Configuration setup:
216
219
 
217
220
  https://developers.google.com/bigquery/docs/authorization
218
221
 
219
- Configure GoogleBigquery client:
222
+ Configure BigBroda client:
220
223
 
221
224
  ```ruby
222
- GoogleBigquery::Config.setup do |config|
225
+ BigBroda::Config.setup do |config|
223
226
  config.pass_phrase = "notasecret"
224
227
  config.key_file = /location/to_your/key_file.p12
225
228
  config.scope = "https://www.googleapis.com/auth/bigquery"
@@ -233,7 +236,7 @@ retries indicates the number of times to retry on recoverable errors (no retries
233
236
  And authorize client:
234
237
 
235
238
  ```ruby
236
- @auth = GoogleBigquery::Auth.new
239
+ @auth = BigBroda::Auth.new
237
240
  @auth.authorize
238
241
  ```
239
242
  Then you are ready to go!
@@ -244,7 +247,7 @@ retries indicates the number of times to retry on recoverable errors (no retries
244
247
  https://developers.google.com/bigquery/docs/reference/v2/projects
245
248
 
246
249
  ```ruby
247
- GoogleBigquery::Project.list["projects"]
250
+ BigBroda::Project.list["projects"]
248
251
  ```
249
252
 
250
253
  ### Jobs
@@ -258,13 +261,13 @@ BigQuery can export up to 1 GB of data per file. If you plan to export more than
258
261
  Note: it may take a while.
259
262
 
260
263
  ```ruby
261
- GoogleBigquery::Jobs.export(project_id, dataset_id, table_id, bucket_location)
264
+ BigBroda::Jobs.export(project_id, dataset_id, table_id, bucket_location)
262
265
  ```
263
266
 
264
267
  #### Query
265
268
 
266
269
  ```ruby
267
- GoogleBigquery::Jobs.query(@project, {"query"=> "SELECT * FROM [#{@dataset_id}.#{@table_name}] LIMIT 1000" })
270
+ BigBroda::Jobs.query(@project, {"query"=> "SELECT * FROM [#{@dataset_id}.#{@table_name}] LIMIT 1000" })
268
271
  ```
269
272
 
270
273
 
@@ -275,19 +278,19 @@ GoogleBigquery::Jobs.query(@project, {"query"=> "SELECT * FROM [#{@dataset_id}.#
275
278
  #### List:
276
279
 
277
280
  ```ruby
278
- GoogleBigquery::Dataset.list(@project_id)
281
+ BigBroda::Dataset.list(@project_id)
279
282
  ```
280
283
 
281
284
  #### Create/Insert:
282
285
 
283
286
  ```ruby
284
- GoogleBigquery::Dataset.create(@project, {"datasetReference"=> { "datasetId" => @dataset_id }} )
287
+ BigBroda::Dataset.create(@project, {"datasetReference"=> { "datasetId" => @dataset_id }} )
285
288
  ```
286
289
 
287
290
  #### Delete:
288
291
 
289
292
  ```ruby
290
- GoogleBigquery::Dataset.delete(@project, @dataset_id }} )
293
+ BigBroda::Dataset.delete(@project, @dataset_id }} )
291
294
  ```
292
295
 
293
296
  #### Update/Patch:
@@ -295,7 +298,7 @@ GoogleBigquery::Dataset.delete(@project, @dataset_id }} )
295
298
  Updates information in an existing dataset. The update method replaces the entire dataset resource, whereas the patch method only replaces fields that are provided in the submitted dataset resource.
296
299
 
297
300
  ```ruby
298
- GoogleBigquery::Dataset.update(@project, @dataset_id,
301
+ BigBroda::Dataset.update(@project, @dataset_id,
299
302
  {"datasetReference"=> {
300
303
  "datasetId" =>@dataset_id },
301
304
  "description"=> "foobar"} )
@@ -305,7 +308,7 @@ GoogleBigquery::Dataset.update(@project, @dataset_id,
305
308
  Updates information in an existing dataset. The update method replaces the entire dataset resource, whereas the patch method only replaces fields that are provided in the submitted dataset resource. This method supports patch semantics.
306
309
 
307
310
  ```ruby
308
- GoogleBigquery::Dataset.patch(@project, @dataset_id,
311
+ BigBroda::Dataset.patch(@project, @dataset_id,
309
312
  {"datasetReference"=> {
310
313
  "datasetId" =>@dataset_id },
311
314
  "description"=> "foobar"} )
@@ -331,13 +334,13 @@ GoogleBigquery::Dataset.patch(@project, @dataset_id,
331
334
  ]
332
335
  }
333
336
 
334
- GoogleBigquery::Table.create(@project, @dataset_id, @table_body
337
+ BigBroda::Table.create(@project, @dataset_id, @table_body
335
338
  ```
336
339
 
337
340
  #### Update:
338
341
 
339
342
  ```ruby
340
- GoogleBigquery::Table.update(@project, @dataset_id, @table_name,
343
+ BigBroda::Table.update(@project, @dataset_id, @table_name,
341
344
  {"tableReference"=> {
342
345
  "projectId" => @project, "datasetId" =>@dataset_id, "tableId" => @table_name },
343
346
  "description"=> "foobar"} )
@@ -346,13 +349,13 @@ GoogleBigquery::Table.create(@project, @dataset_id, @table_body
346
349
  #### Delete:
347
350
 
348
351
  ```ruby
349
- GoogleBigquery::Table.delete(@project, @dataset_id, @table_name )
352
+ BigBroda::Table.delete(@project, @dataset_id, @table_name )
350
353
  ```
351
354
 
352
355
  #### List:
353
356
 
354
357
  ```ruby
355
- GoogleBigquery::Table.list(@project, @dataset_id )
358
+ BigBroda::Table.list(@project, @dataset_id )
356
359
  ```
357
360
 
358
361
  ### Table Data
@@ -373,14 +376,29 @@ Streaming data into BigQuery is free for an introductory period until January 1s
373
376
  }
374
377
  ]}
375
378
 
376
- GoogleBigquery::TableData.create(@project, @name, @table_name , @rows )
379
+ BigBroda::TableData.create(@project, @name, @table_name , @rows )
377
380
  ```
378
381
 
379
382
 
380
383
  #### List
381
384
 
382
385
  ```ruby
383
- GoogleBigquery::TableData.list(@project, @dataset_id, @table_name)
386
+ BigBroda::TableData.list(@project, @dataset_id, @table_name)
387
+ ```
388
+
389
+ ## Testing:
390
+
391
+ ### Install deps
392
+
393
+ `appraisal install`
394
+
395
+ ### Run rspec suite for versions:
396
+
397
+ ```
398
+ appraisal rails-3 rake spec
399
+ appraisal rails-4.0.3 rake spec
400
+ appraisal rails-4.1 rake spec
401
+ appraisal rails-4.2 rake spec
384
402
  ```
385
403
 
386
404
 
data/Rakefile CHANGED
@@ -1,12 +1,15 @@
1
+ #require "rubygems"
2
+ #require "bundler/setup"
3
+
1
4
  require "bundler/gem_tasks"
2
5
 
3
- require 'rspec/core/rake_task'
6
+ require 'rspec/core/rake_task'
4
7
 
5
8
  desc 'Default: run unit specs.'
6
9
  task :default => :spec
7
10
 
8
11
  desc 'Test the BQ plugin.'
9
12
  RSpec::Core::RakeTask.new('spec') do |t|
10
- t.pattern = FileList['spec/**/*_spec.rb']
13
+ t.pattern = FileList['spec/**/*_spec.rb']
11
14
  end
12
15
 
@@ -1,11 +1,11 @@
1
1
  # coding: utf-8
2
2
  lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'google_bigquery/version'
4
+ require 'bigbroda/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "bigbroda"
8
- spec.version = GoogleBigquery::VERSION
8
+ spec.version = BigBroda::VERSION
9
9
  spec.authors = ["miguel michelson"]
10
10
  spec.email = ["miguelmichelson@gmail.com"]
11
11
  spec.description = "GoogleBigQuery ActiveRecord Adapter & standalone API client"
@@ -0,0 +1,20 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "certified"
6
+ gem "debugger", :platform => :ruby_19
7
+ gem "pry"
8
+ gem "pry-remote"
9
+ gem "pry-nav"
10
+ gem "sqlite3"
11
+ gem "appraisal"
12
+ gem "rails", "3.2.14"
13
+
14
+ group :test do
15
+ gem "rspec"
16
+ gem "vcr"
17
+ gem "webmock", "1.16.0", :require => false
18
+ end
19
+
20
+ gemspec :path => "../"
@@ -0,0 +1,20 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "certified"
6
+ gem "debugger", :platform => :ruby_19
7
+ gem "pry"
8
+ gem "pry-remote"
9
+ gem "pry-nav"
10
+ gem "sqlite3"
11
+ gem "appraisal"
12
+ gem "rails", "4.0.3"
13
+
14
+ group :test do
15
+ gem "rspec"
16
+ gem "vcr"
17
+ gem "webmock", "1.16.0", :require => false
18
+ end
19
+
20
+ gemspec :path => "../"
@@ -0,0 +1,176 @@
1
+ PATH
2
+ remote: ../
3
+ specs:
4
+ bigbroda (0.1.0.pre)
5
+ activerecord
6
+ activesupport
7
+ google-api-client
8
+ hash-deep-merge
9
+
10
+ GEM
11
+ remote: https://rubygems.org/
12
+ specs:
13
+ actionmailer (4.0.3)
14
+ actionpack (= 4.0.3)
15
+ mail (~> 2.5.4)
16
+ actionpack (4.0.3)
17
+ activesupport (= 4.0.3)
18
+ builder (~> 3.1.0)
19
+ erubis (~> 2.7.0)
20
+ rack (~> 1.5.2)
21
+ rack-test (~> 0.6.2)
22
+ activemodel (4.0.3)
23
+ activesupport (= 4.0.3)
24
+ builder (~> 3.1.0)
25
+ activerecord (4.0.3)
26
+ activemodel (= 4.0.3)
27
+ activerecord-deprecated_finders (~> 1.0.2)
28
+ activesupport (= 4.0.3)
29
+ arel (~> 4.0.0)
30
+ activerecord-deprecated_finders (1.0.3)
31
+ activesupport (4.0.3)
32
+ i18n (~> 0.6, >= 0.6.4)
33
+ minitest (~> 4.2)
34
+ multi_json (~> 1.3)
35
+ thread_safe (~> 0.1)
36
+ tzinfo (~> 0.3.37)
37
+ addressable (2.3.7)
38
+ appraisal (1.0.2)
39
+ bundler
40
+ rake
41
+ thor (>= 0.14.0)
42
+ arel (4.0.2)
43
+ autoparse (0.3.3)
44
+ addressable (>= 2.3.1)
45
+ extlib (>= 0.9.15)
46
+ multi_json (>= 1.0.0)
47
+ builder (3.1.4)
48
+ certified (1.0.0)
49
+ coderay (1.1.0)
50
+ columnize (0.3.6)
51
+ crack (0.4.2)
52
+ safe_yaml (~> 1.0.0)
53
+ debugger (1.6.5)
54
+ columnize (>= 0.3.1)
55
+ debugger-linecache (~> 1.2.0)
56
+ debugger-ruby_core_source (~> 1.3.1)
57
+ debugger-linecache (1.2.0)
58
+ debugger-ruby_core_source (1.3.1)
59
+ diff-lcs (1.2.5)
60
+ erubis (2.7.0)
61
+ extlib (0.9.16)
62
+ faraday (0.9.1)
63
+ multipart-post (>= 1.2, < 3)
64
+ google-api-client (0.8.2)
65
+ activesupport (>= 3.2)
66
+ addressable (~> 2.3)
67
+ autoparse (~> 0.3)
68
+ extlib (~> 0.9)
69
+ faraday (~> 0.9)
70
+ launchy (~> 2.4)
71
+ multi_json (~> 1.10)
72
+ retriable (~> 1.4)
73
+ signet (~> 0.6)
74
+ hash-deep-merge (0.1.1)
75
+ hike (1.2.3)
76
+ i18n (0.7.0)
77
+ jwt (1.4.1)
78
+ launchy (2.4.3)
79
+ addressable (~> 2.3)
80
+ mail (2.5.4)
81
+ mime-types (~> 1.16)
82
+ treetop (~> 1.4.8)
83
+ method_source (0.8.2)
84
+ mime-types (1.25.1)
85
+ minitest (4.7.5)
86
+ multi_json (1.10.1)
87
+ multipart-post (2.0.0)
88
+ polyglot (0.3.5)
89
+ pry (0.10.1)
90
+ coderay (~> 1.1.0)
91
+ method_source (~> 0.8.1)
92
+ slop (~> 3.4)
93
+ pry-nav (0.2.4)
94
+ pry (>= 0.9.10, < 0.11.0)
95
+ pry-remote (0.1.8)
96
+ pry (~> 0.9)
97
+ slop (~> 3.0)
98
+ rack (1.5.2)
99
+ rack-test (0.6.3)
100
+ rack (>= 1.0)
101
+ rails (4.0.3)
102
+ actionmailer (= 4.0.3)
103
+ actionpack (= 4.0.3)
104
+ activerecord (= 4.0.3)
105
+ activesupport (= 4.0.3)
106
+ bundler (>= 1.3.0, < 2.0)
107
+ railties (= 4.0.3)
108
+ sprockets-rails (~> 2.0.0)
109
+ railties (4.0.3)
110
+ actionpack (= 4.0.3)
111
+ activesupport (= 4.0.3)
112
+ rake (>= 0.8.7)
113
+ thor (>= 0.18.1, < 2.0)
114
+ rake (10.4.2)
115
+ retriable (1.4.1)
116
+ rspec (3.2.0)
117
+ rspec-core (~> 3.2.0)
118
+ rspec-expectations (~> 3.2.0)
119
+ rspec-mocks (~> 3.2.0)
120
+ rspec-core (3.2.1)
121
+ rspec-support (~> 3.2.0)
122
+ rspec-expectations (3.2.0)
123
+ diff-lcs (>= 1.2.0, < 2.0)
124
+ rspec-support (~> 3.2.0)
125
+ rspec-mocks (3.2.1)
126
+ diff-lcs (>= 1.2.0, < 2.0)
127
+ rspec-support (~> 3.2.0)
128
+ rspec-support (3.2.2)
129
+ safe_yaml (1.0.4)
130
+ signet (0.6.0)
131
+ addressable (~> 2.3)
132
+ extlib (~> 0.9)
133
+ faraday (~> 0.9)
134
+ jwt (~> 1.0)
135
+ multi_json (~> 1.10)
136
+ slop (3.6.0)
137
+ sprockets (2.12.3)
138
+ hike (~> 1.2)
139
+ multi_json (~> 1.0)
140
+ rack (~> 1.0)
141
+ tilt (~> 1.1, != 1.3.0)
142
+ sprockets-rails (2.0.1)
143
+ actionpack (>= 3.0)
144
+ activesupport (>= 3.0)
145
+ sprockets (~> 2.8)
146
+ sqlite3 (1.3.10)
147
+ thor (0.19.1)
148
+ thread_safe (0.3.4)
149
+ tilt (1.4.1)
150
+ treetop (1.4.15)
151
+ polyglot
152
+ polyglot (>= 0.3.1)
153
+ tzinfo (0.3.43)
154
+ vcr (2.9.3)
155
+ webmock (1.16.0)
156
+ addressable (>= 2.2.7)
157
+ crack (>= 0.3.2)
158
+
159
+ PLATFORMS
160
+ ruby
161
+
162
+ DEPENDENCIES
163
+ appraisal
164
+ bigbroda!
165
+ bundler
166
+ certified
167
+ debugger
168
+ pry
169
+ pry-nav
170
+ pry-remote
171
+ rails (= 4.0.3)
172
+ rake
173
+ rspec
174
+ sqlite3
175
+ vcr
176
+ webmock (= 1.16.0)
@@ -0,0 +1,20 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "certified"
6
+ gem "debugger", :platform => :ruby_19
7
+ gem "pry"
8
+ gem "pry-remote"
9
+ gem "pry-nav"
10
+ gem "sqlite3"
11
+ gem "appraisal"
12
+ gem "rails", "4.1.0"
13
+
14
+ group :test do
15
+ gem "rspec"
16
+ gem "vcr"
17
+ gem "webmock", "1.16.0", :require => false
18
+ end
19
+
20
+ gemspec :path => "../"
@@ -0,0 +1,182 @@
1
+ PATH
2
+ remote: ../
3
+ specs:
4
+ bigbroda (0.1.0.pre)
5
+ activerecord
6
+ activesupport
7
+ google-api-client
8
+ hash-deep-merge
9
+
10
+ GEM
11
+ remote: https://rubygems.org/
12
+ specs:
13
+ actionmailer (4.1.0)
14
+ actionpack (= 4.1.0)
15
+ actionview (= 4.1.0)
16
+ mail (~> 2.5.4)
17
+ actionpack (4.1.0)
18
+ actionview (= 4.1.0)
19
+ activesupport (= 4.1.0)
20
+ rack (~> 1.5.2)
21
+ rack-test (~> 0.6.2)
22
+ actionview (4.1.0)
23
+ activesupport (= 4.1.0)
24
+ builder (~> 3.1)
25
+ erubis (~> 2.7.0)
26
+ activemodel (4.1.0)
27
+ activesupport (= 4.1.0)
28
+ builder (~> 3.1)
29
+ activerecord (4.1.0)
30
+ activemodel (= 4.1.0)
31
+ activesupport (= 4.1.0)
32
+ arel (~> 5.0.0)
33
+ activesupport (4.1.0)
34
+ i18n (~> 0.6, >= 0.6.9)
35
+ json (~> 1.7, >= 1.7.7)
36
+ minitest (~> 5.1)
37
+ thread_safe (~> 0.1)
38
+ tzinfo (~> 1.1)
39
+ addressable (2.3.7)
40
+ appraisal (1.0.2)
41
+ bundler
42
+ rake
43
+ thor (>= 0.14.0)
44
+ arel (5.0.1.20140414130214)
45
+ autoparse (0.3.3)
46
+ addressable (>= 2.3.1)
47
+ extlib (>= 0.9.15)
48
+ multi_json (>= 1.0.0)
49
+ builder (3.2.2)
50
+ certified (1.0.0)
51
+ coderay (1.1.0)
52
+ columnize (0.9.0)
53
+ crack (0.4.2)
54
+ safe_yaml (~> 1.0.0)
55
+ debugger (1.6.8)
56
+ columnize (>= 0.3.1)
57
+ debugger-linecache (~> 1.2.0)
58
+ debugger-ruby_core_source (~> 1.3.5)
59
+ debugger-linecache (1.2.0)
60
+ debugger-ruby_core_source (1.3.8)
61
+ diff-lcs (1.2.5)
62
+ erubis (2.7.0)
63
+ extlib (0.9.16)
64
+ faraday (0.9.1)
65
+ multipart-post (>= 1.2, < 3)
66
+ google-api-client (0.8.2)
67
+ activesupport (>= 3.2)
68
+ addressable (~> 2.3)
69
+ autoparse (~> 0.3)
70
+ extlib (~> 0.9)
71
+ faraday (~> 0.9)
72
+ launchy (~> 2.4)
73
+ multi_json (~> 1.10)
74
+ retriable (~> 1.4)
75
+ signet (~> 0.6)
76
+ hash-deep-merge (0.1.1)
77
+ hike (1.2.3)
78
+ i18n (0.7.0)
79
+ json (1.8.2)
80
+ jwt (1.3.0)
81
+ launchy (2.4.3)
82
+ addressable (~> 2.3)
83
+ mail (2.5.4)
84
+ mime-types (~> 1.16)
85
+ treetop (~> 1.4.8)
86
+ method_source (0.8.2)
87
+ mime-types (1.25.1)
88
+ minitest (5.5.1)
89
+ multi_json (1.10.1)
90
+ multipart-post (2.0.0)
91
+ polyglot (0.3.5)
92
+ pry (0.10.1)
93
+ coderay (~> 1.1.0)
94
+ method_source (~> 0.8.1)
95
+ slop (~> 3.4)
96
+ pry-nav (0.2.4)
97
+ pry (>= 0.9.10, < 0.11.0)
98
+ pry-remote (0.1.8)
99
+ pry (~> 0.9)
100
+ slop (~> 3.0)
101
+ rack (1.5.2)
102
+ rack-test (0.6.3)
103
+ rack (>= 1.0)
104
+ rails (4.1.0)
105
+ actionmailer (= 4.1.0)
106
+ actionpack (= 4.1.0)
107
+ actionview (= 4.1.0)
108
+ activemodel (= 4.1.0)
109
+ activerecord (= 4.1.0)
110
+ activesupport (= 4.1.0)
111
+ bundler (>= 1.3.0, < 2.0)
112
+ railties (= 4.1.0)
113
+ sprockets-rails (~> 2.0)
114
+ railties (4.1.0)
115
+ actionpack (= 4.1.0)
116
+ activesupport (= 4.1.0)
117
+ rake (>= 0.8.7)
118
+ thor (>= 0.18.1, < 2.0)
119
+ rake (10.4.2)
120
+ retriable (1.4.1)
121
+ rspec (3.2.0)
122
+ rspec-core (~> 3.2.0)
123
+ rspec-expectations (~> 3.2.0)
124
+ rspec-mocks (~> 3.2.0)
125
+ rspec-core (3.2.1)
126
+ rspec-support (~> 3.2.0)
127
+ rspec-expectations (3.2.0)
128
+ diff-lcs (>= 1.2.0, < 2.0)
129
+ rspec-support (~> 3.2.0)
130
+ rspec-mocks (3.2.1)
131
+ diff-lcs (>= 1.2.0, < 2.0)
132
+ rspec-support (~> 3.2.0)
133
+ rspec-support (3.2.2)
134
+ safe_yaml (1.0.4)
135
+ signet (0.6.0)
136
+ addressable (~> 2.3)
137
+ extlib (~> 0.9)
138
+ faraday (~> 0.9)
139
+ jwt (~> 1.0)
140
+ multi_json (~> 1.10)
141
+ slop (3.6.0)
142
+ sprockets (2.12.3)
143
+ hike (~> 1.2)
144
+ multi_json (~> 1.0)
145
+ rack (~> 1.0)
146
+ tilt (~> 1.1, != 1.3.0)
147
+ sprockets-rails (2.2.4)
148
+ actionpack (>= 3.0)
149
+ activesupport (>= 3.0)
150
+ sprockets (>= 2.8, < 4.0)
151
+ sqlite3 (1.3.10)
152
+ thor (0.19.1)
153
+ thread_safe (0.3.4)
154
+ tilt (1.4.1)
155
+ treetop (1.4.15)
156
+ polyglot
157
+ polyglot (>= 0.3.1)
158
+ tzinfo (1.2.2)
159
+ thread_safe (~> 0.1)
160
+ vcr (2.9.3)
161
+ webmock (1.16.0)
162
+ addressable (>= 2.2.7)
163
+ crack (>= 0.3.2)
164
+
165
+ PLATFORMS
166
+ ruby
167
+
168
+ DEPENDENCIES
169
+ appraisal
170
+ bigbroda!
171
+ bundler
172
+ certified
173
+ debugger
174
+ pry
175
+ pry-nav
176
+ pry-remote
177
+ rails (= 4.1.0)
178
+ rake
179
+ rspec
180
+ sqlite3
181
+ vcr
182
+ webmock (= 1.16.0)
@@ -0,0 +1,20 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "certified"
6
+ gem "debugger", :platform => :ruby_19
7
+ gem "pry"
8
+ gem "pry-remote"
9
+ gem "pry-nav"
10
+ gem "sqlite3"
11
+ gem "appraisal"
12
+ gem "rails", "4.2.0"
13
+
14
+ group :test do
15
+ gem "rspec"
16
+ gem "vcr"
17
+ gem "webmock", "1.16.0", :require => false
18
+ end
19
+
20
+ gemspec :path => "../"