forked from james2m/seedbank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathseedbank.gemspec
60 lines (48 loc) · 1.81 KB
/
seedbank.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "seedbank/version"
Gem::Specification.new do |s|
s.name = %q{seedbank}
s.version = Seedbank::VERSION
s.date = `git log -1 --format="%cd" --date=short lib/seedbank/version.rb`
s.required_rubygems_version = Gem::Requirement.new(">=1.2.0") if s.respond_to?(:required_rubygems_version=)
s.rubygems_version = %q{1.3.5}
s.license = "MIT"
s.authors = ["James McCarthy"]
s.email = %q{james2mccarthy@gmail.com}
s.homepage = %q{http://github.com/james2m/seedbank}
s.summary = %q{
Extends Rails seeds to split out complex seeds into their own file
and have different seeds for each environment.
}
s.description = %q{
Extends Rails seeds to split out complex seeds into multiple
files and lets each environment have it's own seeds.
}
s.license = "MIT"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.rdoc_options = ["--charset=UTF-8"]
s.extra_rdoc_files = [
"MIT-LICENSE",
"README.md"
]
s.add_development_dependency "minitest", "~> 3.2"
s.add_development_dependency "flexmock"
s.add_development_dependency "rails", "~> 3.2.6"
s.post_install_message = %q{
================================================================================
Rails 2.x
---------
If you are using Seedbank with Rails 2.x you will need to place the following at
the end of your Rakefile so Rubygems can load the seedbank tasks;
require 'seedbank'
Seedbank.load_tasks if defined?(Seedbank)
Rails 3.x
---------
Your work here is done!
================================================================================
}
end