activerecord-safer_migrations 0.1.0 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 75845456397be277043e0b89d6fedbac416d3fe3
4
- data.tar.gz: 01add6f99123fd1bd0246f41504ec754d674dc87
3
+ metadata.gz: d5bbd70be93d0f635e3c8deedb66ab57339497ed
4
+ data.tar.gz: ab6d3074032be9a7861f766a70118b7c6472744f
5
5
  SHA512:
6
- metadata.gz: b95179e85acb6a179fe9a05f018a4775fad27680bdb8f5945dbe43cc12187a53d91b13e4567097721df8ad5f14cdd465d68fb6aedc0896d86e19214e5b932d24
7
- data.tar.gz: dbcd63bb99f1202a72d7a01b7857af9635bcce72d1c9703bedfa3035b607b9fcf2752bcb9953bba2b54412b0b46702f93a35c79355b7f78edf1d5729cd035148
6
+ metadata.gz: 6c7b9a3ec03145bc9fc37c8e1fe03d999756fbf77953c59f83fcc222dc021fc70ef83d0023a5dc6123595fd92abea7397aa50feaca9dc2b50a0494bf2b979222
7
+ data.tar.gz: 04a96fd6b38c2624f138ec3cdcc6c6bfe6a89423c7a4564066f07223e6d7c3f3168db849c31f118cdf31223a1fce35a3dfae177054176ad73891188bca61d755
data/.gitignore CHANGED
@@ -1 +1,2 @@
1
1
  /.bundle
2
+ Gemfile.lock
data/.travis.yml CHANGED
@@ -1,7 +1,10 @@
1
1
  language: ruby
2
2
 
3
3
  rvm:
4
- - 2.2
4
+ - 2.3.0
5
+ - 2.2.4
6
+ - 2.1
7
+ - 2.0.0
5
8
 
6
9
  addons:
7
10
  postgresql: "9.3"
@@ -14,4 +17,17 @@ script:
14
17
  - bundle exec rubocop
15
18
 
16
19
  env:
17
- - "DATABASE_URL=postgres://postgres@localhost/safer_migrations_test"
20
+ global:
21
+ - "DATABASE_URL=postgres://postgres@localhost/safer_migrations_test"
22
+ matrix:
23
+ - "ACTIVERECORD_VERSION=4.0.13"
24
+ - "ACTIVERECORD_VERSION=4.1.10"
25
+ - "ACTIVERECORD_VERSION=4.2.2"
26
+ - "ACTIVERECORD_VERSION=5.0.0.rc1"
27
+
28
+ matrix:
29
+ exclude:
30
+ - rvm: 2.1
31
+ env: "ACTIVERECORD_VERSION=5.0.0.rc1"
32
+ - rvm: 2.0.0
33
+ env: "ACTIVERECORD_VERSION=5.0.0.rc1"
data/CHANGELOG.md ADDED
@@ -0,0 +1,7 @@
1
+ # 1.0.0 / 2016-05-09
2
+
3
+ - Support for Rails 5
4
+
5
+ # 0.1.0 / 2015-12-15
6
+
7
+ - Initial public release
data/Gemfile CHANGED
@@ -2,6 +2,8 @@ source "https://rubygems.org"
2
2
 
3
3
  gemspec
4
4
 
5
+ gem "activerecord", "~> #{ENV['ACTIVERECORD_VERSION']}" if ENV["ACTIVERECORD_VERSION"]
6
+
5
7
  group :development do
6
8
  gem "pg", "~> 0.18.3"
7
9
  gem "rspec", "~> 3.3.0"
@@ -3,7 +3,6 @@ require File.expand_path("../lib/active_record/safer_migrations/version", __FILE
3
3
  Gem::Specification.new do |gem|
4
4
  gem.name = "activerecord-safer_migrations"
5
5
  gem.version = ActiveRecord::SaferMigrations::VERSION
6
- gem.date = "2015-08-10"
7
6
  gem.summary = "ActiveRecord migration helpers to avoid downtime"
8
7
  gem.description = ""
9
8
  gem.authors = ["GoCardless Engineering"]
@@ -13,5 +12,5 @@ Gem::Specification.new do |gem|
13
12
  gem.homepage = "https://github.com/gocardless/activerecord-safer_migrations"
14
13
  gem.license = "MIT"
15
14
 
16
- gem.add_runtime_dependency "activerecord", "~> 4.2"
15
+ gem.add_runtime_dependency "activerecord", ">= 4.0"
17
16
  end
@@ -1,5 +1,5 @@
1
1
  module ActiveRecord
2
2
  module SaferMigrations
3
- VERSION = "0.1.0".freeze
3
+ VERSION = "1.0.0".freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,29 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activerecord-safer_migrations
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - GoCardless Engineering
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-08-10 00:00:00.000000000 Z
11
+ date: 2016-05-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ~>
17
+ - - '>='
18
18
  - !ruby/object:Gem::Version
19
- version: '4.2'
19
+ version: '4.0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ~>
24
+ - - '>='
25
25
  - !ruby/object:Gem::Version
26
- version: '4.2'
26
+ version: '4.0'
27
27
  description: ''
28
28
  email: developers@gocardless.com
29
29
  executables: []
@@ -34,8 +34,8 @@ files:
34
34
  - .rubocop.yml
35
35
  - .ruby-version
36
36
  - .travis.yml
37
+ - CHANGELOG.md
37
38
  - Gemfile
38
- - Gemfile.lock
39
39
  - LICENSE.txt
40
40
  - README.md
41
41
  - activerecord-safer_migrations.gemspec
data/Gemfile.lock DELETED
@@ -1,73 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- activerecord-safer_migrations (0.1.0)
5
- activerecord (~> 4.2)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- activemodel (4.2.5)
11
- activesupport (= 4.2.5)
12
- builder (~> 3.1)
13
- activerecord (4.2.5)
14
- activemodel (= 4.2.5)
15
- activesupport (= 4.2.5)
16
- arel (~> 6.0)
17
- activesupport (4.2.5)
18
- i18n (~> 0.7)
19
- json (~> 1.7, >= 1.7.7)
20
- minitest (~> 5.1)
21
- thread_safe (~> 0.3, >= 0.3.4)
22
- tzinfo (~> 1.1)
23
- arel (6.0.3)
24
- ast (2.1.0)
25
- astrolabe (1.3.1)
26
- parser (~> 2.2)
27
- builder (3.2.2)
28
- diff-lcs (1.2.5)
29
- i18n (0.7.0)
30
- json (1.8.3)
31
- minitest (5.8.3)
32
- parser (2.2.3.0)
33
- ast (>= 1.1, < 3.0)
34
- pg (0.18.3)
35
- powerpack (0.1.1)
36
- rainbow (2.0.0)
37
- rspec (3.3.0)
38
- rspec-core (~> 3.3.0)
39
- rspec-expectations (~> 3.3.0)
40
- rspec-mocks (~> 3.3.0)
41
- rspec-core (3.3.2)
42
- rspec-support (~> 3.3.0)
43
- rspec-expectations (3.3.1)
44
- diff-lcs (>= 1.2.0, < 2.0)
45
- rspec-support (~> 3.3.0)
46
- rspec-mocks (3.3.2)
47
- diff-lcs (>= 1.2.0, < 2.0)
48
- rspec-support (~> 3.3.0)
49
- rspec-support (3.3.0)
50
- rubocop (0.35.1)
51
- astrolabe (~> 1.3)
52
- parser (>= 2.2.3.0, < 3.0)
53
- powerpack (~> 0.1)
54
- rainbow (>= 1.99.1, < 3.0)
55
- ruby-progressbar (~> 1.7)
56
- tins (<= 1.6.0)
57
- ruby-progressbar (1.7.5)
58
- thread_safe (0.3.5)
59
- tins (1.6.0)
60
- tzinfo (1.2.2)
61
- thread_safe (~> 0.1)
62
-
63
- PLATFORMS
64
- ruby
65
-
66
- DEPENDENCIES
67
- activerecord-safer_migrations!
68
- pg (~> 0.18.3)
69
- rspec (~> 3.3.0)
70
- rubocop (~> 0.35.1)
71
-
72
- BUNDLED WITH
73
- 1.10.6