forked from alno/irwi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
irwi.gemspec
35 lines (27 loc) · 1.24 KB
/
irwi.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
require File.expand_path("../lib/irwi/version", __FILE__)
Gem::Specification.new do |s|
s.name = "irwi"
s.version = Irwi::VERSION::STRING
s.platform = Gem::Platform::RUBY
s.authors = ["Alexey Noskov", "Ravi Bhim"]
s.email = ["[email protected]","[email protected]"]
s.homepage = "http://github.com/alno/irwi"
s.summary = "Irwi is Ruby on Rails plugin which adds wiki functionality to your application."
s.description = "Irwi is Ruby on Rails plugin which adds wiki functionality to your application."
s.required_rubygems_version = ">= 1.3.6"
# Gem dependencies
s.add_dependency "diff-lcs", ">= 1.1.2"
s.add_dependency "activerecord", ">= 3.0.0"
s.add_dependency "activesupport", ">= 3.0.0"
s.add_dependency "actionpack", ">= 3.0.0"
s.add_dependency "rails_autolink", ">= 1.0" # TODO should be optional
# Development dependencies
s.add_development_dependency "rspec", ">=2.0"
s.add_development_dependency "sqlite3"
# Gem files
s.files = Dir["app/views/**/*.erb", "lib/**/*.rb", "bin/*", "MIT-LICENSE", "README.rdoc"]
s.extra_rdoc_files = [ "README.rdoc", "MIT-LICENSE"]
s.require_path = 'lib'
# Info
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Irwi", "--main", "README.rdoc"]
end