Shadowfiend-scribd_fu 1.2 → 1.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.
@@ -45,7 +45,7 @@ module ScribdFu
45
45
  end
46
46
  end
47
47
  end
48
- alias_method :destroy_scribd_document, :destroy_scribd_documents
48
+ alias_method :destroy_scribd_documents, :destroy_scribd_document
49
49
 
50
50
  # Uploads the attachment to scribd for processing.. This is called
51
51
  # +before_validation+, as set up by ScribdFu::ClassMethods#extended.
data/lib/scribd_fu.rb CHANGED
@@ -14,7 +14,7 @@ module ScribdFu
14
14
  'application/vnd.oasis.opendocument.spreadsheet',
15
15
  'application/vnd.sun.xml.writer',
16
16
  'application/vnd.sun.xml.impress',
17
- 'application/vnd.sun.xml.calc',
17
+ 'application/vnd.sun.xml.calc'
18
18
  # OOXML, AKA `the MIME types from hell'. Seriously, these are long enough to
19
19
  # start their own dictionary...
20
20
  'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
@@ -87,7 +87,7 @@ module ScribdFu
87
87
  if self.respond_to?(:is_public) && self.is_public != nil
88
88
  scribd_access = self.is_public ? 'public' : 'private'
89
89
  else
90
- scribd_access = scribd_config['access']
90
+ scribd_access = scribd_config[:scribd]['access']
91
91
  end
92
92
 
93
93
  scribd_access
@@ -17,7 +17,7 @@ module ScribdFuHelper
17
17
  # <%= display_scribd user, :biography, 'You need Flash for biographies." %>
18
18
  def display_scribd(object, alt_text_or_attribute = '', alt_text_if_paperclip = nil)
19
19
  # Resolve the right scribd ID, access key, and alt text.
20
- if object.respond_to?("scribd_id")
20
+ if object.method_defined?("scribd_id")
21
21
  scribd_id = object.scribd_id
22
22
  scribd_ak = object.scribd_access_key
23
23
 
@@ -33,7 +33,7 @@ module ScribdFuHelper
33
33
  <script type=\"text/javascript\" src=\"http://www.scribd.com/javascripts/view.js\"></script>
34
34
  <div id=\"embedded_flash\">#{alt_text}</div>
35
35
  <script type=\"text/javascript\">
36
- var scribd_doc = scribd.Document.getDoc(#{scribd_id}, '#{scribd_ak}');
36
+ var scribd_doc = scribd.Document.getDoc(#{scribd_id}, '#{scribd_access_key}');
37
37
  scribd_doc.write(\"embedded_flash\");
38
38
  </script>
39
39
  END
data/scribd_fu.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "scribd_fu"
3
- s.version = "1.2"
3
+ s.version = "1.3"
4
4
  s.date = "2008-12-14"
5
5
  s.summary = "Quick and easy interactions with Scribd's iPaper service"
6
6
  s.email = "matt@matt-darby.com"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: Shadowfiend-scribd_fu
3
3
  version: !ruby/object:Gem::Version
4
- version: "1.2"
4
+ version: "1.3"
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Darby