forked from fguillen/DummyDropbox
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdummy_dropbox_sdk.gemspec
25 lines (20 loc) · 1009 Bytes
/
dummy_dropbox_sdk.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "version"
Gem::Specification.new do |s|
s.name = "dummy_dropbox_sdk"
s.version = DummyDropbox::VERSION
s.authors = ["Panter llc"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/panter/dummy_dropbox_sdk"
s.summary = "Dummy monkey patching for the dropbox-sdk ruby gem: 'dropbox-sdk'"
s.description = "Dummy monkey patching for the dropbox-sdk ruby gem: 'dropbox-sdk'. You can test your Dropbox utility using a local folder to simulate your Dropbox folder."
s.rubyforge_project = "DummyDropbox"
s.add_development_dependency "bundler", ">= 1.0.0.rc.6"
s.add_dependency "dropbox-sdk", ">= 1.1"
s.add_dependency "mime-types"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end