-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpretty_face.gemspec
30 lines (24 loc) · 1.23 KB
/
pretty_face.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "pretty_face/version"
Gem::Specification.new do |s|
s.name = "pretty_face"
s.version = PrettyFace::VERSION
s.license = 'MIT'
s.authors = ["Jeffrey S. Morgan", "Joel Byler", "Steve Jackson", "Sahithya Wintrich", "Carl Shotwell"]
s.email = ["jeff.morgan@leandog.com", "joelbyler@gmail.com", "steve.jackson@leandogsoftware.com", "sahithya.wintrich@gmail.com", "carl.shotwell@leandog.com"]
s.homepage = "http://github.com/cheezy/pretty_face"
s.summary = %q{HTML Report/Formatter for Cucumber and RSpec}
s.description = %q{HTML Report/Formatter for cucumber that allows user to modify erb in order to customize.}
s.rubyforge_project = "pretty_face"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features,fixtures}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency "actionpack", ">= 3.2.13"
s.add_dependency "syntax"
s.add_development_dependency "cucumber"
s.add_development_dependency "rspec"
s.add_development_dependency "aruba"
s.add_runtime_dependency "cucumber"
end