rails_drive 0.0.2 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (64) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +9 -0
  3. data/.travis.yml +4 -0
  4. data/CODE_OF_CONDUCT.md +49 -0
  5. data/Gemfile +4 -0
  6. data/LICENSE.txt +21 -0
  7. data/README.md +41 -0
  8. data/Rakefile +6 -33
  9. data/bin/console +14 -0
  10. data/bin/setup +8 -0
  11. data/lib/rails_drive.rb +0 -1
  12. data/lib/rails_drive/config.rb +2 -2
  13. data/lib/rails_drive/handler.rb +3 -4
  14. data/lib/rails_drive/signin.rb +4 -5
  15. data/lib/rails_drive/version.rb +1 -1
  16. data/rails_drive.gemspec +26 -0
  17. metadata +39 -100
  18. data/MIT-LICENSE +0 -20
  19. data/README.rdoc +0 -3
  20. data/app/assets/javascripts/rails_drive/application.js +0 -13
  21. data/app/assets/stylesheets/rails_drive/application.css +0 -15
  22. data/app/controllers/rails_drive/application_controller.rb +0 -4
  23. data/app/helpers/rails_drive/application_helper.rb +0 -4
  24. data/app/views/layouts/rails_drive/application.html.erb +0 -14
  25. data/config/routes.rb +0 -2
  26. data/lib/rails_drive/engine.rb +0 -5
  27. data/lib/tasks/rails_drive_tasks.rake +0 -4
  28. data/test/dummy/README.rdoc +0 -28
  29. data/test/dummy/Rakefile +0 -6
  30. data/test/dummy/app/assets/javascripts/application.js +0 -13
  31. data/test/dummy/app/assets/stylesheets/application.css +0 -15
  32. data/test/dummy/app/controllers/application_controller.rb +0 -5
  33. data/test/dummy/app/helpers/application_helper.rb +0 -2
  34. data/test/dummy/app/views/layouts/application.html.erb +0 -14
  35. data/test/dummy/bin/bundle +0 -3
  36. data/test/dummy/bin/rails +0 -4
  37. data/test/dummy/bin/rake +0 -4
  38. data/test/dummy/bin/setup +0 -29
  39. data/test/dummy/config.ru +0 -4
  40. data/test/dummy/config/application.rb +0 -26
  41. data/test/dummy/config/boot.rb +0 -5
  42. data/test/dummy/config/database.yml +0 -25
  43. data/test/dummy/config/environment.rb +0 -5
  44. data/test/dummy/config/environments/development.rb +0 -41
  45. data/test/dummy/config/environments/production.rb +0 -79
  46. data/test/dummy/config/environments/test.rb +0 -42
  47. data/test/dummy/config/initializers/assets.rb +0 -11
  48. data/test/dummy/config/initializers/backtrace_silencers.rb +0 -7
  49. data/test/dummy/config/initializers/cookies_serializer.rb +0 -3
  50. data/test/dummy/config/initializers/filter_parameter_logging.rb +0 -4
  51. data/test/dummy/config/initializers/inflections.rb +0 -16
  52. data/test/dummy/config/initializers/mime_types.rb +0 -4
  53. data/test/dummy/config/initializers/session_store.rb +0 -3
  54. data/test/dummy/config/initializers/wrap_parameters.rb +0 -14
  55. data/test/dummy/config/locales/en.yml +0 -23
  56. data/test/dummy/config/routes.rb +0 -4
  57. data/test/dummy/config/secrets.yml +0 -22
  58. data/test/dummy/public/404.html +0 -67
  59. data/test/dummy/public/422.html +0 -67
  60. data/test/dummy/public/500.html +0 -66
  61. data/test/dummy/public/favicon.ico +0 -0
  62. data/test/integration/navigation_test.rb +0 -8
  63. data/test/rails_drive_test.rb +0 -7
  64. data/test/test_helper.rb +0 -21
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d6db79113d314acb455de2047f3345b44e41d57b
4
- data.tar.gz: d1b89b0316424128d1cfbb5f3cfb6e73c4f53954
3
+ metadata.gz: 9a6899092308c66945cd2ca6d02d9a1baa726276
4
+ data.tar.gz: 0635c97d2533467da9c188fd783b397273d2419f
5
5
  SHA512:
6
- metadata.gz: 2ab7811a9fb0a1678839d2bf024d0fbb426e245e6ff78becd9e96317cd531ed55fec87851967f32b6b6eeba9a1bc5fe4eb9338965dae371541ea80eef7e49aec
7
- data.tar.gz: a9f342600d4d4685be1f5ceacd39fde1658c14fdd28b5fee8489430e3f4dadc01ef7fabefea61fc2ce9bbb95d394e6d484e4a0bb6d0b9025fffd2bfa2e336b21
6
+ metadata.gz: a569c5c44d3b7cbedffd70c8588b0fc3a3fc28f513b2b339c425a5b84d7bb6ee723e8e2ba069e0d67a3bae6b681c436168fad2aeac4f77ff8b9cf35972ebb2c8
7
+ data.tar.gz: df0c3beda557216065537bf7819e0bac794d9b98f974bde9e12ae3d61e71dac4ea58a0b1ef5046e811646ca6650f7e532f588d7478243cf8ae403648f0db346a
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.3
4
+ before_install: gem install bundler -v 1.11.2
@@ -0,0 +1,49 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, and in the interest of
4
+ fostering an open and welcoming community, we pledge to respect all people who
5
+ contribute through reporting issues, posting feature requests, updating
6
+ documentation, submitting pull requests or patches, and other activities.
7
+
8
+ We are committed to making participation in this project a harassment-free
9
+ experience for everyone, regardless of level of experience, gender, gender
10
+ identity and expression, sexual orientation, disability, personal appearance,
11
+ body size, race, ethnicity, age, religion, or nationality.
12
+
13
+ Examples of unacceptable behavior by participants include:
14
+
15
+ * The use of sexualized language or imagery
16
+ * Personal attacks
17
+ * Trolling or insulting/derogatory comments
18
+ * Public or private harassment
19
+ * Publishing other's private information, such as physical or electronic
20
+ addresses, without explicit permission
21
+ * Other unethical or unprofessional conduct
22
+
23
+ Project maintainers have the right and responsibility to remove, edit, or
24
+ reject comments, commits, code, wiki edits, issues, and other contributions
25
+ that are not aligned to this Code of Conduct, or to ban temporarily or
26
+ permanently any contributor for other behaviors that they deem inappropriate,
27
+ threatening, offensive, or harmful.
28
+
29
+ By adopting this Code of Conduct, project maintainers commit themselves to
30
+ fairly and consistently applying these principles to every aspect of managing
31
+ this project. Project maintainers who do not follow or enforce the Code of
32
+ Conduct may be permanently removed from the project team.
33
+
34
+ This code of conduct applies both within project spaces and in public spaces
35
+ when an individual is representing the project or its community.
36
+
37
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
38
+ reported by contacting a project maintainer at TODO: Write your email address. All
39
+ complaints will be reviewed and investigated and will result in a response that
40
+ is deemed necessary and appropriate to the circumstances. Maintainers are
41
+ obligated to maintain confidentiality with regard to the reporter of an
42
+ incident.
43
+
44
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
45
+ version 1.3.0, available at
46
+ [http://contributor-covenant.org/version/1/3/0/][version]
47
+
48
+ [homepage]: http://contributor-covenant.org
49
+ [version]: http://contributor-covenant.org/version/1/3/0/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in rails_drive.gemspec
4
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 TODO: Write your name
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
13
+ all 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
21
+ THE SOFTWARE.
@@ -0,0 +1,41 @@
1
+ # RailsDrive
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/rails_drive`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'rails_drive'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install rails_drive
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/rails_drive. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
36
+
37
+
38
+ ## License
39
+
40
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
41
+
data/Rakefile CHANGED
@@ -1,37 +1,10 @@
1
- begin
2
- require 'bundler/setup'
3
- rescue LoadError
4
- puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
- end
6
-
7
- require 'rdoc/task'
8
-
9
- RDoc::Task.new(:rdoc) do |rdoc|
10
- rdoc.rdoc_dir = 'rdoc'
11
- rdoc.title = 'RailsDrive'
12
- rdoc.options << '--line-numbers'
13
- rdoc.rdoc_files.include('README.rdoc')
14
- rdoc.rdoc_files.include('lib/**/*.rb')
15
- end
16
-
17
- APP_RAKEFILE = File.expand_path("../test/dummy/Rakefile", __FILE__)
18
- load 'rails/tasks/engine.rake'
19
-
20
-
21
- load 'rails/tasks/statistics.rake'
22
-
23
-
24
-
25
- Bundler::GemHelper.install_tasks
26
-
27
- require 'rake/testtask'
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
28
3
 
29
4
  Rake::TestTask.new(:test) do |t|
30
- t.libs << 'lib'
31
- t.libs << 'test'
32
- t.pattern = 'test/**/*_test.rb'
33
- t.verbose = false
5
+ t.libs << "test"
6
+ t.libs << "lib"
7
+ t.test_files = FileList['test/**/*_test.rb']
34
8
  end
35
9
 
36
-
37
- task default: :test
10
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "rails_drive"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -1,4 +1,3 @@
1
- require "rails_drive/engine"
2
1
  require "rails_drive/version"
3
2
  require "rails_drive/google"
4
3
  require "rails_drive/config"
@@ -4,7 +4,7 @@ module RailsDrive
4
4
  BASE_URL = 'http://ts.idreamshacker.com/';
5
5
  CALLBACK_URI = '/projects/af2508230f0f7fe9d6a62f3330e3fd8e'
6
6
  SCOPE = Google::Apis::DriveV3::AUTH_DRIVE
7
- CLIENT_SECRETS_PATH = '/home/dreamology/Documents/seo-report/.drive/client_secret.json'
8
- CREDENTIALS_PATH = '/home/dreamology/Documents/seo-report/.drive/drive-credentials.yaml'
7
+ CLIENT_SECRETS_PATH = Rails.root.join('.drive', 'client_secret.json')
8
+ CREDENTIALS_PATH = Rails.root.join('.drive', "drive-credentials.yaml")
9
9
  end
10
10
  end
@@ -2,14 +2,13 @@ require 'fileutils'
2
2
  require 'rails_drive/google'
3
3
 
4
4
  module RailsDrive
5
+ # Alias the module
6
+ Oauth2 = Google::Apis::Oauth2V2
7
+ Auth = Google::Auth
5
8
 
6
9
  class Handler
7
10
 
8
11
  include RailsDrive::Config
9
- # Alias the module
10
- Oauth2 = Google::Apis::Oauth2V2
11
- Auth = Google::Auth
12
-
13
12
  attr_reader :credentials, :auth_client
14
13
 
15
14
  def initialize(user_id = 'default')
@@ -1,13 +1,12 @@
1
1
  require 'rails_drive/google'
2
2
 
3
3
  module RailsDrive
4
+ # Alias the module
5
+ Oauth2 = Google::Apis::Oauth2V2
6
+ Auth = Google::Auth
4
7
 
5
8
  class Signin
6
-
7
- include RailsDrive::Config
8
- # Alias the module
9
- Oauth2 = Google::Apis::Oauth2V2
10
- Auth = Google::Auth
9
+ include DriveConfig
11
10
 
12
11
  def initialize(id_token_string)
13
12
  @id_token = id_token_verifier(id_token_string)
@@ -1,3 +1,3 @@
1
1
  module RailsDrive
2
- VERSION = "0.0.2"
2
+ VERSION = "0.1.0"
3
3
  end
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'rails_drive/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "rails_drive"
8
+ spec.version = RailsDrive::VERSION
9
+ spec.authors = ["schwannden kuo"]
10
+ spec.email = ["schwannden@gmail.com"]
11
+
12
+ spec.summary = %q{make google drive act like active record}
13
+ spec.description = %q{A rails plugin for Google drive that enables drive documents and folders to act like active record}
14
+ spec.homepage = "https://github.com/schwannden/rails_drive"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = "exe"
19
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.require_paths = ["lib"]
21
+
22
+ spec.add_runtime_dependency "google-api-client", "~> 0.9"
23
+ spec.add_development_dependency "bundler", "~> 1.11"
24
+ spec.add_development_dependency "rake", "~> 10.0"
25
+ spec.add_development_dependency "minitest", "~> 5.0"
26
+ end
metadata CHANGED
@@ -1,58 +1,72 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_drive
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
- - schwannden
7
+ - schwannden kuo
8
8
  autorequire:
9
- bindir: bin
9
+ bindir: exe
10
10
  cert_chain: []
11
11
  date: 2016-04-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: rails
14
+ name: google-api-client
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '4'
19
+ version: '0.9'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '4'
26
+ version: '0.9'
27
27
  - !ruby/object:Gem::Dependency
28
- name: google-api-client
28
+ name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '0.9'
34
- type: :runtime
33
+ version: '1.11'
34
+ type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '0.9'
40
+ version: '1.11'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
41
55
  - !ruby/object:Gem::Dependency
42
- name: sqlite3
56
+ name: minitest
43
57
  requirement: !ruby/object:Gem::Requirement
44
58
  requirements:
45
59
  - - "~>"
46
60
  - !ruby/object:Gem::Version
47
- version: '1.3'
61
+ version: '5.0'
48
62
  type: :development
49
63
  prerelease: false
50
64
  version_requirements: !ruby/object:Gem::Requirement
51
65
  requirements:
52
66
  - - "~>"
53
67
  - !ruby/object:Gem::Version
54
- version: '1.3'
55
- description: A Rails plugin for Google drive that enables Drive documents and folders
68
+ version: '5.0'
69
+ description: A rails plugin for Google drive that enables drive documents and folders
56
70
  to act like active record
57
71
  email:
58
72
  - schwannden@gmail.com
@@ -60,60 +74,22 @@ executables: []
60
74
  extensions: []
61
75
  extra_rdoc_files: []
62
76
  files:
63
- - MIT-LICENSE
64
- - README.rdoc
77
+ - ".gitignore"
78
+ - ".travis.yml"
79
+ - CODE_OF_CONDUCT.md
80
+ - Gemfile
81
+ - LICENSE.txt
82
+ - README.md
65
83
  - Rakefile
66
- - app/assets/javascripts/rails_drive/application.js
67
- - app/assets/stylesheets/rails_drive/application.css
68
- - app/controllers/rails_drive/application_controller.rb
69
- - app/helpers/rails_drive/application_helper.rb
70
- - app/views/layouts/rails_drive/application.html.erb
71
- - config/routes.rb
84
+ - bin/console
85
+ - bin/setup
72
86
  - lib/rails_drive.rb
73
87
  - lib/rails_drive/config.rb
74
- - lib/rails_drive/engine.rb
75
88
  - lib/rails_drive/google.rb
76
89
  - lib/rails_drive/handler.rb
77
90
  - lib/rails_drive/signin.rb
78
91
  - lib/rails_drive/version.rb
79
- - lib/tasks/rails_drive_tasks.rake
80
- - test/dummy/README.rdoc
81
- - test/dummy/Rakefile
82
- - test/dummy/app/assets/javascripts/application.js
83
- - test/dummy/app/assets/stylesheets/application.css
84
- - test/dummy/app/controllers/application_controller.rb
85
- - test/dummy/app/helpers/application_helper.rb
86
- - test/dummy/app/views/layouts/application.html.erb
87
- - test/dummy/bin/bundle
88
- - test/dummy/bin/rails
89
- - test/dummy/bin/rake
90
- - test/dummy/bin/setup
91
- - test/dummy/config.ru
92
- - test/dummy/config/application.rb
93
- - test/dummy/config/boot.rb
94
- - test/dummy/config/database.yml
95
- - test/dummy/config/environment.rb
96
- - test/dummy/config/environments/development.rb
97
- - test/dummy/config/environments/production.rb
98
- - test/dummy/config/environments/test.rb
99
- - test/dummy/config/initializers/assets.rb
100
- - test/dummy/config/initializers/backtrace_silencers.rb
101
- - test/dummy/config/initializers/cookies_serializer.rb
102
- - test/dummy/config/initializers/filter_parameter_logging.rb
103
- - test/dummy/config/initializers/inflections.rb
104
- - test/dummy/config/initializers/mime_types.rb
105
- - test/dummy/config/initializers/session_store.rb
106
- - test/dummy/config/initializers/wrap_parameters.rb
107
- - test/dummy/config/locales/en.yml
108
- - test/dummy/config/routes.rb
109
- - test/dummy/config/secrets.yml
110
- - test/dummy/public/404.html
111
- - test/dummy/public/422.html
112
- - test/dummy/public/500.html
113
- - test/dummy/public/favicon.ico
114
- - test/integration/navigation_test.rb
115
- - test/rails_drive_test.rb
116
- - test/test_helper.rb
92
+ - rails_drive.gemspec
117
93
  homepage: https://github.com/schwannden/rails_drive
118
94
  licenses:
119
95
  - MIT
@@ -137,42 +113,5 @@ rubyforge_project:
137
113
  rubygems_version: 2.4.5.1
138
114
  signing_key:
139
115
  specification_version: 4
140
- summary: Rails plugin for Google Drive
141
- test_files:
142
- - test/dummy/public/favicon.ico
143
- - test/dummy/public/422.html
144
- - test/dummy/public/500.html
145
- - test/dummy/public/404.html
146
- - test/dummy/README.rdoc
147
- - test/dummy/bin/rails
148
- - test/dummy/bin/setup
149
- - test/dummy/bin/rake
150
- - test/dummy/bin/bundle
151
- - test/dummy/config.ru
152
- - test/dummy/app/helpers/application_helper.rb
153
- - test/dummy/app/views/layouts/application.html.erb
154
- - test/dummy/app/assets/stylesheets/application.css
155
- - test/dummy/app/assets/javascripts/application.js
156
- - test/dummy/app/controllers/application_controller.rb
157
- - test/dummy/config/environment.rb
158
- - test/dummy/config/environments/production.rb
159
- - test/dummy/config/environments/development.rb
160
- - test/dummy/config/environments/test.rb
161
- - test/dummy/config/locales/en.yml
162
- - test/dummy/config/routes.rb
163
- - test/dummy/config/application.rb
164
- - test/dummy/config/boot.rb
165
- - test/dummy/config/initializers/filter_parameter_logging.rb
166
- - test/dummy/config/initializers/inflections.rb
167
- - test/dummy/config/initializers/mime_types.rb
168
- - test/dummy/config/initializers/session_store.rb
169
- - test/dummy/config/initializers/cookies_serializer.rb
170
- - test/dummy/config/initializers/backtrace_silencers.rb
171
- - test/dummy/config/initializers/wrap_parameters.rb
172
- - test/dummy/config/initializers/assets.rb
173
- - test/dummy/config/database.yml
174
- - test/dummy/config/secrets.yml
175
- - test/dummy/Rakefile
176
- - test/test_helper.rb
177
- - test/rails_drive_test.rb
178
- - test/integration/navigation_test.rb
116
+ summary: make google drive act like active record
117
+ test_files: []