yellin 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +3 -1
  3. data/lib/yellin/version.rb +1 -1
  4. metadata +8 -9
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 69ebc2ac5998feed166538df0c55de6a2e4bece7
4
- data.tar.gz: 6ca97b96038a8039843d2c9151704bd7dc0ff29a
3
+ metadata.gz: f067e6ce1a14742026a524e4a991ba28c18dfd5f
4
+ data.tar.gz: fbe10383c17190afccfaa0307173d4818d713c0e
5
5
  SHA512:
6
- metadata.gz: 371978b77a2a02cf8fc7290267b7d8faf7c68b8af8b0df61261de3f35297bf07d0f49198dfeeb6d0b70d6590322d4255682da1c36ac8ca0c2344df97d2e6b5d4
7
- data.tar.gz: 6b12e489f519fe28545128f4d2d13ae6335babce08724b315c22e6f58afad07c5886a8796b5deb0b0fd9dddefe0b052baeb17db663571c6ba3f3043e9573d59d
6
+ metadata.gz: 017d680c0c53cef7a894fd67ffec0005479af66d27ec7c4e6895e03656efec0dda20e4649fac0e97fcf4ddd9ac67ad98d0a429d987fa59acf04ce6e6005ac9b8
7
+ data.tar.gz: 4a9a9438f146d6e24010a1926f9aedaf45d91d9d8c020f3f6db757087888dc6939d9cd1056a3eae09d7158e69b1164fa57a2749cd16840955c9516d99e38a759
data/README.md CHANGED
@@ -27,7 +27,7 @@ $ rails destroy yellin User
27
27
  ```
28
28
 
29
29
  ### Configuration options
30
- The generator installs a generator to `config/initializers/yellin.rb`. It looks like this:
30
+ The generator installs a generator to `config/initializers/yellin.rb`. It looks something like this:
31
31
 
32
32
  ```ruby
33
33
  Yellin.app_name = Default App Name
@@ -92,5 +92,7 @@ $ gem install yellin
92
92
  ## Contributing
93
93
  Bugfixes, enhancements, spelling corrections are all welcome. Use the pull request button :)
94
94
 
95
+ To report a security issue, please notify me directly over email.
96
+
95
97
  ## License
96
98
  The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
@@ -1,3 +1,3 @@
1
1
  module Yellin
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yellin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luke Hogan
@@ -17,28 +17,28 @@ dependencies:
17
17
  requirements:
18
18
  - - "~>"
19
19
  - !ruby/object:Gem::Version
20
- version: 5.0.2
20
+ version: '5.0'
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
25
  - - "~>"
26
26
  - !ruby/object:Gem::Version
27
- version: 5.0.2
27
+ version: '5.0'
28
28
  - !ruby/object:Gem::Dependency
29
29
  name: bcrypt
30
30
  requirement: !ruby/object:Gem::Requirement
31
31
  requirements:
32
32
  - - "~>"
33
33
  - !ruby/object:Gem::Version
34
- version: 3.1.11
34
+ version: '3.1'
35
35
  type: :runtime
36
36
  prerelease: false
37
37
  version_requirements: !ruby/object:Gem::Requirement
38
38
  requirements:
39
39
  - - "~>"
40
40
  - !ruby/object:Gem::Version
41
- version: 3.1.11
41
+ version: '3.1'
42
42
  - !ruby/object:Gem::Dependency
43
43
  name: sqlite3
44
44
  requirement: !ruby/object:Gem::Requirement
@@ -67,9 +67,8 @@ dependencies:
67
67
  - - ">="
68
68
  - !ruby/object:Gem::Version
69
69
  version: '0'
70
- description: Rails engine providing user authentication and basic account management
71
- (account confirmation, password reset); Based on authentication framework developed
72
- during Michael Hartl's Ruby on Rails Tutorial.
70
+ description: Minimalistic Rails engine providing user registration, authentication,
71
+ and password reset.
73
72
  email:
74
73
  - hoganld@gmail.com
75
74
  executables: []
@@ -151,5 +150,5 @@ rubyforge_project:
151
150
  rubygems_version: 2.5.2
152
151
  signing_key:
153
152
  specification_version: 4
154
- summary: Rails engine providing authentication based on `has_secure_password`.
153
+ summary: Minimalistic Rails engine providing user authentication.
155
154
  test_files: []