activestorage 0.1 → 5.2.0.beta1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of activestorage might be problematic. Click here for more details.

Files changed (85) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +5 -0
  3. data/README.md +94 -25
  4. data/app/assets/javascripts/activestorage.js +1 -0
  5. data/app/controllers/active_storage/blobs_controller.rb +16 -0
  6. data/app/controllers/active_storage/direct_uploads_controller.rb +23 -0
  7. data/app/controllers/active_storage/disk_controller.rb +51 -0
  8. data/app/controllers/active_storage/previews_controller.rb +12 -0
  9. data/app/controllers/active_storage/variants_controller.rb +16 -0
  10. data/app/javascript/activestorage/blob_record.js +54 -0
  11. data/app/javascript/activestorage/blob_upload.js +35 -0
  12. data/app/javascript/activestorage/direct_upload.js +42 -0
  13. data/app/javascript/activestorage/direct_upload_controller.js +67 -0
  14. data/app/javascript/activestorage/direct_uploads_controller.js +50 -0
  15. data/app/javascript/activestorage/file_checksum.js +53 -0
  16. data/app/javascript/activestorage/helpers.js +42 -0
  17. data/app/javascript/activestorage/index.js +11 -0
  18. data/app/javascript/activestorage/ujs.js +75 -0
  19. data/app/jobs/active_storage/analyze_job.rb +8 -0
  20. data/app/jobs/active_storage/base_job.rb +5 -0
  21. data/app/jobs/active_storage/purge_job.rb +11 -0
  22. data/app/models/active_storage/attachment.rb +35 -0
  23. data/app/models/active_storage/blob.rb +313 -0
  24. data/app/models/active_storage/filename.rb +73 -0
  25. data/app/models/active_storage/filename/parameters.rb +36 -0
  26. data/app/models/active_storage/preview.rb +90 -0
  27. data/app/models/active_storage/variant.rb +86 -0
  28. data/app/models/active_storage/variation.rb +67 -0
  29. data/config/routes.rb +43 -0
  30. data/lib/active_storage.rb +37 -2
  31. data/lib/active_storage/analyzer.rb +33 -0
  32. data/lib/active_storage/analyzer/image_analyzer.rb +36 -0
  33. data/lib/active_storage/analyzer/null_analyzer.rb +13 -0
  34. data/lib/active_storage/analyzer/video_analyzer.rb +79 -0
  35. data/lib/active_storage/attached.rb +28 -22
  36. data/lib/active_storage/attached/macros.rb +89 -16
  37. data/lib/active_storage/attached/many.rb +53 -21
  38. data/lib/active_storage/attached/one.rb +74 -20
  39. data/lib/active_storage/downloading.rb +26 -0
  40. data/lib/active_storage/engine.rb +72 -0
  41. data/lib/active_storage/gem_version.rb +17 -0
  42. data/lib/active_storage/log_subscriber.rb +52 -0
  43. data/lib/active_storage/previewer.rb +58 -0
  44. data/lib/active_storage/previewer/pdf_previewer.rb +17 -0
  45. data/lib/active_storage/previewer/video_previewer.rb +23 -0
  46. data/lib/active_storage/service.rb +112 -24
  47. data/lib/active_storage/service/azure_storage_service.rb +124 -0
  48. data/lib/active_storage/service/configurator.rb +32 -0
  49. data/lib/active_storage/service/disk_service.rb +103 -44
  50. data/lib/active_storage/service/gcs_service.rb +87 -29
  51. data/lib/active_storage/service/mirror_service.rb +38 -22
  52. data/lib/active_storage/service/s3_service.rb +83 -38
  53. data/lib/active_storage/version.rb +10 -0
  54. data/lib/tasks/activestorage.rake +4 -15
  55. metadata +64 -108
  56. data/.gitignore +0 -1
  57. data/Gemfile +0 -11
  58. data/Gemfile.lock +0 -235
  59. data/Rakefile +0 -11
  60. data/activestorage.gemspec +0 -21
  61. data/lib/active_storage/attachment.rb +0 -30
  62. data/lib/active_storage/blob.rb +0 -80
  63. data/lib/active_storage/disk_controller.rb +0 -28
  64. data/lib/active_storage/download.rb +0 -90
  65. data/lib/active_storage/filename.rb +0 -31
  66. data/lib/active_storage/migration.rb +0 -28
  67. data/lib/active_storage/purge_job.rb +0 -10
  68. data/lib/active_storage/railtie.rb +0 -56
  69. data/lib/active_storage/storage_services.yml +0 -27
  70. data/lib/active_storage/verified_key_with_expiration.rb +0 -24
  71. data/test/attachments_test.rb +0 -95
  72. data/test/blob_test.rb +0 -28
  73. data/test/database/create_users_migration.rb +0 -7
  74. data/test/database/setup.rb +0 -6
  75. data/test/disk_controller_test.rb +0 -34
  76. data/test/filename_test.rb +0 -36
  77. data/test/service/.gitignore +0 -1
  78. data/test/service/configurations-example.yml +0 -11
  79. data/test/service/disk_service_test.rb +0 -8
  80. data/test/service/gcs_service_test.rb +0 -20
  81. data/test/service/mirror_service_test.rb +0 -50
  82. data/test/service/s3_service_test.rb +0 -11
  83. data/test/service/shared_service_tests.rb +0 -68
  84. data/test/test_helper.rb +0 -28
  85. data/test/verified_key_with_expiration_test.rb +0 -19
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "gem_version"
4
+
5
+ module ActiveStorage
6
+ # Returns the version of the currently loaded ActiveStorage as a <tt>Gem::Version</tt>
7
+ def self.version
8
+ gem_version
9
+ end
10
+ end
@@ -1,19 +1,8 @@
1
- require "fileutils"
1
+ # frozen_string_literal: true
2
2
 
3
- namespace :activestorage do
3
+ namespace :active_storage do
4
4
  desc "Copy over the migration needed to the application"
5
- task :install do
6
- FileUtils.mkdir_p Rails.root.join("storage")
7
- FileUtils.mkdir_p Rails.root.join("tmp/storage")
8
- puts "Made storage and tmp/storage directories for development and testing"
9
-
10
- FileUtils.cp File.expand_path("../../active_storage/storage_services.yml", __FILE__), Rails.root.join("config")
11
- puts "Copied default configuration to config/storage_services.yml"
12
-
13
- migration_file_path = "db/migrate/#{Time.now.utc.strftime("%Y%m%d%H%M%S")}_active_storage_create_tables.rb"
14
- FileUtils.cp File.expand_path("../../active_storage/migration.rb", __FILE__), Rails.root.join(migration_file_path)
15
- puts "Copied migration to #{migration_file_path}"
16
-
17
- puts "Now run rails db:migrate to create the tables for Active Storage"
5
+ task install: :environment do
6
+ Rake::Task["active_storage:install:migrations"].invoke
18
7
  end
19
8
  end
metadata CHANGED
@@ -1,138 +1,109 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activestorage
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.1'
4
+ version: 5.2.0.beta1
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Heinemeier Hansson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-07-06 00:00:00.000000000 Z
11
+ date: 2017-11-27 00:00:00.000000000 Z
12
12
  dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: activesupport
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - ">="
18
- - !ruby/object:Gem::Version
19
- version: '5.1'
20
- type: :runtime
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - ">="
25
- - !ruby/object:Gem::Version
26
- version: '5.1'
27
- - !ruby/object:Gem::Dependency
28
- name: activerecord
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - ">="
32
- - !ruby/object:Gem::Version
33
- version: '5.1'
34
- type: :runtime
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - ">="
39
- - !ruby/object:Gem::Version
40
- version: '5.1'
41
13
  - !ruby/object:Gem::Dependency
42
14
  name: actionpack
43
15
  requirement: !ruby/object:Gem::Requirement
44
16
  requirements:
45
- - - ">="
17
+ - - '='
46
18
  - !ruby/object:Gem::Version
47
- version: '5.1'
19
+ version: 5.2.0.beta1
48
20
  type: :runtime
49
21
  prerelease: false
50
22
  version_requirements: !ruby/object:Gem::Requirement
51
23
  requirements:
52
- - - ">="
24
+ - - '='
53
25
  - !ruby/object:Gem::Version
54
- version: '5.1'
26
+ version: 5.2.0.beta1
55
27
  - !ruby/object:Gem::Dependency
56
- name: activejob
28
+ name: activerecord
57
29
  requirement: !ruby/object:Gem::Requirement
58
30
  requirements:
59
- - - ">="
31
+ - - '='
60
32
  - !ruby/object:Gem::Version
61
- version: '5.1'
33
+ version: 5.2.0.beta1
62
34
  type: :runtime
63
35
  prerelease: false
64
36
  version_requirements: !ruby/object:Gem::Requirement
65
37
  requirements:
66
- - - ">="
67
- - !ruby/object:Gem::Version
68
- version: '5.1'
69
- - !ruby/object:Gem::Dependency
70
- name: bundler
71
- requirement: !ruby/object:Gem::Requirement
72
- requirements:
73
- - - "~>"
74
- - !ruby/object:Gem::Version
75
- version: '1.15'
76
- type: :development
77
- prerelease: false
78
- version_requirements: !ruby/object:Gem::Requirement
79
- requirements:
80
- - - "~>"
38
+ - - '='
81
39
  - !ruby/object:Gem::Version
82
- version: '1.15'
83
- description:
84
- email: david@basecamp.com
40
+ version: 5.2.0.beta1
41
+ description: Attach cloud and local files in Rails applications.
42
+ email: david@loudthinking.com
85
43
  executables: []
86
44
  extensions: []
87
45
  extra_rdoc_files: []
88
46
  files:
89
- - ".gitignore"
90
- - Gemfile
91
- - Gemfile.lock
47
+ - CHANGELOG.md
92
48
  - MIT-LICENSE
93
49
  - README.md
94
- - Rakefile
95
- - activestorage.gemspec
50
+ - app/assets/javascripts/activestorage.js
51
+ - app/controllers/active_storage/blobs_controller.rb
52
+ - app/controllers/active_storage/direct_uploads_controller.rb
53
+ - app/controllers/active_storage/disk_controller.rb
54
+ - app/controllers/active_storage/previews_controller.rb
55
+ - app/controllers/active_storage/variants_controller.rb
56
+ - app/javascript/activestorage/blob_record.js
57
+ - app/javascript/activestorage/blob_upload.js
58
+ - app/javascript/activestorage/direct_upload.js
59
+ - app/javascript/activestorage/direct_upload_controller.js
60
+ - app/javascript/activestorage/direct_uploads_controller.js
61
+ - app/javascript/activestorage/file_checksum.js
62
+ - app/javascript/activestorage/helpers.js
63
+ - app/javascript/activestorage/index.js
64
+ - app/javascript/activestorage/ujs.js
65
+ - app/jobs/active_storage/analyze_job.rb
66
+ - app/jobs/active_storage/base_job.rb
67
+ - app/jobs/active_storage/purge_job.rb
68
+ - app/models/active_storage/attachment.rb
69
+ - app/models/active_storage/blob.rb
70
+ - app/models/active_storage/filename.rb
71
+ - app/models/active_storage/filename/parameters.rb
72
+ - app/models/active_storage/preview.rb
73
+ - app/models/active_storage/variant.rb
74
+ - app/models/active_storage/variation.rb
75
+ - config/routes.rb
96
76
  - lib/active_storage.rb
77
+ - lib/active_storage/analyzer.rb
78
+ - lib/active_storage/analyzer/image_analyzer.rb
79
+ - lib/active_storage/analyzer/null_analyzer.rb
80
+ - lib/active_storage/analyzer/video_analyzer.rb
97
81
  - lib/active_storage/attached.rb
98
82
  - lib/active_storage/attached/macros.rb
99
83
  - lib/active_storage/attached/many.rb
100
84
  - lib/active_storage/attached/one.rb
101
- - lib/active_storage/attachment.rb
102
- - lib/active_storage/blob.rb
103
- - lib/active_storage/disk_controller.rb
104
- - lib/active_storage/download.rb
105
- - lib/active_storage/filename.rb
106
- - lib/active_storage/migration.rb
107
- - lib/active_storage/purge_job.rb
108
- - lib/active_storage/railtie.rb
85
+ - lib/active_storage/downloading.rb
86
+ - lib/active_storage/engine.rb
87
+ - lib/active_storage/gem_version.rb
88
+ - lib/active_storage/log_subscriber.rb
89
+ - lib/active_storage/previewer.rb
90
+ - lib/active_storage/previewer/pdf_previewer.rb
91
+ - lib/active_storage/previewer/video_previewer.rb
109
92
  - lib/active_storage/service.rb
93
+ - lib/active_storage/service/azure_storage_service.rb
94
+ - lib/active_storage/service/configurator.rb
110
95
  - lib/active_storage/service/disk_service.rb
111
96
  - lib/active_storage/service/gcs_service.rb
112
97
  - lib/active_storage/service/mirror_service.rb
113
98
  - lib/active_storage/service/s3_service.rb
114
- - lib/active_storage/storage_services.yml
115
- - lib/active_storage/verified_key_with_expiration.rb
99
+ - lib/active_storage/version.rb
116
100
  - lib/tasks/activestorage.rake
117
- - test/attachments_test.rb
118
- - test/blob_test.rb
119
- - test/database/create_users_migration.rb
120
- - test/database/setup.rb
121
- - test/disk_controller_test.rb
122
- - test/filename_test.rb
123
- - test/service/.gitignore
124
- - test/service/configurations-example.yml
125
- - test/service/disk_service_test.rb
126
- - test/service/gcs_service_test.rb
127
- - test/service/mirror_service_test.rb
128
- - test/service/s3_service_test.rb
129
- - test/service/shared_service_tests.rb
130
- - test/test_helper.rb
131
- - test/verified_key_with_expiration_test.rb
132
- homepage: https://github.com/rails/activestorage
101
+ homepage: http://rubyonrails.org
133
102
  licenses:
134
103
  - MIT
135
- metadata: {}
104
+ metadata:
105
+ source_code_uri: https://github.com/rails/rails/tree/v5.2.0.beta1/activestorage
106
+ changelog_uri: https://github.com/rails/rails/blob/v5.2.0.beta1/activestorage/CHANGELOG.md
136
107
  post_install_message:
137
108
  rdoc_options: []
138
109
  require_paths:
@@ -141,31 +112,16 @@ required_ruby_version: !ruby/object:Gem::Requirement
141
112
  requirements:
142
113
  - - ">="
143
114
  - !ruby/object:Gem::Version
144
- version: 2.3.0
115
+ version: 2.2.2
145
116
  required_rubygems_version: !ruby/object:Gem::Requirement
146
117
  requirements:
147
- - - ">="
118
+ - - ">"
148
119
  - !ruby/object:Gem::Version
149
- version: '0'
120
+ version: 1.3.1
150
121
  requirements: []
151
122
  rubyforge_project:
152
- rubygems_version: 2.6.11
123
+ rubygems_version: 2.6.12
153
124
  signing_key:
154
125
  specification_version: 4
155
- summary: Attach cloud and local files in Rails applications
156
- test_files:
157
- - test/attachments_test.rb
158
- - test/blob_test.rb
159
- - test/database/create_users_migration.rb
160
- - test/database/setup.rb
161
- - test/disk_controller_test.rb
162
- - test/filename_test.rb
163
- - test/service/.gitignore
164
- - test/service/configurations-example.yml
165
- - test/service/disk_service_test.rb
166
- - test/service/gcs_service_test.rb
167
- - test/service/mirror_service_test.rb
168
- - test/service/s3_service_test.rb
169
- - test/service/shared_service_tests.rb
170
- - test/test_helper.rb
171
- - test/verified_key_with_expiration_test.rb
126
+ summary: Local and cloud file storage framework.
127
+ test_files: []
data/.gitignore DELETED
@@ -1 +0,0 @@
1
- .byebug_history
data/Gemfile DELETED
@@ -1,11 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gemspec
4
-
5
- gem 'rake'
6
- gem 'byebug'
7
-
8
- gem 'sqlite3'
9
-
10
- gem 'aws-sdk', require: false
11
- gem 'google-cloud', require: false
data/Gemfile.lock DELETED
@@ -1,235 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- activestorage (0.1)
5
- actionpack (>= 5.1)
6
- activejob (>= 5.1)
7
- activerecord (>= 5.1)
8
- activesupport (>= 5.1)
9
-
10
- GEM
11
- remote: https://rubygems.org/
12
- specs:
13
- actionpack (5.1.1)
14
- actionview (= 5.1.1)
15
- activesupport (= 5.1.1)
16
- rack (~> 2.0)
17
- rack-test (~> 0.6.3)
18
- rails-dom-testing (~> 2.0)
19
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
20
- actionview (5.1.1)
21
- activesupport (= 5.1.1)
22
- builder (~> 3.1)
23
- erubi (~> 1.4)
24
- rails-dom-testing (~> 2.0)
25
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
26
- activejob (5.1.1)
27
- activesupport (= 5.1.1)
28
- globalid (>= 0.3.6)
29
- activemodel (5.1.1)
30
- activesupport (= 5.1.1)
31
- activerecord (5.1.1)
32
- activemodel (= 5.1.1)
33
- activesupport (= 5.1.1)
34
- arel (~> 8.0)
35
- activesupport (5.1.1)
36
- concurrent-ruby (~> 1.0, >= 1.0.2)
37
- i18n (~> 0.7)
38
- minitest (~> 5.1)
39
- tzinfo (~> 1.1)
40
- addressable (2.5.1)
41
- public_suffix (~> 2.0, >= 2.0.2)
42
- arel (8.0.0)
43
- aws-sdk (2.10.7)
44
- aws-sdk-resources (= 2.10.7)
45
- aws-sdk-core (2.10.7)
46
- aws-sigv4 (~> 1.0)
47
- jmespath (~> 1.0)
48
- aws-sdk-resources (2.10.7)
49
- aws-sdk-core (= 2.10.7)
50
- aws-sigv4 (1.0.0)
51
- builder (3.2.3)
52
- byebug (9.0.6)
53
- concurrent-ruby (1.0.5)
54
- declarative (0.0.9)
55
- declarative-option (0.1.0)
56
- digest-crc (0.4.1)
57
- erubi (1.6.0)
58
- faraday (0.12.1)
59
- multipart-post (>= 1.2, < 3)
60
- globalid (0.4.0)
61
- activesupport (>= 4.2.0)
62
- google-api-client (0.13.0)
63
- addressable (~> 2.5, >= 2.5.1)
64
- googleauth (~> 0.5)
65
- httpclient (>= 2.8.1, < 3.0)
66
- mime-types (~> 3.0)
67
- representable (~> 3.0)
68
- retriable (>= 2.0, < 4.0)
69
- google-cloud (0.34.0)
70
- google-cloud-bigquery (~> 0.27.0)
71
- google-cloud-datastore (~> 1.0)
72
- google-cloud-dns (~> 0.25.0)
73
- google-cloud-error_reporting (~> 0.25.0)
74
- google-cloud-language (~> 0.26.0)
75
- google-cloud-logging (~> 1.0)
76
- google-cloud-monitoring (~> 0.24.0)
77
- google-cloud-pubsub (~> 0.25.0)
78
- google-cloud-resource_manager (~> 0.26.0)
79
- google-cloud-spanner (~> 0.21.0)
80
- google-cloud-speech (~> 0.24.0)
81
- google-cloud-storage (~> 1.2)
82
- google-cloud-trace (~> 0.25.0)
83
- google-cloud-translate (~> 1.0)
84
- google-cloud-video_intelligence (~> 0.20.0)
85
- google-cloud-vision (~> 0.24.0)
86
- google-cloud-bigquery (0.27.0)
87
- google-api-client (~> 0.13.0)
88
- google-cloud-core (~> 1.0)
89
- google-cloud-core (1.0.0)
90
- google-cloud-env (~> 1.0)
91
- googleauth (~> 0.5.1)
92
- google-cloud-datastore (1.0.1)
93
- google-cloud-core (~> 1.0)
94
- google-gax (~> 0.8.0)
95
- google-protobuf (~> 3.2.0)
96
- google-cloud-dns (0.25.0)
97
- google-api-client (~> 0.13.0)
98
- google-cloud-core (~> 1.0)
99
- zonefile (~> 1.04)
100
- google-cloud-env (1.0.0)
101
- faraday (~> 0.11)
102
- google-cloud-error_reporting (0.25.0)
103
- google-cloud-core (~> 1.0)
104
- google-gax (~> 0.8.0)
105
- stackdriver-core (~> 1.1)
106
- google-cloud-language (0.26.2)
107
- google-cloud-core (~> 1.0)
108
- google-gax (~> 0.8.2)
109
- google-cloud-logging (1.1.0)
110
- google-cloud-core (~> 1.0)
111
- google-gax (~> 0.8.0)
112
- stackdriver-core (~> 1.1)
113
- google-cloud-monitoring (0.24.0)
114
- google-gax (~> 0.8.0)
115
- google-cloud-pubsub (0.25.0)
116
- google-cloud-core (~> 1.0)
117
- google-gax (~> 0.8.0)
118
- grpc-google-iam-v1 (~> 0.6.8)
119
- google-cloud-resource_manager (0.26.0)
120
- google-api-client (~> 0.13.0)
121
- google-cloud-core (~> 1.0)
122
- google-cloud-spanner (0.21.0)
123
- concurrent-ruby (~> 1.0)
124
- google-cloud-core (~> 1.0)
125
- google-gax (~> 0.8.1)
126
- grpc (~> 1.1)
127
- grpc-google-iam-v1 (~> 0.6.8)
128
- google-cloud-speech (0.24.0)
129
- google-cloud-core (~> 1.0)
130
- google-gax (~> 0.8.2)
131
- google-cloud-storage (1.2.0)
132
- digest-crc (~> 0.4)
133
- google-api-client (~> 0.13.0)
134
- google-cloud-core (~> 1.0)
135
- google-cloud-trace (0.25.0)
136
- google-cloud-core (~> 1.0)
137
- google-gax (~> 0.8.0)
138
- stackdriver-core (~> 1.1)
139
- google-cloud-translate (1.0.0)
140
- google-cloud-core (~> 1.0)
141
- googleauth (~> 0.5.1)
142
- google-cloud-video_intelligence (0.20.0)
143
- google-gax (~> 0.8.0)
144
- google-cloud-vision (0.24.0)
145
- google-cloud-core (~> 1.0)
146
- google-gax (~> 0.8.0)
147
- google-gax (0.8.4)
148
- google-protobuf (~> 3.2)
149
- googleapis-common-protos (~> 1.3.5)
150
- googleauth (~> 0.5.1)
151
- grpc (~> 1.0)
152
- rly (~> 0.2.3)
153
- google-protobuf (3.2.0.2)
154
- googleapis-common-protos (1.3.5)
155
- google-protobuf (~> 3.2)
156
- grpc (~> 1.0)
157
- googleauth (0.5.1)
158
- faraday (~> 0.9)
159
- jwt (~> 1.4)
160
- logging (~> 2.0)
161
- memoist (~> 0.12)
162
- multi_json (~> 1.11)
163
- os (~> 0.9)
164
- signet (~> 0.7)
165
- grpc (1.4.1)
166
- google-protobuf (~> 3.1)
167
- googleauth (~> 0.5.1)
168
- grpc-google-iam-v1 (0.6.8)
169
- googleapis-common-protos (~> 1.3.1)
170
- googleauth (~> 0.5.1)
171
- grpc (~> 1.0)
172
- httpclient (2.8.3)
173
- i18n (0.8.4)
174
- jmespath (1.3.1)
175
- jwt (1.5.6)
176
- little-plugger (1.1.4)
177
- logging (2.2.2)
178
- little-plugger (~> 1.1)
179
- multi_json (~> 1.10)
180
- loofah (2.0.3)
181
- nokogiri (>= 1.5.9)
182
- memoist (0.16.0)
183
- mime-types (3.1)
184
- mime-types-data (~> 3.2015)
185
- mime-types-data (3.2016.0521)
186
- mini_portile2 (2.1.0)
187
- minitest (5.10.2)
188
- multi_json (1.12.1)
189
- multipart-post (2.0.0)
190
- nokogiri (1.7.2)
191
- mini_portile2 (~> 2.1.0)
192
- os (0.9.6)
193
- public_suffix (2.0.5)
194
- rack (2.0.3)
195
- rack-test (0.6.3)
196
- rack (>= 1.0)
197
- rails-dom-testing (2.0.3)
198
- activesupport (>= 4.2.0)
199
- nokogiri (>= 1.6)
200
- rails-html-sanitizer (1.0.3)
201
- loofah (~> 2.0)
202
- rake (12.0.0)
203
- representable (3.0.4)
204
- declarative (< 0.1.0)
205
- declarative-option (< 0.2.0)
206
- uber (< 0.2.0)
207
- retriable (3.0.2)
208
- rly (0.2.3)
209
- signet (0.7.3)
210
- addressable (~> 2.3)
211
- faraday (~> 0.9)
212
- jwt (~> 1.5)
213
- multi_json (~> 1.10)
214
- sqlite3 (1.3.13)
215
- stackdriver-core (1.1.0)
216
- thread_safe (0.3.6)
217
- tzinfo (1.2.3)
218
- thread_safe (~> 0.1)
219
- uber (0.1.0)
220
- zonefile (1.06)
221
-
222
- PLATFORMS
223
- ruby
224
-
225
- DEPENDENCIES
226
- activestorage!
227
- aws-sdk
228
- bundler (~> 1.15)
229
- byebug
230
- google-cloud
231
- rake
232
- sqlite3
233
-
234
- BUNDLED WITH
235
- 1.15.1