refinerycms-resources 0.9.9.3 → 0.9.9.4

Sign up to get free protection for your applications and to get access to all the features.
data/license.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # MIT License
2
2
 
3
- Copyright (c) 2005-2010 [Resolve Digital](http://www.resolvedigital.com)
3
+ Copyright (c) 2005-2011 [Resolve Digital](http://www.resolvedigital.com)
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -2,10 +2,10 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{refinerycms-resources}
5
- s.version = %q{0.9.9.3}
5
+ s.version = %q{0.9.9.4}
6
6
  s.summary = %q{Resources engine for Refinery CMS}
7
7
  s.description = %q{Handles all file upload and processing functionality in Refinery CMS.}
8
- s.date = %q{2011-02-17}
8
+ s.date = %q{2011-02-24}
9
9
  s.email = %q{info@refinerycms.com}
10
10
  s.homepage = %q{http://refinerycms.com}
11
11
  s.rubyforge_project = %q{refinerycms}
@@ -75,7 +75,6 @@ Gem::Specification.new do |s|
75
75
  'lib/generators/refinerycms_resources_generator.rb',
76
76
  'lib/refinerycms-resources.rb',
77
77
  'license.md',
78
- 'readme.md',
79
78
  'refinerycms-resources.gemspec',
80
79
  'spec',
81
80
  'spec/models',
@@ -84,7 +83,7 @@ Gem::Specification.new do |s|
84
83
  'spec/uploads/refinery_is_awesome.txt'
85
84
  ]
86
85
 
87
- s.add_dependency 'refinerycms-core', '~> 0.9.9.3'
86
+ s.add_dependency 'refinerycms-core', '~> 0.9.9.4'
88
87
  s.add_dependency 'dragonfly', '~> 0.8.2'
89
88
  s.add_dependency 'rack-cache', '>= 0.5.3'
90
89
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: refinerycms-resources
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.9.9.3
5
+ version: 0.9.9.4
6
6
  platform: ruby
7
7
  authors:
8
8
  - Resolve Digital
@@ -13,7 +13,7 @@ autorequire:
13
13
  bindir: bin
14
14
  cert_chain: []
15
15
 
16
- date: 2011-02-17 00:00:00 +13:00
16
+ date: 2011-02-24 00:00:00 +13:00
17
17
  default_executable:
18
18
  dependencies:
19
19
  - !ruby/object:Gem::Dependency
@@ -24,7 +24,7 @@ dependencies:
24
24
  requirements:
25
25
  - - ~>
26
26
  - !ruby/object:Gem::Version
27
- version: 0.9.9.3
27
+ version: 0.9.9.4
28
28
  type: :runtime
29
29
  version_requirements: *id001
30
30
  - !ruby/object:Gem::Dependency
@@ -101,7 +101,6 @@ files:
101
101
  - lib/generators/refinerycms_resources_generator.rb
102
102
  - lib/refinerycms-resources.rb
103
103
  - license.md
104
- - readme.md
105
104
  - refinerycms-resources.gemspec
106
105
  - spec/models/resource_spec.rb
107
106
  - spec/uploads/refinery_is_awesome.txt
data/readme.md DELETED
@@ -1,9 +0,0 @@
1
- # Resources (Files)
2
-
3
- ## About
4
-
5
- The Resources plugin allows you to upload files such as PDFs and other files you want your users to download.
6
-
7
- ## How it works
8
-
9
- The resources plugin uses [dragonfly](http://github.com/markevans/dragonfly) to handle the storage of files. This plugin is mainly comprised of the [Crudfiy mixin](http://github.com/resolve/refinerycms/blob/master/vendor/plugins/refinery/crud.md).