easyio 0.1.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.
- data/.document +5 -0
- data/.gitignore +21 -0
- data/LICENSE +20 -0
- data/README.rdoc +18 -0
- data/Rakefile +54 -0
- data/VERSION +1 -0
- data/easyio.gemspec +57 -0
- data/lib/easyio.rb +55 -0
- data/test/helper.rb +10 -0
- data/test/test_easyio.rb +29 -0
- metadata +85 -0
data/.document
ADDED
data/.gitignore
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2009 Steve
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
= easyio
|
2
|
+
|
3
|
+
Description goes here.
|
4
|
+
|
5
|
+
== Note on Patches/Pull Requests
|
6
|
+
|
7
|
+
* Fork the project.
|
8
|
+
* Make your feature addition or bug fix.
|
9
|
+
* Add tests for it. This is important so I don't break it in a
|
10
|
+
future version unintentionally.
|
11
|
+
* Commit, do not mess with rakefile, version, or history.
|
12
|
+
(if you want to have your own version, that is fine but
|
13
|
+
bump version in a commit by itself I can ignore when I pull)
|
14
|
+
* Send me a pull request. Bonus points for topic branches.
|
15
|
+
|
16
|
+
== Copyright
|
17
|
+
|
18
|
+
Copyright (c) 2009 Steve. See LICENSE for details.
|
data/Rakefile
ADDED
@@ -0,0 +1,54 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake'
|
3
|
+
|
4
|
+
begin
|
5
|
+
require 'jeweler'
|
6
|
+
Jeweler::Tasks.new do |gem|
|
7
|
+
gem.name = "easyio"
|
8
|
+
gem.summary = "A gem for making IO tasks easy (at least for me)"
|
9
|
+
gem.description = "A gem for making IO tasks easy (at least for me)"
|
10
|
+
gem.email = "steve.eichert@gmail.com"
|
11
|
+
gem.homepage = "http://github.com/eichert12/easyio"
|
12
|
+
gem.authors = ["Steve Eichert"]
|
13
|
+
gem.add_runtime_dependency "fastercsv", ">= 1.5.0"
|
14
|
+
gem.add_runtime_dependency "aws-s3", ">= 0.6.2"
|
15
|
+
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
16
|
+
end
|
17
|
+
Jeweler::GemcutterTasks.new
|
18
|
+
rescue LoadError
|
19
|
+
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
|
20
|
+
end
|
21
|
+
|
22
|
+
require 'rake/testtask'
|
23
|
+
Rake::TestTask.new(:test) do |test|
|
24
|
+
test.libs << 'lib' << 'test'
|
25
|
+
test.pattern = 'test/**/test_*.rb'
|
26
|
+
test.verbose = true
|
27
|
+
end
|
28
|
+
|
29
|
+
begin
|
30
|
+
require 'rcov/rcovtask'
|
31
|
+
Rcov::RcovTask.new do |test|
|
32
|
+
test.libs << 'test'
|
33
|
+
test.pattern = 'test/**/test_*.rb'
|
34
|
+
test.verbose = true
|
35
|
+
end
|
36
|
+
rescue LoadError
|
37
|
+
task :rcov do
|
38
|
+
abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
task :test => :check_dependencies
|
43
|
+
|
44
|
+
task :default => :test
|
45
|
+
|
46
|
+
require 'rake/rdoctask'
|
47
|
+
Rake::RDocTask.new do |rdoc|
|
48
|
+
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
49
|
+
|
50
|
+
rdoc.rdoc_dir = 'rdoc'
|
51
|
+
rdoc.title = "easyio #{version}"
|
52
|
+
rdoc.rdoc_files.include('README*')
|
53
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
54
|
+
end
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.1.0
|
data/easyio.gemspec
ADDED
@@ -0,0 +1,57 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{easyio}
|
8
|
+
s.version = "0.1.0"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Steve Eichert"]
|
12
|
+
s.date = %q{2009-11-12}
|
13
|
+
s.description = %q{A gem for making IO tasks easy (at least for me)}
|
14
|
+
s.email = %q{steve.eichert@gmail.com}
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"LICENSE",
|
17
|
+
"README.rdoc"
|
18
|
+
]
|
19
|
+
s.files = [
|
20
|
+
".document",
|
21
|
+
".gitignore",
|
22
|
+
"LICENSE",
|
23
|
+
"README.rdoc",
|
24
|
+
"Rakefile",
|
25
|
+
"VERSION",
|
26
|
+
"easyio.gemspec",
|
27
|
+
"lib/easyio.rb",
|
28
|
+
"test/helper.rb",
|
29
|
+
"test/test_easyio.rb"
|
30
|
+
]
|
31
|
+
s.homepage = %q{http://github.com/eichert12/easyio}
|
32
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
33
|
+
s.require_paths = ["lib"]
|
34
|
+
s.rubygems_version = %q{1.3.5}
|
35
|
+
s.summary = %q{A gem for making IO tasks easy (at least for me)}
|
36
|
+
s.test_files = [
|
37
|
+
"test/helper.rb",
|
38
|
+
"test/test_easyio.rb"
|
39
|
+
]
|
40
|
+
|
41
|
+
if s.respond_to? :specification_version then
|
42
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
43
|
+
s.specification_version = 3
|
44
|
+
|
45
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
46
|
+
s.add_runtime_dependency(%q<fastercsv>, [">= 1.5.0"])
|
47
|
+
s.add_runtime_dependency(%q<aws-s3>, [">= 0.6.2"])
|
48
|
+
else
|
49
|
+
s.add_dependency(%q<fastercsv>, [">= 1.5.0"])
|
50
|
+
s.add_dependency(%q<aws-s3>, [">= 0.6.2"])
|
51
|
+
end
|
52
|
+
else
|
53
|
+
s.add_dependency(%q<fastercsv>, [">= 1.5.0"])
|
54
|
+
s.add_dependency(%q<aws-s3>, [">= 0.6.2"])
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
data/lib/easyio.rb
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
require 'fastercsv'
|
2
|
+
|
3
|
+
class EasyIO
|
4
|
+
DefaultOptions = { :col_sep => ",", :headers => true, :header_converters => :symbol }
|
5
|
+
DefaultSource = defined?(RAILS_ENV) && RAILS_ENV == "production" ? :s3 : :file_system
|
6
|
+
|
7
|
+
def self.default_s3_bucket(bucket)
|
8
|
+
@default_bucket = bucket
|
9
|
+
end
|
10
|
+
|
11
|
+
def self.write_file(file)
|
12
|
+
File.open(file, "w") { |f| yield f }
|
13
|
+
end
|
14
|
+
|
15
|
+
def self.write_csv(file)
|
16
|
+
FasterCSV.open(file, "w") { |csv| yield csv }
|
17
|
+
end
|
18
|
+
|
19
|
+
def self.open_csv(file, options = {})
|
20
|
+
FasterCSV.open(file, default_options(options)) { |csv| yield csv }
|
21
|
+
end
|
22
|
+
|
23
|
+
def self.file_source(options = {})
|
24
|
+
options.delete(:source) || DefaultSource
|
25
|
+
end
|
26
|
+
|
27
|
+
def self.each_row(file, options = {})
|
28
|
+
if file_source(options) == :s3
|
29
|
+
require 'aws/s3'
|
30
|
+
require 'open-uri'
|
31
|
+
url = AWS::S3::S3Object.url_for(file, get_s3_bucket(options))
|
32
|
+
open(url) do |f|
|
33
|
+
f.each_line do |line|
|
34
|
+
FasterCSV.parse(line, default_options(options)) do |row|
|
35
|
+
yield row
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
else
|
40
|
+
open_csv(file, options) do |csv|
|
41
|
+
csv.each do |row|
|
42
|
+
yield row
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
def self.get_s3_bucket(options = {})
|
49
|
+
options.delete(:bucket) || @default_bucket
|
50
|
+
end
|
51
|
+
|
52
|
+
def self.default_options(options)
|
53
|
+
DefaultOptions.merge(options)
|
54
|
+
end
|
55
|
+
end
|
data/test/helper.rb
ADDED
data/test/test_easyio.rb
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
require 'helper'
|
2
|
+
|
3
|
+
class TestEasyio < Test::Unit::TestCase
|
4
|
+
context "file_source" do
|
5
|
+
should "use file system when running in development" do
|
6
|
+
assert_equal EasyIO.file_source, :file_system
|
7
|
+
end
|
8
|
+
|
9
|
+
should "use provided source when specified in options" do
|
10
|
+
assert_equal EasyIO.file_source(:source => :foo), :foo
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
context "get_s3_bucket" do
|
15
|
+
should "get bucket from options when available" do
|
16
|
+
assert_equal EasyIO.get_s3_bucket(:bucket => "my-awesome-bucket"), "my-awesome-bucket"
|
17
|
+
end
|
18
|
+
|
19
|
+
should "use bucket from options before default bucket" do
|
20
|
+
EasyIO.default_s3_bucket "foobar"
|
21
|
+
assert_equal EasyIO.get_s3_bucket(:bucket => "my-awesome-bucket"), "my-awesome-bucket"
|
22
|
+
end
|
23
|
+
|
24
|
+
should "get use default_s3_bucket when set" do
|
25
|
+
EasyIO.default_s3_bucket "foobar"
|
26
|
+
assert_equal EasyIO.get_s3_bucket, "foobar"
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
metadata
ADDED
@@ -0,0 +1,85 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: easyio
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Steve Eichert
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-11-12 00:00:00 -05:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: fastercsv
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 1.5.0
|
24
|
+
version:
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: aws-s3
|
27
|
+
type: :runtime
|
28
|
+
version_requirement:
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 0.6.2
|
34
|
+
version:
|
35
|
+
description: A gem for making IO tasks easy (at least for me)
|
36
|
+
email: steve.eichert@gmail.com
|
37
|
+
executables: []
|
38
|
+
|
39
|
+
extensions: []
|
40
|
+
|
41
|
+
extra_rdoc_files:
|
42
|
+
- LICENSE
|
43
|
+
- README.rdoc
|
44
|
+
files:
|
45
|
+
- .document
|
46
|
+
- .gitignore
|
47
|
+
- LICENSE
|
48
|
+
- README.rdoc
|
49
|
+
- Rakefile
|
50
|
+
- VERSION
|
51
|
+
- easyio.gemspec
|
52
|
+
- lib/easyio.rb
|
53
|
+
- test/helper.rb
|
54
|
+
- test/test_easyio.rb
|
55
|
+
has_rdoc: true
|
56
|
+
homepage: http://github.com/eichert12/easyio
|
57
|
+
licenses: []
|
58
|
+
|
59
|
+
post_install_message:
|
60
|
+
rdoc_options:
|
61
|
+
- --charset=UTF-8
|
62
|
+
require_paths:
|
63
|
+
- lib
|
64
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: "0"
|
69
|
+
version:
|
70
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - ">="
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: "0"
|
75
|
+
version:
|
76
|
+
requirements: []
|
77
|
+
|
78
|
+
rubyforge_project:
|
79
|
+
rubygems_version: 1.3.5
|
80
|
+
signing_key:
|
81
|
+
specification_version: 3
|
82
|
+
summary: A gem for making IO tasks easy (at least for me)
|
83
|
+
test_files:
|
84
|
+
- test/helper.rb
|
85
|
+
- test/test_easyio.rb
|