-
Notifications
You must be signed in to change notification settings - Fork 82
/
crummy.gemspec
31 lines (26 loc) · 1.1 KB
/
crummy.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "crummy/version"
Gem::Specification.new do |s|
s.name = "crummy"
s.version = Crummy::VERSION
s.platform = Gem::Platform::RUBY
s.licenses = ['MIT']
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Zach Inglis", "Andrew Nesbitt"]
s.summary = "Tasty breadcrumbs!"
s.description = "Crummy is a simple and tasty way to add breadcrumbs to your Rails applications."
s.email = "[email protected]"
s.extra_rdoc_files = ["README.md"]
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.homepage = "http://github.com/zachinglis/crummy"
s.require_paths = [%q{lib}]
s.rubygems_version = %q{1.8.8}
s.add_development_dependency 'rake'
s.add_development_dependency 'bundler', '~> 1.0'
s.add_development_dependency 'activesupport'
s.add_development_dependency 'actionpack'
s.add_development_dependency 'appraisal'
s.add_development_dependency 'test-unit'
end