peterpunk-merb_paperclip 0.9.3 → 0.9.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/LICENSE +26 -0
  2. data/merb_paperclip.gemspec +28 -17
  3. metadata +21 -18
data/LICENSE ADDED
@@ -0,0 +1,26 @@
1
+
2
+ LICENSE
3
+
4
+ The MIT License
5
+
6
+ Copyright (c) 2008 Jon Yurek and thoughtbot, inc.
7
+
8
+ Permission is hereby granted, free of charge, to any person obtaining a copy
9
+ of this software and associated documentation files (the "Software"), to deal
10
+ in the Software without restriction, including without limitation the rights
11
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12
+ copies of the Software, and to permit persons to whom the Software is
13
+ furnished to do so, subject to the following conditions:
14
+
15
+ The above copyright notice and this permission notice shall be included in
16
+ all copies or substantial portions of the Software.
17
+
18
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24
+ THE SOFTWARE.
25
+
26
+
@@ -1,14 +1,27 @@
1
- Gem::Specification.new do |s|
2
- s.name = "merb_paperclip"
3
- s.version = "0.9.3"
4
- s.date = "2008-04-24"
5
- s.summary = "Paperclip port for merb"
6
- s.email = ""
7
- s.homepage = "http://www.thoughtbot.com/projects/paperclip"
8
- s.description = "Paperclip is a plugin for Ruby on RailsActiveRecord (this is a port for merb-ar) that lets files work as simply as any other attributes do. There are no extra database tables, only one library to install for image processing, and the ease of being able to refer to your files as easily as you refer to your other attributes."
9
- s.has_rdoc = false
10
- s.authors = ["Jon Yurek"]
11
- s.files = ["README",
1
+ NAME = "merb_paperclip"
2
+ GEM_VERSION = "0.9.4"
3
+ AUTHOR = "Jeremy Durham"
4
+ EMAIL = "jeremydurham@gmail.com"
5
+ HOMEPAGE = "http://rubyforge.org/projects/merb_paperclip/"
6
+ SUMMARY = "A Merb plugin that is essentially a port of Jon Yurek's paperclip"
7
+
8
+ spec = Gem::Specification.new do |s|
9
+ s.rubyforge_project = 'merb'
10
+ s.name = NAME
11
+ s.version = GEM_VERSION
12
+ s.date = "2008-08-29"
13
+ s.platform = Gem::Platform::RUBY
14
+ s.has_rdoc = true
15
+ s.extra_rdoc_files = ["README", "LICENSE", 'TODO']
16
+ s.summary = SUMMARY
17
+ s.description = s.summary
18
+ s.author = AUTHOR
19
+ s.email = EMAIL
20
+ s.homepage = HOMEPAGE
21
+ s.add_dependency('merb', '>= 0.9.4')
22
+ s.require_path = 'lib'
23
+ s.files = ["LICENSE",
24
+ "README",
12
25
  "TODO",
13
26
  "Rakefile",
14
27
  "merb_paperclip.gemspec",
@@ -22,10 +35,8 @@ Gem::Specification.new do |s|
22
35
  "lib/paperclip/iostream.rb",
23
36
  "lib/paperclip/storage.rb",
24
37
  "lib/paperclip/thumbnail.rb",
25
- "lib/paperclip/upfile.rb"]
26
- s.test_files = ["spec/merb_paperclip_spec.rb",
27
- "spec/spec_helper.rb"]
28
- s.rdoc_options = ["--main", "README"]
29
- s.extra_rdoc_files = ["README"]
30
- s.add_dependency("activerecord", ["> 0.0.0"])
38
+ "lib/paperclip/upfile.rb",
39
+ "spec/merb_paperclip_spec.rb",
40
+ "spec/spec_helper.rb"]
41
+
31
42
  end
metadata CHANGED
@@ -1,35 +1,38 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: peterpunk-merb_paperclip
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.3
4
+ version: 0.9.4
5
5
  platform: ruby
6
6
  authors:
7
- - Jon Yurek
7
+ - Jeremy Durham
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-04-24 00:00:00 -07:00
12
+ date: 2008-08-29 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
- name: activerecord
16
+ name: merb
17
17
  version_requirement:
18
18
  version_requirements: !ruby/object:Gem::Requirement
19
19
  requirements:
20
- - - ">"
20
+ - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 0.0.0
22
+ version: 0.9.4
23
23
  version:
24
- description: Paperclip is a plugin for Ruby on RailsActiveRecord (this is a port for merb-ar) that lets files work as simply as any other attributes do. There are no extra database tables, only one library to install for image processing, and the ease of being able to refer to your files as easily as you refer to your other attributes.
25
- email: ""
24
+ description: A Merb plugin that is essentially a port of Jon Yurek's paperclip
25
+ email: jeremydurham@gmail.com
26
26
  executables: []
27
27
 
28
28
  extensions: []
29
29
 
30
30
  extra_rdoc_files:
31
31
  - README
32
+ - LICENSE
33
+ - TODO
32
34
  files:
35
+ - LICENSE
33
36
  - README
34
37
  - TODO
35
38
  - Rakefile
@@ -45,12 +48,13 @@ files:
45
48
  - lib/paperclip/storage.rb
46
49
  - lib/paperclip/thumbnail.rb
47
50
  - lib/paperclip/upfile.rb
48
- has_rdoc: false
49
- homepage: http://www.thoughtbot.com/projects/paperclip
51
+ - spec/merb_paperclip_spec.rb
52
+ - spec/spec_helper.rb
53
+ has_rdoc: true
54
+ homepage: http://rubyforge.org/projects/merb_paperclip/
50
55
  post_install_message:
51
- rdoc_options:
52
- - --main
53
- - README
56
+ rdoc_options: []
57
+
54
58
  require_paths:
55
59
  - lib
56
60
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -67,11 +71,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
67
71
  version:
68
72
  requirements: []
69
73
 
70
- rubyforge_project:
74
+ rubyforge_project: merb
71
75
  rubygems_version: 1.2.0
72
76
  signing_key:
73
77
  specification_version: 2
74
- summary: Paperclip port for merb
75
- test_files:
76
- - spec/merb_paperclip_spec.rb
77
- - spec/spec_helper.rb
78
+ summary: A Merb plugin that is essentially a port of Jon Yurek's paperclip
79
+ test_files: []
80
+