2

私は次のものを持っています:

宝石:

gem 'pg', '~> 0.18'
gem 'activerecord-postgis-adapter', '4.0.0'
gem 'rgeo-geojson'

イニシャライザ: config/initializers/rgeo.rb

require 'rgeo-activerecord'

RGeo::ActiveRecord::SpatialFactoryStore.instance.tap do |config|
  # By default, use the GEOS implementation for spatial columns.
  config.default = RGeo::Geos.factory_generator

  # But use a geographic implementation for point columns.
  config.register(RGeo::Geographic.spherical_factory(srid: 4326), geo_type: "point")
end

データベース設定: config/database.yml

default: &default
  adapter: postgis
  encoding: unicode
  username: appname_u
  password: password
  su_username: appname_su
  su_password: Pa55w0rd
  schema_search_path: "public, postgis"
  pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
development:
  <<: *default
  database: appname_development
  script_dir: /usr/local/opt/postgis/share/postgis
test:
  <<: *default
  database: appname_test
  script_dir: /usr/local/opt/postgis/share/postgis

production:
  <<: *default
  database: appname_production
  url: <%= ENV.fetch('DATABASE_URL', '').sub(/^postgres/, "postgis") %>
  username: unfold
  password: <%= ENV['UNFOLD_DATABASE_PASSWORD'] %>

heroku postgresql の postgis 拡張機能を有効にします。

$ heroku pg:psql --app ngrails-unfold
> CREATE EXTENSION postgis;
> select postgis_version();
            postgis_version            
---------------------------------------
 2.3 USE_GEOS=1 USE_PROJ=1 USE_STATS=1
(1 row)

データ モデルの移行:

class CreateLocations < ActiveRecord::Migration[5.0]
  def change
    create_table :locations do |t|
      t.string :name, null: false
      t.st_point :latlon, geographic: true, null: false

      t.timestamps
    end

    add_index :locations, :name
  end
end

ビルドパック:

1. Possibly a frontend app buildpack
2. https://github.com/cyberdelia/heroku-geo-buildpack.git Or https://github.com/desaperados/heroku-buildpack-geo.git 
3. heroku/ruby

しかし、私はまだ本番環境でエラーが発生します:

NoMethodError (nil:NilClass のメソッド「プロパティ」が未定義) ——— ログ ———</p>

heroku[router]: at=info method=POST path="/api/locations.json" host=yourappname.herokuapp.com request_id=4053b701-9d3e-479c-8a33-c44e539ccdc8 fwd="45.63.35.55" dyno=web.1 connect=3ms service=28ms status=500 bytes=551

Started POST "/api/locations.json" for 45.63.35.55 at 2016-11-15 14:36:41 +0000

Processing by LocationsController#create as JSON

Parameters: {"location"=>{"name"=>"San Francisco Airport", "latlon"=>"POINT(-122.381827 37.62161)"}}

BEGIN

Location Exists (1.7ms)  SELECT  1 AS one FROM "locations" WHERE "locations"."name" = $1 LIMIT $2  [["name", "San Francisco Airport"], ["LIMIT", 1]]

——— heroku からのエラー ログ ———</p>

ROLLBACK

Completed 500 Internal Server Error in 15ms (ActiveRecord: 6.1ms)

NoMethodError (undefined method `property' for nil:NilClass):

app/controllers/locations_controller.rb:20:in `create'

——— localhost からの成功ログ ———-

INSERT INTO "locations" ("name", "latlon", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["name", "San Francisco Airport"], ["latlon", "0020000001000010e6c05e986fda836eb54042cf90ea9e6eeb"], ["created_at", 2016-11-15 14:35:29 UTC], ["updated_at", 2016-11-15 14:35:29 UTC]]

COMMIT

では、Heroku で postgis 対応の Rails アプリをセットアップするための正しい手順は何でしょうか?

ところで、アプリは localhost でスムーズに動作します。Herokuで整理できません。

4

1 に答える 1