sorcery 0.7.3 → 0.7.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.
- data/README.rdoc +1 -1
- data/VERSION +1 -1
- data/lib/generators/sorcery/install_generator.rb +1 -1
- data/sorcery.gemspec +1 -1
- metadata +1 -1
data/README.rdoc
CHANGED
|
@@ -28,7 +28,7 @@ Railscast: http://railscasts.com/episodes/283-authentication-with-sorcery
|
|
|
28
28
|
|
|
29
29
|
Example Rails 3 app using sorcery: https://github.com/NoamB/sorcery-example-app
|
|
30
30
|
|
|
31
|
-
Documentation: http://rubydoc.info/gems/sorcery/0.7.
|
|
31
|
+
Documentation: http://rubydoc.info/gems/sorcery/0.7.4/frames
|
|
32
32
|
|
|
33
33
|
Check out the tutorials in the github wiki!
|
|
34
34
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.7.
|
|
1
|
+
0.7.4
|
|
@@ -54,7 +54,7 @@ module Sorcery
|
|
|
54
54
|
# Define the next_migration_number method (necessary for the migration_template method to work)
|
|
55
55
|
def self.next_migration_number(dirname)
|
|
56
56
|
if ActiveRecord::Base.timestamped_migrations
|
|
57
|
-
sleep
|
|
57
|
+
sleep 1 # make sure each time we get a different timestamp
|
|
58
58
|
Time.new.utc.strftime("%Y%m%d%H%M%S")
|
|
59
59
|
else
|
|
60
60
|
"%.3d" % (current_migration_number(dirname) + 1)
|
data/sorcery.gemspec
CHANGED