forked from zires/ramix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
33 lines (29 loc) · 1.03 KB
/
Copy pathRakefile
File metadata and controls
33 lines (29 loc) · 1.03 KB
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
26
27
28
29
30
31
32
33
# encoding: utf-8
require 'rubygems'
require 'rake'
require 'jeweler'
$LOAD_PATH.unshift(File.dirname(__FILE__))
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), 'lib'))
require 'ramix/version'
Jeweler::Tasks.new do |gem|
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
gem.name = "ramix"
gem.version = Ramix::VERSION::STRING
gem.homepage = "http://github.com/zires/ramix"
gem.license = "MIT"
gem.summary = %Q{new rails application generator}
gem.description = %Q{Ramix is a command-line tool for initializing a new rails application.Just the same as rails but adding more additional options.}
gem.email = "zshuaibin@gmail.com"
gem.authors = ["Thierry Zires"]
# dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new
require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
test.libs << 'lib' << 'test'
test.pattern = 'test/**/test_*.rb'
test.verbose = true
end
task :default => :test
require 'yard'
YARD::Rake::YardocTask.new