forked from rails/spring
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspring.gemspec
More file actions
22 lines (19 loc) · 819 Bytes
/
spring.gemspec
File metadata and controls
22 lines (19 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'spring/version'
Gem::Specification.new do |gem|
gem.name = "spring"
gem.version = Spring::VERSION
gem.authors = ["Jon Leighton"]
gem.email = ["j@jonathanleighton.com"]
gem.description = %q{Rails application preloader}
gem.summary = %q{Rails application preloader}
gem.homepage = "http://github.com/rails/spring"
gem.license = "MIT"
gem.files = Dir["LICENSE.txt", "README.md", "lib/**/*", "bin/*"]
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.require_paths = ["lib"]
gem.add_development_dependency 'activesupport', '~> 4.2.0'
gem.add_development_dependency 'rake'
end