public
Description: ActiveRecord macro that helps encrypt passwords and generate api tokens before_save.
Homepage:
Clone URL: git://github.com/matthewtodd/has_digest.git
has_digest / Rakefile
100644 20 lines (17 sloc) 0.511 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
this_rakefile_uses_shoe = <<END
----------------------------------------
Please install Shoe:
gem sources --add http://gems.github.com
gem install matthewtodd-shoe
----------------------------------------
END
 
begin
  gem 'matthewtodd-shoe'
rescue Gem::LoadError
  abort this_rakefile_uses_shoe
else
  require 'shoe'
end
 
Shoe.tie('has_digest', '0.1.3', 'ActiveRecord macro that helps encrypt passwords and generate api tokens before_save.') do |spec|
  spec.add_development_dependency 'thoughtbot-shoulda'
end