RUES API wrapper
Formulario para renovación de empresas
qcgnox
Download ebook pdf mobi epub Michel Onfray Décadence is available now
Consulta unificada de información empresarial por NIT desde datos.gov.co y rues.org.co
Servidor MCP de Cédula 360 — verificación de información pública oficial colombiana (ADRES, Rama Judicial, DIAN, RUES, sanciones/PEP, Legal IA, MiniMax) vía tu API key c360_live_*.
RuES is JMES Evaluation as Service
An implementation of the Abstract Syntax Tree for the Rue compiler.
A CLI tool for invoking the Rue compiler.
A compiler for the Rue programming language.
All of the potential diagnostics that can be emitted by the Rue compiler.
Provides a high-level intermediate representation of the Rue programming language.
A lexer for the Rue programming language.
A language server protocol (LSP) implementation for the Rue programming language.
Procedural macros for Rue — a Vue 3-like reactive UI framework in Rust/WASM
Provides a way to configure the Rue compiler.
A parser for the Rue programming language.
A type system for the Rue programming language.
Gema ligera y sin dependencias que implementa el algoritmo oficial usado por DIAN/RUES para calcular el dígito de verificación (DV) del NIT en Colombia.
Rhales is a framework for building server-rendered components with client-side data hydration using .rue files called RSFCs (Ruby Single File Components). Similar to Vue.js single file components but for server-side Ruby applications. Features include Handlebars-style templating, JSON data injection, partial support, pluggable authentication adapters, and security-first design.
= sql_valued_columns SqlValuedColumns is an ActiveRecord plugin that will let you have specific SQL statements executed on INSERT / UPDATE. It will call the SQL function you provide, passing the arguments specified in the call to sql_column. See the documentation for SqlValuedColumns::ClassMethods#sql_column for more information regarding usage, including passing Strings and Proc objects as arguments to your SQL function. Example: You have a model with two columns, one named "another_column" and the other named "size_of_another_column". Whenever you insert data into "another_column", you want to have size_of_another_column have the result of the SQL function LENGTH inserted into it. class MyModel < ActiveRecord::Base sql_column :size_of_another_column, "LENGTH", :another_column end Example 2: You have a model with three columns, position, latitude and longitude. Latitude and longitude are values expressed as angles, and position is a special datatype for your database that represents the X/Y/Z projection of that particular latitude and longitude (example: http://www.postgresql.org/docs/8.3/static/earthdistance.html ) When you insert data with latitude and longitude, you want to automatically call a function in your database to transform the latitude and longitude into the appropriate represenation. class MyModel < ActiveRecord::Base sql_column :position, "ll_to_earth", :latitude, :longitude end Example 3: You are an insane criminal who has somehow learned SQL. You would like to make anyone who runs your code to suffer database punishing queries and odd security and data formatting issues that will make them rue the day they ever learned of computers. class MyModel < ActiveRecord::Base sql_column :a_column, "(SELECT count(id) FROM large_list_of_things)", :raw => true sql_column :another_column, '(SELECT count(other_id) FROM other_large_list_of_things WHERE some_column = \'#{some_model_method}\')', :raw => true end == Notes No tests yet, am lazy. == Copyright Copyright (c) 2009 Chris Zelenak. See LICENSE for details.