encrypted_form_fields 0.2.3 → 0.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c32468212438ab6a7bae8e7b3e8603428eddcc79
4
- data.tar.gz: d87272e1d881dcfcd7e4871810a37bcd2adb2f12
3
+ metadata.gz: 63aa6e017cfc401330ae6cdabbf2561b9e49ca9f
4
+ data.tar.gz: d6522d42a8867a53e93304a8aec27523e6a0e7fa
5
5
  SHA512:
6
- metadata.gz: 5d557ffba1f1f081e014cde4fe7254aa895b9df3981a349687460f9ac05f6fcf468b4fe43d4b229e9da69324fa7ea2443e84ae6e17ba4b2951eb7683063d46c3
7
- data.tar.gz: ba9eeaee15c3cc05a653f0103d095f86d4536849fc2a9635a113bb4457cb5080658704d7b4a2a644587cc1689cb40e61fd4b8640f61934089706b19a9d5afa86
6
+ metadata.gz: 6638b06b2d2c60988ad03881b6a0b8c26f7d3ab6f381f2d1a7e097f9778143d209bec7c5eb1a6f31cafa4efa76c2bf79a2a4bbec4cdb5b8b26e755841bc076d2
7
+ data.tar.gz: ec4cdc27fbdea879503d7a4175dc377cdf9534275ec4d04bf1ccedd4202d366bb10aad03c1ebd91c50c4dc11b252824d927510319261468c75550c4181a96242
data/Appraisals CHANGED
@@ -15,7 +15,7 @@ appraise "rails-5.0" do
15
15
  end
16
16
 
17
17
  appraise "rails-5.1" do
18
- gem 'rails', '~> 5.1.0.beta1'
18
+ gem 'rails', '~> 5.1.0'
19
19
  end
20
20
 
21
21
  appraise "rails-head" do
@@ -4,4 +4,4 @@ source "https://rubygems.org"
4
4
 
5
5
  gem "rails", "~> 4.0.0"
6
6
 
7
- gemspec :path => "../"
7
+ gemspec path: "../"
@@ -4,4 +4,4 @@ source "https://rubygems.org"
4
4
 
5
5
  gem "rails", "~> 4.1.0"
6
6
 
7
- gemspec :path => "../"
7
+ gemspec path: "../"
@@ -4,4 +4,4 @@ source "https://rubygems.org"
4
4
 
5
5
  gem "rails", "~> 4.2.0"
6
6
 
7
- gemspec :path => "../"
7
+ gemspec path: "../"
@@ -4,4 +4,4 @@ source "https://rubygems.org"
4
4
 
5
5
  gem "rails", "~> 5.0.0"
6
6
 
7
- gemspec :path => "../"
7
+ gemspec path: "../"
@@ -2,6 +2,6 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "rails", "~> 5.1.0.beta1"
5
+ gem "rails", "~> 5.1.0"
6
6
 
7
- gemspec :path => "../"
7
+ gemspec path: "../"
@@ -2,8 +2,8 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "rails", :github => "rails"
6
- gem "arel", :github => "rails/arel"
7
- gem "rack", :github => "rack"
5
+ gem "rails", github: "rails"
6
+ gem "arel", github: "rails/arel"
7
+ gem "rack", github: "rack"
8
8
 
9
- gemspec :path => "../"
9
+ gemspec path: "../"
@@ -1,6 +1,7 @@
1
1
  # frozen-string-literal: true
2
2
  require "encrypted_form_fields/helpers/form_tag_helper"
3
3
  require "encrypted_form_fields/helpers/form_helper"
4
+ require "rails/railtie"
4
5
 
5
6
  module EncryptedFormFields
6
7
  class Railtie < Rails::Railtie
@@ -1,3 +1,3 @@
1
1
  module EncryptedFormFields
2
- VERSION = "0.2.3".freeze
2
+ VERSION = "0.2.4".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: encrypted_form_fields
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ville Lautanala
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-05-12 00:00:00.000000000 Z
11
+ date: 2017-08-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: actionpack