-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathk3cms.gemspec
More file actions
33 lines (27 loc) · 1.22 KB
/
k3cms.gemspec
File metadata and controls
33 lines (27 loc) · 1.22 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 -*-
$:.push File.expand_path("../lib", __FILE__)
require "k3cms/version"
k3cms_core_gems = %w[
k3cms_core
k3cms_pages
k3cms_ribbon
k3cms_inline_editor
k3cms_authorization
]
Gem::Specification.new do |s|
s.name = "k3cms"
s.description = %q{K3cms is a complete Content Management System (CMS) for Rails 3, designed to enable to people to quickly launch websites that can be easily managed by non-technical end users while providing advanced features for software developers and graphics professionals.}
s.summary = %q{A Content Management System for Rails 3}
s.homepage = "http://k3cms.org"
s.authors = `git shortlog --summary --numbered | awk '{print $2, $3 }'`.split("\n")
s.email = `git shortlog --summary --numbered --email | awk '{print $2, $3, $4}'`.split("\n")
k3cms_core_gems.each do |gem_name|
s.add_dependency gem_name
end
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.version = K3cms::Version
s.platform = Gem::Platform::RUBY
end