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 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.3/frames
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.3
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 100 # make sure each time we get a different timestamp
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
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "sorcery"
8
- s.version = "0.7.3"
8
+ s.version = "0.7.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Noam Ben Ari"]
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: sorcery
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.7.3
5
+ version: 0.7.4
6
6
  platform: ruby
7
7
  authors:
8
8
  - Noam Ben Ari