fileclip 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 91a1a3cdb90d0f73d016ca30944699ad15064e89
4
+ data.tar.gz: 738d45827c66c1c2209026b4a1012c874c754420
5
+ SHA512:
6
+ metadata.gz: 5c4f6a8c14139babd5552a8a73f9025fae242507729bdee27201458d4f5b230f511cd4f3fb17baab2b2e50c9faa5e1c8d33eb419aba14b42f4e2c1eb65e2b920
7
+ data.tar.gz: ab7a5c85320b323c156ce2edd6cae5a3fcc03426e2f2328d177523445736de4f0f1980b393d00be0408bdcda45064f8ecc78b86de333c862322e3053fe27ada2
data/.document ADDED
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ bin/*
3
+ -
4
+ features/**/*.feature
5
+ LICENSE.txt
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source "http://rubygems.org"
2
+
3
+ gem 'rake'
data/Gemfile.lock ADDED
@@ -0,0 +1,10 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ rake (10.1.0)
5
+
6
+ PLATFORMS
7
+ ruby
8
+
9
+ DEPENDENCIES
10
+ rake
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2013 Scott Carleton
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
6
+ this software and associated documentation files (the "Software"), to deal in
7
+ the Software without restriction, including without limitation the rights to
8
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9
+ the Software, and to permit persons to whom the Software is furnished to do so,
10
+ subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,8 @@
1
+ fileclip
2
+ ========
3
+
4
+ A FilePicker / PaperClip mashup. Use Filepicker for uploads and paperclip to process them. Works with Resque & Delayed Paperclip
5
+
6
+
7
+ TODO:
8
+ Empty Project
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require 'bundler/setup'
2
+ require 'rake'
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.1
data/fileclip.gemspec ADDED
@@ -0,0 +1,34 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = "fileclip"
3
+ s.version = "0.0.2"
4
+
5
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
6
+ s.authors = ["Scott Carleton"]
7
+ s.date = "2013-07-26"
8
+ s.description = "NO CODE WRITTEN YET: A FilePicker / PaperClip mashup. Use Filepicker for uploads and paperclip to process them. Works with Resque & Delayed Paperclip"
9
+ s.email = "scott@artsicle.com"
10
+ s.extra_rdoc_files = [
11
+ "LICENSE",
12
+ "README.md"
13
+ ]
14
+ s.files = [
15
+ ".document",
16
+ "Gemfile",
17
+ "Gemfile.lock",
18
+ "LICENSE",
19
+ "README.md",
20
+ "Rakefile",
21
+ "VERSION",
22
+ "fileclip.gemspec",
23
+ "lib/fileclip.rb",
24
+ "lib/fileclip/version.rb"
25
+ ]
26
+ s.homepage = "http://github.com/ScotterC/fileclip"
27
+ s.licenses = ["MIT"]
28
+ s.require_paths = ["lib"]
29
+ s.rubygems_version = "2.0.3"
30
+ s.summary = "A FilePicker / PaperClip mashup."
31
+
32
+ s.add_dependency(%q<rake>, [">= 0"])
33
+ end
34
+
@@ -0,0 +1,3 @@
1
+ module FileClip
2
+ VERSION = "0.0.2"
3
+ end
data/lib/fileclip.rb ADDED
File without changes
metadata ADDED
@@ -0,0 +1,70 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fileclip
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Scott Carleton
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-07-26 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rake
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '>='
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '>='
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ description: 'NO CODE WRITTEN YET: A FilePicker / PaperClip mashup. Use Filepicker
28
+ for uploads and paperclip to process them. Works with Resque & Delayed Paperclip'
29
+ email: scott@artsicle.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files:
33
+ - LICENSE
34
+ - README.md
35
+ files:
36
+ - .document
37
+ - Gemfile
38
+ - Gemfile.lock
39
+ - LICENSE
40
+ - README.md
41
+ - Rakefile
42
+ - VERSION
43
+ - fileclip.gemspec
44
+ - lib/fileclip.rb
45
+ - lib/fileclip/version.rb
46
+ homepage: http://github.com/ScotterC/fileclip
47
+ licenses:
48
+ - MIT
49
+ metadata: {}
50
+ post_install_message:
51
+ rdoc_options: []
52
+ require_paths:
53
+ - lib
54
+ required_ruby_version: !ruby/object:Gem::Requirement
55
+ requirements:
56
+ - - '>='
57
+ - !ruby/object:Gem::Version
58
+ version: '0'
59
+ required_rubygems_version: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - '>='
62
+ - !ruby/object:Gem::Version
63
+ version: '0'
64
+ requirements: []
65
+ rubyforge_project:
66
+ rubygems_version: 2.0.3
67
+ signing_key:
68
+ specification_version: 4
69
+ summary: A FilePicker / PaperClip mashup.
70
+ test_files: []