forked from fringd/zipline
-
Notifications
You must be signed in to change notification settings - Fork 1
/
zipline.gemspec
21 lines (18 loc) · 873 Bytes
/
zipline.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/zipline/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Ram Dobson"]
gem.email = ["ram.dobson@solsystemscompany.com"]
gem.description = %q{this is a giant pile of hax that may let you stream dynamically generated zip files}
gem.summary = %q{stream zip files from rails}
gem.homepage = "http://github.com/fringd/zipline"
gem.files = `git ls-files`.split($\) - %w{.gitignore}
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "zipline"
gem.require_paths = ["lib"]
gem.version = Zipline::VERSION
gem.add_dependency 'rubyzip', ['= 1.1.7']
gem.add_dependency 'rails', ['>= 3.2.1', '< 4.3']
gem.add_dependency 'curb'
end