Sha256: 26cca4f16ec8388a4a6dcc99308930a404294eb733f38cab86e70aa82783b324

Contents?: true

Size: 1.02 KB

Versions: 20

Compression:

Stored size: 1.02 KB

Contents

# encoding: utf-8

require 'rubygems'
require 'rake'

require 'jeweler'
Jeweler::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
  gem.name = "dbox"
  gem.homepage = "http://github.com/kenpratt/dbox"
  gem.license = "MIT"
  gem.summary = "Dropbox made easy."
  gem.description = "An easy-to-use Dropbox client with fine-grained control over syncs."
  gem.email = "ken@kenpratt.net"
  gem.authors = ["Ken Pratt"]
  gem.executables = ["dbox"]
  gem.add_dependency "multipart-post", ">= 1.1.2"
  gem.add_dependency "oauth", ">= 0.4.5"
  gem.add_dependency "json", ">= 1.5.3"
  gem.add_dependency "sqlite3", ">= 1.3.3"
  gem.add_dependency "activesupport", ">= 3.0.1"
end
Jeweler::RubygemsDotOrgTasks.new

require 'rspec/core'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = FileList['spec/**/*_spec.rb']
end

RSpec::Core::RakeTask.new(:rcov) do |spec|
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rcov = true
end

task :default => :spec

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
dbox-0.6.15 Rakefile
dbox-0.6.14 Rakefile
dbox-0.6.13 Rakefile
dbox-0.6.12 Rakefile
dbox-0.6.11 Rakefile
dbox-0.6.10 Rakefile
dbox-0.6.9 Rakefile
dbox-0.6.8 Rakefile
dbox-0.6.7 Rakefile
dbox-0.6.6 Rakefile
dbox-0.6.5 Rakefile
dbox-0.6.4 Rakefile
dbox-0.6.3 Rakefile
dbox-0.6.2 Rakefile
dbox-0.6.1 Rakefile
dbox-0.6.0 Rakefile
dbox-0.5.3 Rakefile
dbox-0.5.2 Rakefile
dbox-0.5.1 Rakefile
dbox-0.5.0 Rakefile