administrate-field-password 0.0.1 → 0.0.2

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: 857877cf689b7b7382232cbe4846a7f6efd6fd57
4
- data.tar.gz: 5e8544ea9aaa150ca6c7cbc621a1f610b5e4ec08
3
+ metadata.gz: d72c121862e393c988588db74d4b3d5a6fee1a5c
4
+ data.tar.gz: f277363ab603895be15cc5513b17a64b47b8739f
5
5
  SHA512:
6
- metadata.gz: 737c5142d3043160558eaed4ba33d80d21b441d06bed93020751a8ce51f49b04b0e3eff2b7f70c1bb51479ba27d7473f7162cb6589d1ab07d47d39fdefc83844
7
- data.tar.gz: 0a8bcfbee43000ce9b645147f82bf65ed98f393a3f14ee164a7e6f52b1190eeda285ab38f4a52bbdd270387f6e2329f2924ea17f2933b0e3ff336c9d61babe4e
6
+ metadata.gz: c7f028f823dbdb2675b06eb8308744991bb63f43e4f7bca4236a793fc48782b4323ff1b897b39a869ed600ae8de1f4964cb1ef7334035fcdfdbabeb06e1a97d7
7
+ data.tar.gz: 03b326dfd4daabd39b48d43a5c9f3bf1d84704ef02e97e4171f776d501d756746f20b70ca0bf28e0d3e0192c283305cd5d0c9f5ccb055c32ee9698f797b8c97d
data/README.md CHANGED
@@ -1,13 +1,13 @@
1
- # AdministrateRefileField
1
+ # AdministrateFieldPassword
2
2
 
3
- All you need to integrate Refile with Administrate.
3
+ All you need to integrate Password with Administrate.
4
4
 
5
5
  ## Installation
6
6
 
7
7
  Add this line to your application's Gemfile:
8
8
 
9
9
  ```ruby
10
- gem 'administrate-field-refile'
10
+ gem 'administrate-field-password'
11
11
  ```
12
12
 
13
13
  And then execute:
@@ -17,20 +17,32 @@ $ bundle
17
17
 
18
18
  ## Usage
19
19
 
20
- In your Dashboard `ATTRIBUTE_TYPES` use the field type `RefileField`. i.e.
20
+ In your Dashboard `ATTRIBUTE_TYPES` use the field type `PasswordField`. i.e.
21
21
  ```ruby
22
22
  ATTRIBUTE_TYPES = {
23
- images_files: FieldRefile
23
+ images_files: FieldPassword
24
24
  }
25
25
  ```
26
26
 
27
- By default all `Refile` options are false, you can set them to true like this:
27
+ By default all `Password` options are false, you can set them to true like this:
28
28
  ```ruby
29
29
  ATTRIBUTE_TYPES = {
30
- images_files: FieldRefile.with_options(direct: true, presigned: true, multiple: true)
30
+ images_files: FieldPassword.with_options(direct: true, presigned: true, multiple: true)
31
31
  }
32
32
  ```
33
33
 
34
+ If in you are displaying the password field on your forms, add this on you `UserController`
35
+ ```
36
+ module Admin
37
+ class UsersController < Admin::ApplicationController
38
+ def update
39
+ params[:user].delete(:password) if params[:user][:password].blank?
40
+ super
41
+ end
42
+ end
43
+ end
44
+ ```
45
+
34
46
  ## Contributing
35
47
 
36
- Bug reports and pull requests are welcome on GitHub at https://github.com/DisruptiveAngels/administrate_refile_field.
48
+ Bug reports and pull requests are welcome on GitHub at https://github.com/DisruptiveAngels/administrate-field-password.
@@ -16,6 +16,6 @@ Gem::Specification.new do |gem|
16
16
  gem.files = `git ls-files`.split("\n")
17
17
  gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
18
18
 
19
- gem.add_dependency 'administrate', '~> 0.1.2'
19
+ gem.add_dependency 'administrate', '>= 0.2.0.rc1', '< 0.3.0'
20
20
  gem.add_dependency 'rails', '~> 4.2'
21
21
  end
@@ -4,7 +4,7 @@ require 'rails'
4
4
  module Administrate
5
5
  module Field
6
6
  class Password < Administrate::Field::Base
7
- VERSION = '0.0.1'
7
+ VERSION = '0.0.2'
8
8
  class Engine < ::Rails::Engine
9
9
  end
10
10
 
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: administrate-field-password
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adrian Rangel
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-02-26 00:00:00.000000000 Z
11
+ date: 2016-05-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: administrate
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 0.2.0.rc1
20
+ - - "<"
18
21
  - !ruby/object:Gem::Version
19
- version: 0.1.2
22
+ version: 0.3.0
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: 0.2.0.rc1
30
+ - - "<"
25
31
  - !ruby/object:Gem::Version
26
- version: 0.1.2
32
+ version: 0.3.0
27
33
  - !ruby/object:Gem::Dependency
28
34
  name: rails
29
35
  requirement: !ruby/object:Gem::Requirement
@@ -74,10 +80,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
74
80
  version: '0'
75
81
  requirements: []
76
82
  rubyforge_project:
77
- rubygems_version: 2.5.1
83
+ rubygems_version: 2.6.1
78
84
  signing_key:
79
85
  specification_version: 4
80
86
  summary: Add Password fields to Administrate
81
87
  test_files:
82
88
  - spec/lib/administrate/field/password_spec.rb
83
- has_rdoc: