forked from alunny/confetti
-
Notifications
You must be signed in to change notification settings - Fork 7
/
confetti.gemspec
27 lines (22 loc) · 1018 Bytes
/
confetti.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "confetti/version"
Gem::Specification.new do |s|
s.name = "confetti"
s.version = Confetti::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Andrew Lunny", "Filip Maj", "Hardeep Shoker", "Brett Rudd", "Ryan Willoughby"]
s.email = ["[email protected]"]
s.homepage = "http://rubygems.org/gems/confetti"
s.summary = %q{Generate mobile app config files}
s.description = %q{ A little library to generate platform-specific mobile app
configuration files from a W3C widget spec compliant config.xml}
s.rubyforge_project = "confetti"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ["lib"]
s.add_dependency "mustache", "~> 0.11.2"
s.add_dependency "nokogiri", "~> 1.10.4"
s.add_dependency "versionomy", "~> 0.5.0"
s.add_development_dependency "rspec", "~> 2.6.0"
end