-
Notifications
You must be signed in to change notification settings - Fork 152
/
standalone_migrations.gemspec
79 lines (74 loc) · 2.79 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
70
71
72
73
74
75
76
77
78
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
# stub: standalone_migrations 7.2.0 ruby lib
Gem::Specification.new do |s|
s.name = "standalone_migrations".freeze
s.version = "7.2.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
s.require_paths = ["lib".freeze]
s.authors = ["Todd Huss".freeze, "Michael Grosser".freeze]
s.date = "2024-09-13"
s.email = "[email protected]".freeze
s.extra_rdoc_files = [
"LICENSE",
"README.markdown"
]
s.files = [
".github/workflows/CI.yml",
".rspec",
"Gemfile",
"LICENSE",
"README.markdown",
"Rakefile",
"VERSION",
"example/Gemfile",
"example/README.markdown",
"example/Rakefile",
"example/app/models/movie.rb",
"example/article.pdf",
"example/boot.rb",
"example/db/.gitignore",
"example/db/config.yml",
"example/db/migrate/20210202023614_create_movies.rb",
"example/db/schema.rb",
"lib/standalone_migrations.rb",
"lib/standalone_migrations/callbacks.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/callbacks_spec.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".freeze
s.licenses = ["MIT".freeze]
s.rubygems_version = "3.1.4".freeze
s.summary = "A thin wrapper to use Rails Migrations in non Rails projects".freeze
if s.respond_to? :specification_version then
s.specification_version = 4
end
if s.respond_to? :add_runtime_dependency then
s.add_runtime_dependency(%q<rake>.freeze, [">= 10.0"])
s.add_runtime_dependency(%q<activerecord>.freeze, [">= 6.0.0", "< 8.0"])
s.add_runtime_dependency(%q<railties>.freeze, [">= 6.0.0", "< 8.0"])
s.add_runtime_dependency(%q<nokogiri>.freeze, ["~> 1.14"])
else
s.add_dependency(%q<rake>.freeze, [">= 10.0"])
s.add_dependency(%q<activerecord>.freeze, [">= 6.0.0", "< 8.0"])
s.add_dependency(%q<railties>.freeze, [">= 6.0.0", "< 8.0"])
s.add_dependency(%q<nokogiri>.freeze, ["~> 1.14"])
end
end