dropio 1.0.10 → 1.0.11

Sign up to get free protection for your applications and to get access to all the features.
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.0.10"
5
+ s.version = "1.0.11"
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.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module Dropio
2
- VERSION = '1.0.10'
2
+ VERSION = '1.0.11'
3
3
 
4
4
  class MissingResourceError < Exception; end
5
5
  class AuthorizationError < Exception; end
data/lib/dropio/asset.rb CHANGED
@@ -2,7 +2,8 @@ class Dropio::Asset < Dropio::Resource
2
2
 
3
3
  attr_accessor :drop, :name, :type, :title, :description, :filesize, :created_at,
4
4
  :thumbnail, :status, :converted, :hidden_url, :pages, :fax_status,
5
- :duration, :artist, :track_title, :height, :width, :contents, :url
5
+ :duration, :artist, :track_title, :height, :width, :contents, :url,
6
+ :original_filename, :converted_filename
6
7
 
7
8
  # Finds a particular Asset by drop and asset name.
8
9
  def self.find(drop, name)
@@ -20,7 +20,8 @@ describe Dropio::Asset do
20
20
  it "should have the attributes of an 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
- :duration, :artist, :track_title, :height, :width, :contents, :url)
23
+ :duration, :artist, :track_title, :height, :width, :contents, :url,
24
+ :original_filename, :converted_filename)
24
25
  end
25
26
 
26
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.0.10
4
+ version: 1.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jake Good