condo_active_record 0.0.1 → 1.0.0

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.
@@ -0,0 +1,9 @@
1
+ class Filepath < ActiveRecord::Migration
2
+ def up
3
+ add_column :condo_uploads, :file_path, :text
4
+ end
5
+
6
+ def down
7
+ remove_column :condo_uploads, :file_path
8
+ end
9
+ end
@@ -39,7 +39,7 @@ module Condo
39
39
 
40
40
  attr_accessible :user_id, :file_name, :file_size, :file_id, :custom_params,
41
41
  :provider_namespace, :provider_name, :provider_location, :bucket_name,
42
- :object_key, :object_options, :resumable_id, :resumable
42
+ :object_key, :object_options, :resumable_id, :resumable, :file_path
43
43
 
44
44
 
45
45
  self.table_name = "#{::ActiveRecord::Base.table_name_prefix}condo_uploads"
@@ -1,3 +1,3 @@
1
1
  module CondoActiveRecord
2
- VERSION = "0.0.1"
2
+ VERSION = "1.0.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: condo_active_record
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 1.0.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-10-15 00:00:00.000000000 Z
12
+ date: 2012-11-08 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -67,6 +67,7 @@ extensions: []
67
67
  extra_rdoc_files: []
68
68
  files:
69
69
  - db/migrate/20111001022500_init.rb
70
+ - db/migrate/20111106022500_filepath.rb
70
71
  - lib/condo/backend/active_record.rb
71
72
  - lib/condo_active_record/engine.rb
72
73
  - lib/condo_active_record/version.rb