forked from jaipandya/wedding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwedding.gemspec
38 lines (32 loc) · 1.39 KB
/
wedding.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'wedding/version'
require 'wedding/post_install_message'
Gem::Specification.new do |spec|
spec.name = "wedding"
spec.version = Wedding::VERSION
spec.authors = ["Jai Pandya"]
spec.email = ["[email protected]"]
spec.description = <<-EOS
What could be better than a gem for a wedding. A fun experiment that generates
an invite for my wedding. The gem is generic in nature that accepts a configuration
object to work on.
EOS
spec.summary = %q{I created this gem for inviting friends to my wedding.}
spec.homepage = "http://jaipandya.github.io/wedding"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = ['wedding']
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake", "~> 10.1.0"
spec.add_development_dependency "rspec", "~> 2.6"
spec.post_install_message = Wedding.post_install_message
spec.add_runtime_dependency 'launchy', '2.3.0'
spec.add_runtime_dependency 'require_all', '~> 1.3.2'
spec.add_runtime_dependency 'thor', '~> 0.18'
spec.add_runtime_dependency 'artii', '~> 2.0.3'
spec.add_runtime_dependency 'rainbow', '~> 1.1.4'
end