Sha256: 230ec59e7d1e8aae0b49be3859294452f2d4d0841e68765d64e8a7531c2f833d
Contents?: true
Size: 1.14 KB
Versions: 4
Compression:
Stored size: 1.14 KB
Contents
# Require forgeries at the bottom of the file so Forgery works as a gem both # within rails and outside of it. current_path = File.expand_path(File.dirname(__FILE__)) + '/' # Loading forgery helpers. require 'forgery/file_reader' require 'forgery/dictionaries' require 'forgery/formats' # Loading extensions require 'forgery/extend' Dir[current_path + 'forgery/extensions/**/*.rb'].uniq.each do |file| require file end # Load the forgery base classes require 'forgery/forgery' # Load the forgery version require 'forgery/version' # Load the forgery api method require 'forgery/forgery_api' # Loading the other forgeries AFTER the initial forgery class is defined. Dir[current_path + 'forgery/forgery/**/*.rb'].uniq.each do |file| require file end # Loading rails forgeries to override current forgery methods and add new forgeries # Only run this for Rails < 3.0 since we need to use a Railtie to initialize >= 3.0 Forgery.load_from! "#{Forgery.rails_root}/lib/forgery" if Forgery.rails? && Rails::VERSION::STRING < "3.0.0" # Include our Railtie if Rails >= 3.0.0 require 'forgery/forgery_railtie' if Forgery.rails? && Rails::VERSION::STRING >= "3.0.0"
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
forgery-0.8.1 | lib/forgery.rb |
forgery-0.7.0 | lib/forgery.rb |
forgery-0.6.0 | lib/forgery.rb |
forgery-0.5.0 | lib/forgery.rb |