Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

pg_rails

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pg_rails

  • 7.6.23
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

CircleCI Maintainability Test Coverage

PgRails

Plugin de Programando para Rails

Installation

Add this line to your application's Gemfile:

gem 'pg_rails', git: 'https://github.com/programandoarg/pg_rails.git', ref: '<commit hash>'

And then execute:

$ bundle

Uso

Asociación creable

f.asociacion_creable(campo, index_url, new_url, opciones)

Opciones:

  • label: Texto para la label o false para que no haya label

Ejemplo:

= pg_form_for(@cosa) do |f|
  = f.asociacion_creable(:categoria_de_cosa, categoria_de_cosas_url, new_categoria_de_cosa_url, crear_asociado: true)

Contributing

Setup

  1. Ingresar a la consola de postgres:
sudo -u postgres psql template1
  1. Crear el rol
create role pgrails password 'pgrails' login superuser;
  1. Ejecutar el script bin/setup. This script will:
  • Check you have the required Ruby version
  • Install dependencies using Bundler
  • Create a .env.development file
  • Create, migrate, and seed the database

Testear y ejecutar

  1. Instalar overcommit: gem install overcommit
  2. Correr los linters con overcommit -r
  3. Correr los tests con bundle exec rspec
  4. Instalar foreman: gem install foreman
  5. cd spec/dummy
  6. foreman start

Acceder a la app en http://localhost:3000/.

Regenerar modelos dummy

cd spec/dummy

  1. bundle exec rails d pg_scaffold Admin/Cosa
  2. bundle exec rails d pg_scaffold Admin/CategoriaDeCosa
  3. Borrar policies
  4. bundle exec rails g pg_scaffold Admin/CategoriaDeCosa nombre:string{required} "tipo:integer{enum,required}" fecha:date tiempo:datetime --model-name=CategoriaDeCosa --discard --activeadmin
  5. bundle exec rails g pg_scaffold Admin/Cosa nombre:string{required} "tipo:integer{enum,required}" categoria_de_cosa:references{required} --model-name=Cosa --discard --activeadmin
  6. Setup asociacion creable en cosas/_form

be rake app:pg_engine_engine:install:migrations

be rails pg_engine_engine:install:migrations

"build": "esbuild pg_rails/js/index.js --bundle --sourcemap --format=esm --outdir=pg_rails/builds --public-path=/assets",
"build:css:compile": "sass ./pg_rails/scss/pg_rails.scss:./pg_rails/builds/application.css --no-source-map --load-path=node_modules",
"build:css:prefix": "postcss ./pg_rails/builds/application.css --use=autoprefixer --output=./pg_rails/builds/application.css",
"build:css": "yarn build:css:compile && yarn build:css:prefix",

ruby-vips pdftoppm

atributos no pueden terminar en _text

FAQs

Package last updated on 22 Nov 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc