No commit activity in last 3 years
No release in over 3 years
Allows you to have a CarrierWave uploader automatically upload to scribd
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 0.10.0
>= 0
>= 0

Runtime

 Project Readme

Scribd-CarrierWave

Integrates CarrierWave with Scribd. This plugin was heavily influenced by Scribd_fu.

Build Status

Install

gem install scribd-carrierwave

With bundler:

gem 'scribd-carrierwave'

Configure

  1. Sign up for a Scribd API key here

  2. The following configuration settings need to be made (e.g. in an initializer):

    ScribdCarrierWave.config.key = {{Scribd API Key}}
    ScribdCarrierWave.config.secret = {{Scribd Secret Key}}
    ScribdCarrierWave.config.username = {{Scribd Username}}
    ScribdCarrierWave.config.password = {{Scribd Password}}
  3. In the CarrierWave uploader you wish you use with Scribd, add the line has_ipaper

  4. For each attribute the uploader is mounted as, add the following attributes to the model. For instance, if the uploader is mounted as :attachement add

    t.integer :attachment_ipaper_id
    t.string  :attachment_ipaper_access_key

Scribd-CarrierWave will now automatically upload new attachments to Scribd as a private document, and save the id and access_key on the model.

Viewing A Document

Just add <%= attachment.display_ipaper %> into your view.

To display multiple documents on the same page, you need to pass in a unique id for each one:

<%= attachment.display_ipaper({id: '_attachement1'}) %>

To pass in params to the Scribd javascript options (listed here)

<%= attachment.display_ipaper({height: 700, width: 600}) %>

To get the link to the fullscreen document:

<%= attachment.fullscreen_url %>