stitches 4.2.0.RC2 → 4.2.0.RC3

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
  SHA256:
3
- metadata.gz: 781cc5ec8996b5c726e7e214d69c5d780ddbf4818fb9b0cb5ce15de6bb6e829c
4
- data.tar.gz: f482c0e9a21b84330add05e8c9a2bfd3ef5986ac60f7f22766f79f480d1e2a4b
3
+ metadata.gz: af8d764fc08f299d6288afb01cd9902499648f6ab0060ef2284ed54e52cbb1ab
4
+ data.tar.gz: db185f1144d53b6811b3c8c886307eb0a5dcd2205e495310348050438f0f7bcf
5
5
  SHA512:
6
- metadata.gz: d71dfb5cc76e1d753d1b25e3a8e278097167f07e8f43e7f276041c043960bf3ba551d47cd3ba90a4d94d56538a217d4c55156b5d5cb59273aa104086852d4a26
7
- data.tar.gz: fb6c236f22a81f1cb7373f3d50d6dc907e7ba2c684a07dc1f5ce94ac7e9b6039dda780821d763912dbb39139fc00b27e2d254c525b7ac9da3d1011a5f4bec9b3
6
+ metadata.gz: 2acae056f61e3cc352bce03375f8895c953f93c85e58829159c1d9328f9ac165a9bba6506dd9ab71bd4bb6cd82b794853335f293f21e70f43252d0bf5aa72939
7
+ data.tar.gz: 9e2f8e2d3ba91b54d8fa862e9375e736570ea75605a260f2562d033455ba4df0bd8f8c37be0d47598fdd0dde5d693e796f6bd93bf1b202a90ffb5801ce8f082b
@@ -1,8 +1,4 @@
1
- <% if Rails::VERSION::MAJOR >= 5 %>
2
- class AddDisabledAtToApiClients < ActiveRecord::Migration[<%= Rails::VERSION::MAJOR %>.<%= Rails::VERSION::MINOR %>]
3
- <% else %>
4
- class AddDisabledAtToApiClients < ActiveRecord::Migration
5
- <% end %>
1
+ class AddDisabledAtToApiClients < ActiveRecord::Migration<% if Rails::VERSION::MAJOR >= 5 %>[<%= Rails::VERSION::MAJOR %>.<%= Rails::VERSION::MINOR %>]<% end %>
6
2
  def change
7
3
  add_column :api_clients, :disabled_at, "timestamp with time zone", null: true
8
4
  end
@@ -1,8 +1,4 @@
1
- <% if Rails::VERSION::MAJOR >= 5 %>
2
- class AddEnabledToApiClients < ActiveRecord::Migration[<%= Rails::VERSION::MAJOR %>.<%= Rails::VERSION::MINOR %>]
3
- <% else %>
4
- class AddEnabledToApiClients < ActiveRecord::Migration
5
- <% end %>
1
+ class AddEnabledToApiClients < ActiveRecord::Migration<% if Rails::VERSION::MAJOR >= 5 %>[<%= Rails::VERSION::MAJOR %>.<%= Rails::VERSION::MINOR %>]<% end %>
6
2
  def change
7
3
  add_column :api_clients, :enabled, :bool, null: false, default: true
8
4
  remove_index :api_clients, [:name ] # existing one would be unique
@@ -1,8 +1,4 @@
1
- <% if Rails::VERSION::MAJOR >= 5 %>
2
- class CreateApiClients < ActiveRecord::Migration[<%= Rails::VERSION::MAJOR %>.<%= Rails::VERSION::MINOR %>]
3
- <% else %>
4
- class CreateApiClients < ActiveRecord::Migration
5
- <% end %>
1
+ class CreateApiClients < ActiveRecord::Migration<% if Rails::VERSION::MAJOR >= 5 %>[<%= Rails::VERSION::MAJOR %>.<%= Rails::VERSION::MINOR %>]<% end %>
6
2
  def change
7
3
  create_table :api_clients do |t|
8
4
  t.string :name, null: false
@@ -1,8 +1,4 @@
1
- <% if Rails::VERSION::MAJOR >= 5 %>
2
- class EnableUuidOsspExtension < ActiveRecord::Migration[<%= Rails::VERSION::MAJOR %>.<%= Rails::VERSION::MINOR %>]
3
- <% else %>
4
- class EnableUuidOsspExtension < ActiveRecord::Migration
5
- <% end %>
1
+ class EnableUuidOsspExtension < ActiveRecord::Migration<% if Rails::VERSION::MAJOR >= 5 %>[<%= Rails::VERSION::MAJOR %>.<%= Rails::VERSION::MINOR %>]<% end %>
6
2
  def change
7
3
  enable_extension 'uuid-ossp'
8
4
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Stitches
4
- VERSION = '4.2.0.RC2'
4
+ VERSION = '4.2.0.RC3'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stitches
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.2.0.RC2
4
+ version: 4.2.0.RC3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stitch Fix Engineering