simple_form_password_with_hints 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
  SHA256:
3
- metadata.gz: 98458d88dfc28b816842f0dc56ad249d4b54496e05c266d386b80cb2b4f559e4
4
- data.tar.gz: 99191725c33b8633b7c2b56d9685201242b4a3e7a793419dea654588ed5d0e0b
3
+ metadata.gz: fa987a3f0944df96e0d63ed2f89c86e23e4a690373b2342921180e451d834464
4
+ data.tar.gz: d03d14601c03cab7357f4cf5d026ebcceace5f5e75a6fbe00efd5a1a8e4d4713
5
5
  SHA512:
6
- metadata.gz: 25135c64eafba3a0b3a793c87098ac93fd0d98160effcad1f933c87f7b46745a67ce7b958b71b29d8e12f19e36745d0e9bdc81ec48ea76ce0dcd0b8789f7dc00
7
- data.tar.gz: 7128e1b3b8c2fc69e0d9bb64d261854203fdaddbce818f8876d4cfdc640f83fe6088b821e68d3bc74055f177760c296f384025ec81e05f0f29820bcb8f249d7e
6
+ metadata.gz: 4d61860cc6cffb85b508074e41768194177d6137146915d76a63ab7832902bc0dcd7a072bbaa6f82c7d1872999cee49de0059e49d8002961b48bfaacfa634a33
7
+ data.tar.gz: b652cd9d96fdcb914df2f78d60631a77a7078b7d1d9148c56de75071a26ecdb75057f88ff7099304c18f810445df3db13e767b875e969d6a82ed79c5cfedf495
data/.gitignore CHANGED
@@ -6,3 +6,4 @@
6
6
  /pkg/
7
7
  /spec/reports/
8
8
  /tmp/
9
+ /test/dummy/tmp/
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- simple_form_password_with_hints (0.0.1)
4
+ simple_form_password_with_hints (0.0.2)
5
5
  rails
6
6
  simple_form
7
7
 
data/README.md CHANGED
@@ -20,6 +20,18 @@ Run the following command to install it:
20
20
  bundle install
21
21
  ```
22
22
 
23
+ Add it to your application.sass:
24
+
25
+ ```
26
+ @import 'simple_form_password_with_hints'
27
+ ```
28
+
29
+ Add it to your application.js:
30
+
31
+ ```
32
+ //= require simple_form_password_with_hints
33
+ ```
34
+
23
35
  ### Bootstrap
24
36
 
25
37
  **Simple Form Password With Hints** relies on the [Bootstrap](http://getbootstrap.com/) markup, so it presumes that you installed Simple Form with the Bootstrap option. To do that you have to use the `bootstrap` option in the Simple Form install generator, like this:
@@ -142,4 +154,4 @@ https://github.com/noesya/simple_form_password_with_hints/issues
142
154
 
143
155
  ## License
144
156
 
145
- MIT License.
157
+ MIT License.
@@ -0,0 +1,8 @@
1
+ fr:
2
+ simple_form_password_with_hints:
3
+ test_chars: "%{min_length} caractères minimum"
4
+ test_uppercase: 'Majuscule'
5
+ test_lowercase: 'Minuscule'
6
+ test_numeric: 'Chiffre'
7
+ test_special_char: 'Caractère spécial'
8
+ test_fields_matching: 'Champs similaires'
@@ -1,3 +1,3 @@
1
1
  module SimpleFormPasswordWithHints
2
- VERSION = "0.0.1".freeze
2
+ VERSION = "0.0.2".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple_form_password_with_hints
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
  - Pierre-andré Boissinot
@@ -88,6 +88,7 @@ files:
88
88
  - assets/javascripts/simple_form_password_with_hints.js
89
89
  - assets/stylesheets/simple_form_password_with_hints.sass
90
90
  - config/locales/en.yml
91
+ - config/locales/fr.yml
91
92
  - lib/simple_form_password_with_hints.rb
92
93
  - lib/simple_form_password_with_hints/password_with_hints_input.rb
93
94
  - lib/simple_form_password_with_hints/password_with_sync_input.rb