* Bump rails version to 3.1.0 in Gemfile * Update config files * Fix bcrypt monkey patch for specs * Fix TracksController * Replace track streaming with track download * Remove assets from application layout
		
			
				
	
	
		
			9 lines
		
	
	
		
			124 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			124 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
require 'bcrypt'
 | 
						|
 | 
						|
module BCrypt
 | 
						|
  class Engine
 | 
						|
    remove_const  :DEFAULT_COST
 | 
						|
    const_set     :DEFAULT_COST, 4
 | 
						|
  end
 | 
						|
end
 |