aranha 0.14.4 → 0.14.5

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: abd1d18fc27b63bcd45c0f09e614c7f054cd8fb6cef6cb4c57fadfffbb52ad3b
4
- data.tar.gz: 27e68b5c8f5bdad82e247f3b35541cd118390823f8251be84fd45abc7a48c89f
3
+ metadata.gz: 8b89c63a38f3c2f658263dde445f10b45628ecd19069d6a78a0d5e838a1a6127
4
+ data.tar.gz: 15cfb49d733aba80bd316813d21c587c47c4799af6a60d9a6147bed1e08f132f
5
5
  SHA512:
6
- metadata.gz: f3204acd2b2d83847e4b3040fa4b48be0feec3927fdf155f80bfba5853d827dddc76b434103ca463aa1e1afd74b1f569a7c57e7612e66560c3367aef30f3f6bb
7
- data.tar.gz: d09517a05bed51a6e2de995582c70aeb0e9f996cd5bd97d5514b7087b3154dee7e429ecd0c449dc768de90132376a0519780ae92535201d172cb28f210b54028
6
+ metadata.gz: fe5b484b9709033c8f87db0f8070c83d5dd328109d2d6bfb12a7ef356ba7268ec45cf728f5554dbd3015e28f60d14be2b81d6ac33f836365024fb4e88f1ed7e1
7
+ data.tar.gz: 9456fafe876c0894f810575fe41f078703ce2f9b75930c967ed4ffd9d33b93eeeb80e4b899e9bc12f31612d397fb1d462ab29520e7df4f71956fb64c489628f6
@@ -1,6 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- class CreateAranhaAddresses < ActiveRecord::Migration
3
+ class CreateAranhaAddresses < (
4
+ Rails.version < '5' ? ActiveRecord::Migration : ActiveRecord::Migration[4.2]
5
+ )
4
6
  def change
5
7
  create_table :aranha_addresses do |t|
6
8
  t.string :url
@@ -1,6 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- class AddExtraDataToAranhaAddresses < ActiveRecord::Migration
3
+ class AddExtraDataToAranhaAddresses < (
4
+ Rails.version < '5' ? ActiveRecord::Migration : ActiveRecord::Migration[4.2]
5
+ )
4
6
  def change
5
7
  add_column :aranha_addresses, :extra_data, :text
6
8
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Aranha
4
- VERSION = '0.14.4'
4
+ VERSION = '0.14.5'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aranha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.4
4
+ version: 0.14.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eduardo H. Bogoni
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-10-03 00:00:00.000000000 Z
11
+ date: 2020-10-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: active_scaffold