Domande taggate «ruby-on-rails-4»

Per problemi specifici della versione 4 di Rails. Se la tua domanda si applica a Ruby on Rails in generale, usa il tag [ruby-on-rails].

12
Rails Observer Alternatives per 4.0
Con gli osservatori ufficialmente rimossi da Rails 4.0 , sono curioso di sapere cosa stanno usando altri sviluppatori al loro posto. (Oltre all'utilizzo della gemma estratta.) Sebbene gli osservatori fossero certamente maltrattati e talvolta diventassero facilmente ingombranti, c'erano molti casi d'uso al di fuori del solo svuotamento della cache in …


9
Rails 4 - Gem :: LoadError: 'mysql2' specificato per l'adattatore del database, ma la gemma non viene caricata
Nel mio gemfile ho: gem 'mysql2' Il mio database.yml è il seguente: default: &default adapter: mysql2 database: <%= ENV['db_name'] %> username: <%= ENV['db_user'] %> password: <%= ENV['db_pass'] %> host: <%= ENV['db_host'] %> pool: 32 socket: <%= ENV['socket'] %> development: <<: *default production: <<: *default Ho eseguito entrambi bundle updatee bundle …






17
impossibile caricare tale file - bundler / setup (LoadError)
Sto impostando l'applicazione Rails 4 con Ruby 2.0, ma sto ottenendo "Impossibile avviare l'applicazione Web" e ottengo questa traccia: cannot load such file -- bundler/setup (LoadError) /usr/local/lib/ruby/site_ruby/2.0.0/rubygems/core_ext/kernel_require.rb:53:in `require' /usr/local/lib/ruby/site_ruby/2.0.0/rubygems/core_ext/kernel_require.rb:53:in `require' /usr/lib/ruby/gems/1.8/gems/passenger-4.0.19/lib/phusion_passenger/loader_shared_helpers.rb:212:in `run_load_path_setup_code' /usr/lib/ruby/gems/1.8/gems/passenger-4.0.19/helper-scripts/rack-preloader.rb:96:in `preload_app' /usr/lib/ruby/gems/1.8/gems/passenger-4.0.19/helper-scripts/rack-preloader.rb:150:in `<module:App>' /usr/lib/ruby/gems/1.8/gems/passenger-4.0.19/helper-scripts/rack-preloader.rb:29:in `<module:PhusionPassenger>' /usr/lib/ruby/gems/1.8/gems/passenger-4.0.19/helper-scripts/rack-preloader.rb:28:in `<main>' Il mio apache2.conf è: LoadModule passenger_module /usr/lib/ruby/gems/1.8/gems/passenger-4.0.19/buildout/apache2/mod_passenger.so PassengerRoot /usr/lib/ruby/gems/1.8/gems/passenger-4.0.19 PassengerDefaultRuby …

6
Attributi nidificati parametri non consentiti
Ho un Billoggetto, che ha molti Dueoggetti. L' Dueoggetto appartiene anche a Person. Voglio un modulo in grado di creare tutti i Billsuoi figli Duesin un'unica pagina. Sto cercando di creare un modulo utilizzando attributi nidificati, simili a quelli in questo Railscast . Il codice pertinente è elencato di seguito: …

3
Si è verificato un errore durante il tentativo di caricare la gemma "uglifier". (Bundler :: GemRequireError)
Perché ricevo questo errore? shibly@mybox:~/blog$ rails server /home/shibly/.gem/ruby/2.2.4/gems/bundler-1.11.2/lib/bundler/runtime.rb:80:in `rescue in block (2 levels) in require': There was an error while trying to load the gem 'uglifier'. (Bundler::GemRequireError) from /home/shibly/.gem/ruby/2.2.4/gems/bundler-1.11.2/lib/bundler/runtime.rb:76:in `block (2 levels) in require' from /home/shibly/.gem/ruby/2.2.4/gems/bundler-1.11.2/lib/bundler/runtime.rb:72:in `each' from /home/shibly/.gem/ruby/2.2.4/gems/bundler-1.11.2/lib/bundler/runtime.rb:72:in `block in require' from /home/shibly/.gem/ruby/2.2.4/gems/bundler-1.11.2/lib/bundler/runtime.rb:61:in `each' from /home/shibly/.gem/ruby/2.2.4/gems/bundler-1.11.2/lib/bundler/runtime.rb:61:in `require' from /home/shibly/.gem/ruby/2.2.4/gems/bundler-1.11.2/lib/bundler.rb:99:in …


8
Disabilita ActiveRecord per Rails 4
Voglio disabilitare ActiveRecord in Rails 4. Ho fatto quanto segue in config/application.rb require File.expand_path('../boot', __FILE__) # require 'rails/all' -- commented require "action_controller/railtie" require "action_mailer/railtie" #require "active_resource/railtie" no need #require "rails/test_unit/railtie" no need #require "sprockets/railtie" no need # Require the gems listed in Gemfile, including any gems # you've limited to …

8
Salvare enum da select in Rails 4.1
Sto usando le enumerazioni in Rails 4.1 per tenere traccia dei colori del vino. Wine.rb class Wine < ActiveRecord::Base enum color: [:red, :white, :sparkling] end A mio avviso, creo una selezione in modo che l'utente possa selezionare un vino con un certo colore f.input :color, :as => :select, :collection => …

5
Avviso deprecato per Rails 4 has_many with order
class RelatedList < ActiveRecord::Base extend Enumerize enumerize :list_type, in: %w(groups projects) belongs_to :content has_many :contents, :order => :position end Ho questo modello nella mia app rails che lancia un avviso quando provo a creare record nella console. AVVISO DI DEPRECAZIONE: Le seguenti opzioni nella dichiarazione RelatedList.has_many: content sono deprecate:: order. …

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.