-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdresscode.gemspec
executable file
·40 lines (27 loc) · 1.32 KB
/
dresscode.gemspec
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
39
40
# encoding: utf-8
$:.push File.expand_path("../lib", __FILE__)
require "dc/version"
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
# => s.required_ruby_version = '>= 1.9.2' ... disturbing test-possibility
s.version = DC.version
s.authors = ["orangenwerk", "2strange", "marcosebald"]
s.email = "web@orangenwerk.com"
s.homepage = "http://orangenwerk.com"
s.description = "DressCode-CMS .. by orangenwerk .. may be released in 2012"
s.files = Dir['lib/**/*']
s.require_path = 'lib'
s.requirements << 'none'
s.name = 'dresscode'
s.rubyforge_project = 'dresscode'
s.summary = 'DressCode - MainSystem'
# => Rails-Version chould be the latest !
s.add_dependency( 'rails', '>= 3.1.3' )
# => Load the DressCode-Gems
s.add_dependency( 'dc_core', '>= 0.0.1' )
s.add_dependency( 'dc_mercury', '>= 0.0.1' )
s.add_dependency( 'dc_pages', '>= 0.0.1' )
s.add_dependency( 'dc_themes_static', '>= 0.0.1' )
s.add_dependency( 'dc_themes_dynamic', '>= 0.0.1' )
s.add_dependency( 'dc_user', '>= 0.0.1' )
end