dropio 1.3 → 1.4

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.
data/dropio.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{dropio}
5
- s.version = "1.3"
5
+ s.version = "1.4"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Jake Good"]
data/lib/dropio/asset.rb CHANGED
@@ -3,7 +3,8 @@ class Dropio::Asset < Dropio::Resource
3
3
  attr_accessor :drop, :name, :type, :title, :description, :filesize, :created_at,
4
4
  :thumbnail, :status, :converted, :hidden_url, :pages, :fax_status,
5
5
  :duration, :artist, :track_title, :height, :width, :contents, :url,
6
- :original_filename, :converted_filename, :can_download_original
6
+ :original_filename, :converted_filename, :can_download_original,
7
+ :large_thumbnail
7
8
 
8
9
  # Finds a particular Asset by drop and asset name.
9
10
  def self.find(drop, name)
data/lib/dropio.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module Dropio
2
- VERSION = '1.3'
2
+ VERSION = '1.4'
3
3
 
4
4
  class MissingResourceError < Exception; end
5
5
  class AuthorizationError < Exception; end
@@ -21,7 +21,7 @@ describe Dropio::Asset do
21
21
  @asset.should respond_to(:drop, :name, :type, :title, :description, :filesize, :created_at,
22
22
  :thumbnail, :status, :converted, :hidden_url, :pages, :fax_status,
23
23
  :duration, :artist, :track_title, :height, :width, :contents, :url,
24
- :original_filename, :converted_filename, :can_download_original)
24
+ :original_filename, :converted_filename, :can_download_original, :large_thumbnail)
25
25
  end
26
26
 
27
27
  it "should have comments" do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dropio
3
3
  version: !ruby/object:Gem::Version
4
- version: "1.3"
4
+ version: "1.4"
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jake Good