forked from mattmccray/comatose
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathRakefile
More file actions
38 lines (32 loc) · 1.06 KB
/
Rakefile
File metadata and controls
38 lines (32 loc) · 1.06 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
34
35
36
37
38
#require 'rake'
#require 'rails/all'
#require File.expand_path('../lib/comatose/engine.rb', __FILE__)
#
#Comatose::Engine.load_tasks
require 'echoe'
require 'rake'
require 'rails/all'
require File.expand_path('../lib/comatose/version.rb', __FILE__)
Echoe.new('comatose-rubyisbeautiful') do |p|
p.project = 'comatose-rubyisbeautiful'
p.require_signed = true
p.author = ['Bryan Taylor', 'Matt McCray', "Michael Kovacs"]
p.summary = 'Micro CMS - resurrected for Rails 3'
p.runtime_dependencies = ['rake >=0.9.2', 'rails >=3.1.1', 'acts_as_list-rails3', 'acts_as_tree_rails3']
p.development_dependencies = ['term-ansicolor']
p.retain_gemspec = true
p.rubygems_version = ">=1.8.4"
p.version = Comatose::VERSION
p.install_message = File.read('INSTALL')
p.description = %q{Web Content Management in Rails 3.}
p.email = %q{ artofobjects at gmail dot com }
p.ignore_pattern = [
"bin/*",
"config/database.yml",
"config/routes.rb",
"config/initializers/*",
"db/schema.rb",
"db/*.sqlite3",
"lib/tasks/gem.rake"
]
end