Changes in Gemfile
This commit is contained in:
		
							parent
							
								
									fdb3707024
								
							
						
					
					
						commit
						b58db48d26
					
				
							
								
								
									
										4
									
								
								Gemfile
								
								
								
								
							
							
						
						
									
										4
									
								
								Gemfile
								
								
								
								
							| 
						 | 
				
			
			@ -6,7 +6,7 @@ gem "brakeman"
 | 
			
		|||
gem 'bson_ext'
 | 
			
		||||
gem 'carrierwave'
 | 
			
		||||
gem 'carrierwave-mongoid', :require => 'carrierwave/mongoid'
 | 
			
		||||
gem 'devise'
 | 
			
		||||
gem 'devise', '1.5.3'
 | 
			
		||||
gem 'exception_notification' # Send error trace
 | 
			
		||||
gem 'execjs'
 | 
			
		||||
gem 'jquery-rails'
 | 
			
		||||
| 
						 | 
				
			
			@ -23,7 +23,7 @@ gem 'rubyzip'
 | 
			
		|||
gem 'sinatra'
 | 
			
		||||
gem 'sprockets'
 | 
			
		||||
gem 'tinymce-rails'
 | 
			
		||||
#gem 'therubyracer'
 | 
			
		||||
gem 'therubyracer' if RUBY_PLATFORM.downcase.include?("linux")
 | 
			
		||||
 | 
			
		||||
# Gems used only for assets and not required
 | 
			
		||||
# in production environments by default.
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
							
								
								
									
										11
									
								
								Gemfile.lock
								
								
								
								
							
							
						
						
									
										11
									
								
								Gemfile.lock
								
								
								
								
							| 
						 | 
				
			
			@ -40,7 +40,7 @@ GEM
 | 
			
		|||
      multi_json (~> 1.0)
 | 
			
		||||
    archive-tar-minitar (0.5.2)
 | 
			
		||||
    arel (2.2.3)
 | 
			
		||||
    bcrypt-ruby (3.0.1-x86-mingw32)
 | 
			
		||||
    bcrypt-ruby (3.0.1)
 | 
			
		||||
    brakeman (1.5.1)
 | 
			
		||||
      activesupport
 | 
			
		||||
      erubis (~> 2.6)
 | 
			
		||||
| 
						 | 
				
			
			@ -71,11 +71,10 @@ GEM
 | 
			
		|||
    database_cleaner (0.7.1)
 | 
			
		||||
    delorean (1.2.0)
 | 
			
		||||
      chronic
 | 
			
		||||
    devise (2.0.4)
 | 
			
		||||
    devise (1.5.3)
 | 
			
		||||
      bcrypt-ruby (~> 3.0)
 | 
			
		||||
      orm_adapter (~> 0.0.3)
 | 
			
		||||
      railties (~> 3.1)
 | 
			
		||||
      warden (~> 1.1.1)
 | 
			
		||||
      warden (~> 1.1)
 | 
			
		||||
    diff-lcs (1.1.3)
 | 
			
		||||
    erubis (2.7.0)
 | 
			
		||||
    exception_notification (2.5.2)
 | 
			
		||||
| 
						 | 
				
			
			@ -199,6 +198,7 @@ GEM
 | 
			
		|||
      rack (~> 1.3, >= 1.3.6)
 | 
			
		||||
      rack-protection (~> 1.2)
 | 
			
		||||
      tilt (~> 1.3, >= 1.3.3)
 | 
			
		||||
    spork (0.9.0)
 | 
			
		||||
    spork (0.9.0-x86-mingw32)
 | 
			
		||||
      win32-process
 | 
			
		||||
    sprockets (2.0.3)
 | 
			
		||||
| 
						 | 
				
			
			@ -232,6 +232,7 @@ GEM
 | 
			
		|||
      windows-api (>= 0.3.0)
 | 
			
		||||
 | 
			
		||||
PLATFORMS
 | 
			
		||||
  ruby
 | 
			
		||||
  x86-mingw32
 | 
			
		||||
 | 
			
		||||
DEPENDENCIES
 | 
			
		||||
| 
						 | 
				
			
			@ -242,7 +243,7 @@ DEPENDENCIES
 | 
			
		|||
  coffee-rails
 | 
			
		||||
  database_cleaner
 | 
			
		||||
  delorean
 | 
			
		||||
  devise
 | 
			
		||||
  devise (= 1.5.3)
 | 
			
		||||
  exception_notification
 | 
			
		||||
  execjs
 | 
			
		||||
  factory_girl_rails
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -19,7 +19,7 @@ module Orbit
 | 
			
		|||
    # Add directories for plugins
 | 
			
		||||
    config.paths["vendor/plugins"] += %W(#{config.root}/vendor/built_in_modules)
 | 
			
		||||
    config.paths["vendor/plugins"] += %W(#{config.root}/vendor/downloaded_modules)
 | 
			
		||||
    config.paths.app.views << "app/views/devise"
 | 
			
		||||
    config.paths["app/views"] += %W(#{config.root}/app/views/devise)
 | 
			
		||||
    
 | 
			
		||||
    
 | 
			
		||||
    # Settings in config/environments/* take precedence over those specified here.
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Reference in New Issue