2017-02-11 10 views
0

私はレール5上'google_places' gemをインストールしますが、私は、このコードスニペットを実行work.Whenにそれを得ることができませんでした:Railsの5グーグル-場所の宝石エラー

@client = GooglePlaces::Client.new(Rails.application.secrets.places_api_key) 

それは、このようなエラーを与える:

uninitialized constant PlacesController::GooglePlaces 

そして、私のコントローラ:

class PlacesController < ApplicationController 
    before_action :set_place, only: [:show, :edit, :update, :destroy] 

    # GET /places 
    # GET /places.json 
    def index 
    @places = Place.all 
    end 

    # GET /places/nearbies 
    # GET /places/nearbies.json 
    def nearbies 
    @client = GooglePlaces::Client.new(Rails.application.secrets.places_api_key) 
    @places = @client.spots(-33.8670522, 151.1957362) 
    end 

    # GET /places/1 
    # GET /places/1.json 
    def show 
    end 

    # GET /places/new 
    def new 
    @place = Place.new 
    end 

    # GET /places/1/edit 
    def edit 
    end 

    # POST /places 
    # POST /places.json 
    def create 
    @place = Place.new(place_params) 

    respond_to do |format| 
     if @place.save 
     format.html { redirect_to @place, notice: 'Place was successfully created.' } 
     format.json { render :show, status: :created, location: @place } 
     else 
     format.html { render :new } 
     format.json { render json: @place.errors, status: :unprocessable_entity } 
     end 
    end 
    end 

    # PATCH/PUT /places/1 
    # PATCH/PUT /places/1.json 
    def update 
    respond_to do |format| 
     if @place.update(place_params) 
     format.html { redirect_to @place, notice: 'Place was successfully updated.' } 
     format.json { render :show, status: :ok, location: @place } 
     else 
     format.html { render :edit } 
     format.json { render json: @place.errors, status: :unprocessable_entity } 
     end 
    end 
    end 

    # DELETE /places/1 
    # DELETE /places/1.json 
    def destroy 
    @place.destroy 
    respond_to do |format| 
     format.html { redirect_to places_url, notice: 'Place was successfully destroyed.' } 
     format.json { head :no_content } 
    end 
    end 

    private 
    # Use callbacks to share common setup or constraints between actions. 
    def set_place 
     @place = Place.find(params[:id]) 
    end 

    # Never trust parameters from the scary internet, only allow the white list through. 
    def place_params 
     params.require(:place).permit(:title, :address, :latitude, :longitude) 
    end 
end 

私はあなたの助けに感謝し、それを解決しませんでした。

編集:

そのマイフォルト。私は誤ってgoogle-places gem

+0

を行う必要が構築されました。 Gemfileにgem 'google_places''を追加して 'bundle install'コマンドを実行しましたか? –

+0

はい、私はしました。宝石は少し古く見える、それに関連することができますか? – ccoeder

+0

Rails 5プロジェクトにインストールしようとしましたが、うまくいきます。レールコンソールで試しましたか?確かに、あなたは後にサーバーをリロードしました。 –

答えて

0

ちょうどチェックするために、この

class PlacesController < ApplicationController 
    require 'google-places' 
    before_action :set_place, only: [:show, :edit, :update, :destroy] 

    # GET /places 
    # GET /places.json 
    def index 
    @places = Place.all 
    end 
+0

正確にコントローラにrequire定義を追加しますか? – ccoeder

+0

PlacesController

+0

私の質問が更新され、コントローラコードに追加されました。どう見ているのか教えてください。 – ccoeder

関連する問題