front_end_builds 0.2.0 → 0.2.1

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: 1542985a803ac72002fd437fc975726ee7dac9cc
4
- data.tar.gz: 2caa84a2a6c32e72ec08ff5273738778c809eaa1
3
+ metadata.gz: deb6494fa7c87243c2cf1106f7f31d27a68f9e10
4
+ data.tar.gz: 0ee7d06cadb1af53a1a8c3cb17d3494bddf4b774
5
5
  SHA512:
6
- metadata.gz: 1af52583c3a5ff0874f0033ca30bc1cfedce894a2d9eaeb9719bc766476c22aa4d47fab82f17c0d30844b9db872c7e28ec4087c49a4619af3748bbf226e4ab15
7
- data.tar.gz: 9b3bc4d6543bfa161d35d1f130fcfb56fef52918a92f82b4d558ee5b4f866d84ee93b3a686acd21ef93cee77c46754a86129ba5b5f7ed167d8fd5bc3f833ce63
6
+ metadata.gz: 11df0ba3e09503049bc8c76ca2607a3bf924716739d6ffd7c055c3a2913208a19367277bf790c9af1f6c306bb444452045825a4c64e54642bfad670c5e6ad94d
7
+ data.tar.gz: 7e99f78c40995ce4fbd0bb568b0e6bf28b3e075bd4f642121d5a162eef36d1f51516f4f354e42e1e52360104c3acb6309995395ab0d8ce7d49acc4139e7e3dbf
@@ -2,9 +2,9 @@ class CreateFrontEndBuildsBuilds < ActiveRecord::Migration
2
2
  def change
3
3
  create_table :front_end_builds_builds do |t|
4
4
  t.references :app
5
- t.string :sha
6
- t.string :job
7
- t.string :branch
5
+ t.string :sha, limit: 191
6
+ t.string :job, limit: 191
7
+ t.string :branch, limit: 191
8
8
  t.text :html
9
9
  t.boolean :fetched, default: false
10
10
  t.boolean :active, default: false
@@ -1,8 +1,8 @@
1
1
  class CreateFrontEndBuildsApps < ActiveRecord::Migration
2
2
  def change
3
3
  create_table :front_end_builds_apps do |t|
4
- t.string :name
5
- t.string :api_key
4
+ t.string :name, limit: 191
5
+ t.string :api_key, limit: 191
6
6
 
7
7
  t.timestamps
8
8
  end
@@ -1,7 +1,7 @@
1
1
  class CreateFrontEndBuildsPubkeys < ActiveRecord::Migration
2
2
  def change
3
3
  create_table :front_end_builds_pubkeys do |t|
4
- t.string :name, null: false
4
+ t.string :name, null: false, limit: 191
5
5
  t.text :pubkey, null: false
6
6
 
7
7
  t.timestamps null: false
@@ -1,3 +1,3 @@
1
1
  module FrontEndBuilds
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: front_end_builds
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Toronto
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-11-13 00:00:00.000000000 Z
12
+ date: 2016-03-15 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: sqlite3