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

mappum

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mappum

  • 0.2.4
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

== mappum

Mappum is the tree to tree (object, bean etc.) mapping DSL. The example of usage is provided below. More documentation will follow.

Mappum.catalogue_add "CRM-ERP" do

map ERP::Person, CRM::Client do |p, c|

#simple mapping
map p.title <=> c.title

#map with simple function call
map p.person_id << c.key.downcase
map p.person_id.upcase >> c.key

#dictionary use
map p.sex <=> c.sex_id, :dict => {"F" => "1", "M" => "2"}

#submaps
map p.address(ERP::Address) <=> c.address(CRM::Address) do |a, b|
  map a.street <=> b.street
  #etc.
end

#subobject to fields
map p.main_phone(ERP::Phone) <=> c.self do |a, b|
  map a.number <=> b.main_phone
  map a.type <=> b.main_phone_type
end

#compilcated function call
map p.name >> c.surname do |name|
  name + "ski"
end
map p.name << c.surname do |name|
  if name =~ /ski/
    name[0..-4]
  else
    name
  end
end
#field to array and array to field
map p.email1 <=> c.emails[0]
map p.email2 <=> c.emails[1]
map p.email3 <=> c.emails[2]

map p.phones(ERP::Phone)[] <=> c.phones[] do |a, b|
  map a.number <=> b.self
end

end end

FAQs

Package last updated on 15 Dec 2009

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