forked from scottburton11/Badgeable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbadgeable.gemspec
26 lines (21 loc) · 1008 Bytes
/
badgeable.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
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/badgeable/version", __FILE__)
Gem::Specification.new do |s|
s.name = "badgeable"
s.version = Badgeable::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Scott Burton"]
s.email = ["[email protected]"]
s.homepage = "http://rubygems.org/gems/badgeable"
s.summary = "Badgeable is an elegant DSL for awarding badges"
s.description = "Badgeable provides an elegant DSL for describing and awarding badges to your Ruby objects."
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "badgeable"
s.add_development_dependency "bundler", ">= 1.0.0"
s.add_development_dependency "rspec", ">= 2.0.0.rc"
s.add_development_dependency "cucumber"
s.add_development_dependency "factory_girl", ">= 1.3.2"
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
s.require_path = 'lib'
end