effective_assets 1.9.14 → 1.10.0

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
  SHA1:
3
- metadata.gz: 83b563d9bd1167133ad1f6584893f76f82f16e36
4
- data.tar.gz: 5ec222a0c56d2b8a4a6f077e4d9f7877297b42e8
3
+ metadata.gz: 73fadecfb95145523927b513ac1db30793f1c0ad
4
+ data.tar.gz: 512e72c17caba536a18d3fc4b451d4b482fa8e2e
5
5
  SHA512:
6
- metadata.gz: 738a48fb236386ba724496fe225854df828d8bb5f4c588d84b6a0080f0efbec737701c80ee92d93304e84ea05625b26fcf4d64b32e371d026f1dfc31986638e3
7
- data.tar.gz: 8143da9f67e215f5e548582a8f126218c9db2270039beea295421ef3a4e44bc36dcfb207de1380d84bd84f384c398c78975d6294f115f1d9e94e1f02c4794b40
6
+ metadata.gz: fb564fe984fcbe572702bf31f689c4573a3e6a81893b884719523293cbef4e270a6a41333c4f95b59301425ad931e633ea8c596c1498fef63131df9773b840e0
7
+ data.tar.gz: 81d2a89eb2d68ae4f7753885c11a8f696b4c0612cc2dbf7e76ab978e97bd3a16f338d5eeaaea9abdd4af841ae1175bc7943040a93c9557612be7d1ac88dbb0a7
@@ -1,3 +1,3 @@
1
1
  module EffectiveAssets
2
- VERSION = '1.9.14'.freeze
2
+ VERSION = '1.10.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: effective_assets
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.14
4
+ version: 1.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Code and Effect
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-03-06 00:00:00.000000000 Z
11
+ date: 2018-04-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -193,7 +193,6 @@ files:
193
193
  - app/views/effective/assets/_video.html.erb
194
194
  - app/views/effective/assets/iframe.html.haml
195
195
  - app/views/effective/snippets/_effective_asset.html.haml
196
- - app/views/effective/style_guide/_effective_assets.html.haml
197
196
  - config/effective_assets.rb
198
197
  - config/routes.rb
199
198
  - db/migrate/01_create_effective_assets.rb.erb
@@ -1,24 +0,0 @@
1
- = simple_form_for Effective::StyleGuide.new(), :url => '/' do |f|
2
- = f.input :files,
3
- :as => :asset_box,
4
- :hint => 'default display (same as attachment_style: :thumbnail)'
5
-
6
- = f.input :files,
7
- :as => :asset_box,
8
- :attachment_style => :table,
9
- :hint => 'display as table (attachment_style: :table)'
10
-
11
- = f.input :files,
12
- :as => :asset_box,
13
- :attachment_style => :list,
14
- :hint => 'display as list (attachment_style: :list)'
15
-
16
- = f.input :files,
17
- :as => :asset_box,
18
- :dialog => true,
19
- :hint => 'with attachment dialog (dialog: true)'
20
-
21
- = f.input :files,
22
- :as => :asset_box,
23
- :uploader_drop_files => true,
24
- :hint => 'with drop zone (uploader_drop_files: true)'