lazy_blob_storage 2.0.0.pre.beta.2 → 2.0.0.pre.beta.3

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,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 72cae737886cfaf7016ec41585cc48ecf1184ecb4f96c7298facc25a170e8539
4
- data.tar.gz: 7bc9bbe14d5294cbb2879d30b5e0e591c7f65e0cd9b8f5fa02edfd0f33f32ffd
3
+ metadata.gz: c675223c056ffa300a4910dea9ff45c01ea77c8115d673e530105dc85e7fdc4e
4
+ data.tar.gz: 54b144adb7025c08c862333874cb2943f84177020fa4b5965003232c8353bb27
5
5
  SHA512:
6
- metadata.gz: 2bd9cf406148d5a2b95d72130073ae76cbf18943ddd2d6ac5e43e776ac20245151a846a25c8fac802febe6c8bb8ab009c1e9fef6133b6f2f8aff0c56036bdcfc
7
- data.tar.gz: 910f65e3beba0e5f448015bf06fdf4a096e3f32913e169350621b34b2ab16e8d6f20c1dfeb53bcb3174dc414e0294f42b51be47659db52e70e6048ea712b4ad3
6
+ metadata.gz: a88c198067cdf6ec766b975ee96c3c22553c7b6832491db51cc681d616b9b735abfc1dd02c151a5141bc22ac905a2cdb51fd343f6869328f9179fb2f720e1e6f
7
+ data.tar.gz: 261c7c6e70daa001281b284edd136ea5551f55ac50173c5ab5c0bd3c471ca192ebf3e4db2c73a55474c49cfa1e1c5adc7b499b93db46902eced3d94b7d7fe2c4
data/README.md CHANGED
@@ -37,7 +37,7 @@ Built with Rails 6. It could ~probably~ work with Rails 4/5, too.
37
37
  ## Usage
38
38
 
39
39
  1. Add `gem "lazy_blob_storage" to Gemfile`
40
- 1. Run `rake lazy_blob_storage:install:migrations`
40
+ 1. Run `rake lazy_blob_storage_engine:install:migrations`
41
41
  1. Run `rake db:migrate`
42
42
  1. Declare `has_lazy_attached :image` in some model
43
43
  1. Add `f.file_field :image_upload` to the form template
@@ -26,7 +26,7 @@ module LazyAttachable
26
26
 
27
27
  define_method("validate_size_of_#{name}_upload") do
28
28
  if (send "#{name}_upload").present? && !(send "#{name}_upload_size_ok?")
29
- errors.add("#{name}_upload", "file too large (limit 1 MB)")
29
+ errors.add("#{name}_upload", "file too large (limit #{(LazyBlobStorage.max_blob_size || LazyBlobStorage.default_max_blob_size) / 1_000} kb")
30
30
  end
31
31
  end
32
32
 
@@ -1,3 +1,3 @@
1
1
  module LazyBlobStorage
2
- VERSION = "2.0.0-beta.2"
2
+ VERSION = "2.0.0-beta.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lazy_blob_storage
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0.pre.beta.2
4
+ version: 2.0.0.pre.beta.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Corey Smedstad