-
Notifications
You must be signed in to change notification settings - Fork 20
/
guides.gemspec
41 lines (33 loc) · 1.39 KB
/
guides.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 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'guides/version'
os = Gem::Platform.local.os
is_mingw = (os == "mingw32")
Gem::Specification.new do |s|
s.name = "guides"
s.version = Guides::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Yehuda Katz"]
s.email = ["wycats@gmail.com"]
s.homepage = "http://yehudakatz.com"
s.summary = %q{Extracting the Rails Guides framework for the rest of us}
s.description = %q{A tool for creating version controlled guides for open source projects, based on the Rails Guides framework}
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "guides"
s.add_dependency "actionpack", "~> 3.0.0"
s.add_dependency "activesupport", "~> 3.0.0"
s.add_dependency "rack", "~> 1.2.1"
s.add_dependency "RedCloth", "~> 4.2.7"
s.add_dependency "maruku", "~> 0.6.0"
s.add_dependency "thor", "~> 0.14.6"
s.add_dependency "thin", "~> 1.2.7"
s.add_dependency 'eventmachine', '~> 1.0.0.beta.4'
s.add_development_dependency 'rspec', '~> 2.0'
s.add_development_dependency "faraday", "~> 0.5.0"
s.add_development_dependency 'packager'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = %w(guides)
s.require_paths = ["lib"]
end