Sha256: 23fc4ac7813457b6d18c63fea0ad43f0daa31c38b82c56ca36eb4f9ae443401e
Contents?: true
Size: 1.25 KB
Versions: 7
Compression:
Stored size: 1.25 KB
Contents
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.name = "kindai" gem.homepage = "http://github.com/hitode909/kindairb" gem.license = "MIT" gem.summary = %Q{kindai digital library downloader} gem.description = %Q{kindai.rb is kindai digital library downloader.} gem.email = "hitode909@gmail.com" gem.authors = ["hitode909"] gem.executables = ["kindai.rb"] gem.rdoc_options = ["--main", "README.rdoc", "--exclude", "spec"] 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 require 'rdoc/task' Rake::RDocTask.new do |rdoc| version = File.exist?('VERSION') ? File.read('VERSION') : "" rdoc.rdoc_dir = 'rdoc' rdoc.title = "kindai #{version}" rdoc.rdoc_files.include('README.rdoc', 'LICENSE.txt', 'lib/**/*.rb') rdoc.main = 'README.rdoc' end
Version data entries
7 entries across 7 versions & 1 rubygems
Version | Path |
---|---|
kindai-2.4.3 | Rakefile |
kindai-2.4.2 | Rakefile |
kindai-2.4.1 | Rakefile |
kindai-2.4.0 | Rakefile |
kindai-2.3.0 | Rakefile |
kindai-2.2.1 | Rakefile |
kindai-2.2.0 | Rakefile |