trusty-clipped-extension 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
@@ -118,7 +118,7 @@ Assets = {
|
|
118
118
|
Assets.notify('Save page to commit changes');
|
119
119
|
Assets.attachEvents();
|
120
120
|
// I'm not sure what Sortable does and can't find any example of
|
121
|
-
// its use in current
|
121
|
+
// its use in current Trusty, so I'm going to comment it out for now.
|
122
122
|
|
123
123
|
//Assets.makeSortable(list);
|
124
124
|
|
@@ -33,7 +33,7 @@ Asset.Upload = Behavior.create({
|
|
33
33
|
});
|
34
34
|
|
35
35
|
|
36
|
-
// this local attachment method works and is much quicker, but it's fragile and doesn't notice
|
36
|
+
// this local attachment method works and is much quicker, but it's fragile and doesn't notice Trusty configuration changes
|
37
37
|
// better to bounce off the server, provided it can be made responsive enough.
|
38
38
|
|
39
39
|
// Asset.Attach = Behavior.create({
|
data/app/models/asset.rb
CHANGED
@@ -44,7 +44,8 @@ class Asset < ActiveRecord::Base
|
|
44
44
|
:storage => TrustyCms.config["paperclip.storage"],
|
45
45
|
:path => TrustyCms.config["paperclip.path"],
|
46
46
|
:url => TrustyCms.config["paperclip.url"],
|
47
|
-
:fog_credentials =>
|
47
|
+
:fog_credentials =>
|
48
|
+
TrustyCmsClippedExtension::Cloud.credentials,
|
48
49
|
:fog_directory => TrustyCms.config["paperclip.fog.directory"],
|
49
50
|
:fog_public => TrustyCms.config["paperclip.fog.public?"] || true,
|
50
51
|
:fog_host => TrustyCmsClippedExtension::Cloud.host
|
@@ -1,8 +1,8 @@
|
|
1
1
|
module TrustyCmsClippedExtension
|
2
|
-
VERSION = "1.0.
|
2
|
+
VERSION = "1.0.3"
|
3
3
|
SUMMARY = %q{Assets for TrustyCms CMS}
|
4
4
|
DESCRIPTION = %q{Asset-management derived from Keith Bingman's Paperclipped extension.}
|
5
|
-
URL = "
|
6
|
-
AUTHORS = ["Keith Bingman", "Benny Degezelle", "William Ross", "John W. Long", "John Muhl"]
|
7
|
-
EMAIL = ["
|
5
|
+
URL = "https://github.com/pgharts/trusty-clipped-extension"
|
6
|
+
AUTHORS = ["Keith Bingman", "Benny Degezelle", "William Ross", "John W. Long", "John Muhl", "Eric Sipple"]
|
7
|
+
EMAIL = ["webfeedback@trustarts.org"]
|
8
8
|
end
|
File without changes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: trusty-clipped-extension
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,10 +10,11 @@ authors:
|
|
10
10
|
- William Ross
|
11
11
|
- John W. Long
|
12
12
|
- John Muhl
|
13
|
+
- Eric Sipple
|
13
14
|
autorequire:
|
14
15
|
bindir: bin
|
15
16
|
cert_chain: []
|
16
|
-
date: 2014-12-
|
17
|
+
date: 2014-12-23 00:00:00.000000000 Z
|
17
18
|
dependencies:
|
18
19
|
- !ruby/object:Gem::Dependency
|
19
20
|
name: acts_as_list
|
@@ -97,7 +98,7 @@ dependencies:
|
|
97
98
|
version: 1.1.0
|
98
99
|
description: Asset-management derived from Keith Bingman's Paperclipped extension.
|
99
100
|
email:
|
100
|
-
-
|
101
|
+
- webfeedback@trustarts.org
|
101
102
|
executables: []
|
102
103
|
extensions: []
|
103
104
|
extra_rdoc_files: []
|
@@ -202,7 +203,6 @@ files:
|
|
202
203
|
- lib/asset_tags.rb
|
203
204
|
- lib/clipped/engine.rb
|
204
205
|
- lib/clipped_admin_ui.rb
|
205
|
-
- lib/cloud.rb
|
206
206
|
- lib/generators/templates/clipped_config.rb
|
207
207
|
- lib/page_asset_associations.rb
|
208
208
|
- lib/paperclip/frame_grab.rb
|
@@ -210,6 +210,7 @@ files:
|
|
210
210
|
- lib/tasks/clipped_extension_tasks.rake
|
211
211
|
- lib/tasks/paperclip_tasks.rake
|
212
212
|
- lib/trusty-clipped-extension.rb
|
213
|
+
- lib/trusty_clipped_extension/cloud.rb
|
213
214
|
- LICENSE
|
214
215
|
- Rakefile
|
215
216
|
- README.md
|
@@ -237,7 +238,7 @@ files:
|
|
237
238
|
- wireframes/edit-page-assets.png
|
238
239
|
- wireframes/edit-page.bmml
|
239
240
|
- wireframes/edit-page.png
|
240
|
-
homepage:
|
241
|
+
homepage: https://github.com/pgharts/trusty-clipped-extension
|
241
242
|
licenses: []
|
242
243
|
post_install_message:
|
243
244
|
rdoc_options: []
|