-
Notifications
You must be signed in to change notification settings - Fork 7
/
gemedit.gemspec
27 lines (22 loc) · 964 Bytes
/
gemedit.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
require File.expand_path("../lib/gemedit/version", __FILE__)
Gem::Specification.new do |s|
s.name = "gemedit"
s.version = Gemedit::Version
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = "A utility to view a gem's source in your favorite editor"
s.homepage = "https://github.com/lmarlow/gemedit"
s.email = "[email protected]"
s.authors = [ "Lee Marlow" ]
s.has_rdoc = false
s.files = %w( README.rdoc History.txt Rakefile License.txt )
s.files += Dir.glob("lib/**/*")
s.require_path = 'lib'
s.description = <<desc
A utility to view a gem's source in your favorite editor
desc
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "gemedit"
s.add_development_dependency "bundler", "~> 1.0.18"
s.add_development_dependency "rake"
s.add_development_dependency "aruba", "~> 0.4.6"
end