T.Raghavendra
T.Raghavendra

Reputation: 362

Can we use RubyOnRails for Banking and financial transactions domain

Can we use RubyOnRails framework to develop websites for financial transactions & banking transcations.

Is RubyonRails a DSL for banking Domains.

Some days on DSL, i believe most of the facts of Banking system are static and they may not need any subsequent alterations.. simultaneously. So defining a DSL, one way process must work.

Upvotes: 3

Views: 2666

Answers (2)

rjurney
rjurney

Reputation: 5150

Banking transactions are all done in stored procedures in software and databases independent of the web interface to your bank account, so you could use any web framework, but this is one of the only areas where you have sufficiently complex transactional rules that an enterprise Java stack actually makes sense. RAILS was once optimized for simple CRUD but has become much more mature in the last decade. I would suggest looking into JRuby, which is Ruby on top of the Java Virtual Machine, because you will have a much nicer time operating RAILS on the JVM in a high secure, high reliability environment like a financial institution.

Upvotes: 4

Michael Gee
Michael Gee

Reputation: 166

Of course you can. Ruby on Rails can perform the same tasks as any other web framework. Maybe you should pose a question about a particular task that you think would be hard for Ruby on Rails, and we can address that.

Ruby on Rails is not a DSL for banking. Ruby makes it easy to define your own DSLs, and Ruby on Rails is a good way to get that business logic available over the internet.

Upvotes: 2

Related Questions