Sha256: 034fec9e96ea72558a6b926306d6655a9ed2c6396fd106ff9fe9949cc8c13940

Contents?: true

Size: 1.06 KB

Versions: 7

Compression:

Stored size: 1.06 KB

Contents

# encoding: utf-8

require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
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 = "activeadmin-dropzone"
  gem.homepage = "http://maximgladkov.com/blog/activeadmin-dropzone-gem"
  gem.license = "MIT"
  gem.summary = %Q{Easy to use integration of drag&drop files upload via dropzone.js for ActiveAdmin}
  gem.email = "contact@maximgladkov.com"
  gem.authors = ["Maxim Gladkov"]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

task :default => :test

require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "activeadmin-dropzone #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
activeadmin-dropzone-0.2.6 Rakefile
activeadmin-dropzone-0.2.4 Rakefile
activeadmin-dropzone-0.2.3 Rakefile
activeadmin-dropzone-0.2.2 Rakefile
activeadmin-dropzone-0.2.1 Rakefile
activeadmin-dropzone-0.0.2 Rakefile
activeadmin-dropzone-0.0.1 Rakefile