file_column_with_s3 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +69 -0
- data/README +54 -0
- data/Rakefile +40 -0
- data/lib/file_column.rb +734 -0
- data/lib/file_column/attachement_store.rb +93 -0
- data/lib/file_column_helper.rb +150 -0
- data/lib/file_compat.rb +28 -0
- data/lib/magick_file_column.rb +265 -0
- data/lib/rails_file_column.rb +19 -0
- data/lib/test_case.rb +124 -0
- data/lib/validations.rb +112 -0
- data/s3_env.example +5 -0
- data/test/abstract_unit.rb +66 -0
- data/test/attachement_store_test.rb +96 -0
- data/test/connection.rb +11 -0
- data/test/file_column_helper_test.rb +98 -0
- data/test/file_column_test.rb +652 -0
- data/test/fixtures/entry.rb +28 -0
- data/test/fixtures/invalid-image.jpg +1 -0
- data/test/fixtures/kerb.jpg +0 -0
- data/test/fixtures/mysql.sql +25 -0
- data/test/fixtures/schema.rb +10 -0
- data/test/fixtures/skanthak.png +0 -0
- data/test/magick_test.rb +391 -0
- data/test/magick_view_only_test.rb +21 -0
- metadata +132 -0
@@ -0,0 +1,21 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/abstract_unit'
|
2
|
+
require File.dirname(__FILE__) + '/fixtures/entry'
|
3
|
+
|
4
|
+
class RMagickViewOnlyTest < Test::Unit::TestCase
|
5
|
+
include FileColumnHelper
|
6
|
+
|
7
|
+
def setup
|
8
|
+
Entry.file_column :image
|
9
|
+
@request = RequestMock.new
|
10
|
+
end
|
11
|
+
|
12
|
+
def teardown
|
13
|
+
FileUtils.rm_rf File.dirname(__FILE__)+"/public/entry/"
|
14
|
+
end
|
15
|
+
|
16
|
+
def test_url_for_image_column_without_model_versions
|
17
|
+
e = Entry.new(:image => upload(f("skanthak.png")))
|
18
|
+
|
19
|
+
assert_nothing_raised { url_for_image_column e, "image", "50x50" }
|
20
|
+
end
|
21
|
+
end
|
metadata
ADDED
@@ -0,0 +1,132 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: file_column_with_s3
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 27
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 1
|
9
|
+
- 0
|
10
|
+
version: 0.1.0
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Mingle SaaS team
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2012-09-20 00:00:00 Z
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
21
|
+
version_requirements: &id001 !ruby/object:Gem::Requirement
|
22
|
+
none: false
|
23
|
+
requirements:
|
24
|
+
- - "="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
hash: 19
|
27
|
+
segments:
|
28
|
+
- 2
|
29
|
+
- 3
|
30
|
+
- 8
|
31
|
+
version: 2.3.8
|
32
|
+
prerelease: false
|
33
|
+
type: :runtime
|
34
|
+
name: rails
|
35
|
+
requirement: *id001
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
version_requirements: &id002 !ruby/object:Gem::Requirement
|
38
|
+
none: false
|
39
|
+
requirements:
|
40
|
+
- - ">="
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
hash: 3
|
43
|
+
segments:
|
44
|
+
- 0
|
45
|
+
version: "0"
|
46
|
+
prerelease: false
|
47
|
+
type: :runtime
|
48
|
+
name: sqlite3
|
49
|
+
requirement: *id002
|
50
|
+
- !ruby/object:Gem::Dependency
|
51
|
+
version_requirements: &id003 !ruby/object:Gem::Requirement
|
52
|
+
none: false
|
53
|
+
requirements:
|
54
|
+
- - ">="
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
hash: 3
|
57
|
+
segments:
|
58
|
+
- 0
|
59
|
+
version: "0"
|
60
|
+
prerelease: false
|
61
|
+
type: :development
|
62
|
+
name: rmagick
|
63
|
+
requirement: *id003
|
64
|
+
description:
|
65
|
+
email: mingle.saas@thoughtworks.com
|
66
|
+
executables: []
|
67
|
+
|
68
|
+
extensions: []
|
69
|
+
|
70
|
+
extra_rdoc_files: []
|
71
|
+
|
72
|
+
files:
|
73
|
+
- Rakefile
|
74
|
+
- lib/file_column/attachement_store.rb
|
75
|
+
- lib/file_column.rb
|
76
|
+
- lib/file_column_helper.rb
|
77
|
+
- lib/file_compat.rb
|
78
|
+
- lib/magick_file_column.rb
|
79
|
+
- lib/rails_file_column.rb
|
80
|
+
- lib/test_case.rb
|
81
|
+
- lib/validations.rb
|
82
|
+
- test/abstract_unit.rb
|
83
|
+
- test/attachement_store_test.rb
|
84
|
+
- test/connection.rb
|
85
|
+
- test/file_column_helper_test.rb
|
86
|
+
- test/file_column_test.rb
|
87
|
+
- test/fixtures/entry.rb
|
88
|
+
- test/fixtures/invalid-image.jpg
|
89
|
+
- test/fixtures/kerb.jpg
|
90
|
+
- test/fixtures/mysql.sql
|
91
|
+
- test/fixtures/schema.rb
|
92
|
+
- test/fixtures/skanthak.png
|
93
|
+
- test/magick_test.rb
|
94
|
+
- test/magick_view_only_test.rb
|
95
|
+
- README
|
96
|
+
- CHANGELOG
|
97
|
+
- s3_env.example
|
98
|
+
homepage: https://github.com/ThoughtWorksStudios/file_column
|
99
|
+
licenses: []
|
100
|
+
|
101
|
+
post_install_message:
|
102
|
+
rdoc_options: []
|
103
|
+
|
104
|
+
require_paths:
|
105
|
+
- lib
|
106
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
107
|
+
none: false
|
108
|
+
requirements:
|
109
|
+
- - ">="
|
110
|
+
- !ruby/object:Gem::Version
|
111
|
+
hash: 3
|
112
|
+
segments:
|
113
|
+
- 0
|
114
|
+
version: "0"
|
115
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
116
|
+
none: false
|
117
|
+
requirements:
|
118
|
+
- - ">="
|
119
|
+
- !ruby/object:Gem::Version
|
120
|
+
hash: 3
|
121
|
+
segments:
|
122
|
+
- 0
|
123
|
+
version: "0"
|
124
|
+
requirements: []
|
125
|
+
|
126
|
+
rubyforge_project:
|
127
|
+
rubygems_version: 1.8.24
|
128
|
+
signing_key:
|
129
|
+
specification_version: 3
|
130
|
+
summary: File attachment library for ruby
|
131
|
+
test_files: []
|
132
|
+
|