This repository has been archived by the owner on Apr 14, 2023. It is now read-only.
forked from thuss/standalone-migrations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
standalone_migrations.gemspec
70 lines (65 loc) · 2.41 KB
/
standalone_migrations.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
60
61
62
63
64
65
66
67
68
69
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "standalone_migrations"
s.version = "2.1.1"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Todd Huss", "Michael Grosser"]
s.date = "2013-04-12"
s.email = "thuss@gabrito.com"
s.extra_rdoc_files = [
"README.markdown"
]
s.files = [
".travis.yml",
"Gemfile",
"Gemfile.lock",
"MIT-LICENSE",
"README.markdown",
"Rakefile",
"VERSION",
"example/.gitignore",
"example/Rakefile",
"example/db/default/config.yml",
"example/db/default/migrate/20120930053225_create_table_awesome_migration.rb",
"lib/standalone_migrations.rb",
"lib/standalone_migrations/configurator.rb",
"lib/standalone_migrations/generator.rb",
"lib/standalone_migrations/minimal_railtie_config.rb",
"lib/standalone_migrations/tasks.rb",
"lib/standalone_migrations/tasks/connection.rake",
"lib/standalone_migrations/tasks/db/new_migration.rake",
"lib/standalone_migrations/tasks/environment.rake",
"lib/tasks/standalone_migrations.rb",
"spec/spec_helper.rb",
"spec/standalone_migrations/configurator_spec.rb",
"spec/standalone_migrations_spec.rb",
"standalone_migrations.gemspec",
"vendor/migration_helpers/MIT-LICENSE",
"vendor/migration_helpers/README.markdown",
"vendor/migration_helpers/init.rb",
"vendor/migration_helpers/lib/migration_helper.rb"
]
s.homepage = "http://github.com/thuss/standalone-migrations"
s.require_paths = ["lib"]
s.rubygems_version = "1.8.24"
s.summary = "A thin wrapper to use Rails Migrations in non Rails projects"
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<rake>, [">= 0"])
s.add_runtime_dependency(%q<activerecord>, ["~> 3.2.13"])
s.add_runtime_dependency(%q<railties>, ["~> 3.2.13"])
else
s.add_dependency(%q<rake>, [">= 0"])
s.add_dependency(%q<activerecord>, ["~> 3.2.13"])
s.add_dependency(%q<railties>, ["~> 3.2.13"])
end
else
s.add_dependency(%q<rake>, [">= 0"])
s.add_dependency(%q<activerecord>, ["~> 3.2.13"])
s.add_dependency(%q<railties>, ["~> 3.2.13"])
end
end