-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathspin.gemspec
More file actions
19 lines (15 loc) · 754 Bytes
/
spin.gemspec
File metadata and controls
19 lines (15 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
require "spin/version"
Gem::Specification.new "spin", Spin::VERSION do |s|
s.authors = ["Jesse Storimer"]
s.email = ["jstorimer@gmail.com"]
s.homepage = "http://jstorimer.github.com/spin"
s.summary = %q{Spin preloads your Rails environment to speed up your autotest(ish) workflow.}
s.description = %Q{#{s.summary}
By preloading your Rails environment for testing you don't load the same code over and over and over... Spin works best for an autotest(ish) workflow.}
s.executables = ['spin']
s.files = ["README.md"] + Dir["lib/**/*"]
s.test_files = Dir["spec/**/*"]
s.add_development_dependency "rake"
s.add_development_dependency "rspec", "~> 2.13.0"
end