forked from wagn/wagn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wagn.gemspec
53 lines (41 loc) · 1.54 KB
/
wagn.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
41
42
43
44
45
46
47
48
49
50
51
52
53
#lib = File.expand_path('../lib', __FILE__)
#$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require File.expand_path( '../lib/wagn/version', __FILE__ )
Gem::Specification.new do |s|
s.name = 'wagn'
s.version = Wagn::Version.release
s.authors = ["Ethan McCutchen", "Lewis Hoffman", "Gerry Gleason"]
s.email = ['info@wagn.org']
# s.date = '2013-12-20'
s.summary = "structured wiki web platform"
s.description = "a wiki approach to stuctured data, dynamic interaction, and web design"
s.homepage = 'http://wagn.org'
s.license = 'GPL'
s.files = `git ls-files`.split($/)
s.bindir = 'bin'
s.executables = [ 'wagn' ]
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ["lib"]
s.required_ruby_version = '>= 1.8.7'
[
[ 'rails', '3.2.16' ],
[ 'smartname', '0.2.3' ],
[ 'uuid', '~> 2.3' ],
[ 'paperclip', '~> 2.8' ],
[ 'htmlentities', '~> 4.3' ],
[ 'rmagick', '~> 2.13' ],
[ 'recaptcha', '~> 0.3' ],
[ 'coderay', '~> 1.0' ],
[ 'sass', '~> 3.2' ],
[ 'coffee-script','~> 2.2' ],
[ 'uglifier', '~> 2.5' ],
[ 'haml', '~> 4.0' ],
[ 'kaminari', '~> 0.16' ],
[ 'diffy', '~> 3.0' ],
[ 'diff-lcs', '~> 1.2' ],
# should not depend!
[ 'airbrake', '~> 4.1' ]
].each do |dep|
s.add_runtime_dependency *dep
end
end