yellin 0.1.0 → 0.1.1
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 +4 -4
- data/README.md +3 -1
- data/lib/yellin/version.rb +1 -1
- metadata +8 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f067e6ce1a14742026a524e4a991ba28c18dfd5f
|
|
4
|
+
data.tar.gz: fbe10383c17190afccfaa0307173d4818d713c0e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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).
|
data/lib/yellin/version.rb
CHANGED
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.
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
71
|
-
|
|
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
|
|
153
|
+
summary: Minimalistic Rails engine providing user authentication.
|
|
155
154
|
test_files: []
|