File: control

package info (click to toggle)
ruby-data-migrate 6.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 568 kB
  • sloc: ruby: 1,844; makefile: 6
file content (41 lines) | stat: -rw-r--r-- 1,502 bytes parent folder | download
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
Source: ruby-data-migrate
Section: ruby
Priority: optional
Maintainer: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers@lists.alioth.debian.org>
Uploaders: Andrew Lee (李健秋) <ajqlee@debian.org>
Build-Depends: debhelper-compat (= 13),
               gem2deb,
               pry,
               rake,
               rubocop,
               ruby-appraisal,
               ruby-rails (>= 5.0),
               ruby-rspec,
               ruby-rspec-core,
               ruby-sqlite3,
               ruby-timecop
Standards-Version: 4.6.0
Vcs-Git: https://salsa.debian.org/ruby-team/ruby-data-migrate.git
Vcs-Browser: https://salsa.debian.org/ruby-team/ruby-data-migrate
Homepage: https://github.com/ilyakatz/data-migrate
Testsuite: autopkgtest-pkg-ruby
XS-Ruby-Versions: all
Rules-Requires-Root: no

Package: ruby-data-migrate
Architecture: all
XB-Ruby-Versions: ${ruby:Versions}
Depends: ${misc:Depends},
         ${ruby:Depends},
         ${shlibs:Depends}
Description: migrate data alongside schema changes for rake tasks
 This data_migrate gem provides data migrations alongside schema
 migrations for rake tasks.
 .
 Data migrations are stored in db/data. They act like schema migrations,
 except they should be reserved for data migrations.
 .
 For instance, if you realize you need to titleize all yours titles,
 this is the place to do it. Running any of the provided rake tasks
 also creates a data schema table to mirror the usual schema migrations
 table to track all the goodness.