Coder Social home page Coder Social logo

Comments (4)

GustavoCaso avatar GustavoCaso commented on June 8, 2024

Hi, @cutalion thanks for the issue ❤️

I was looking into and well I have to say I think is not a limitation of the library but more of a limitation of the language.

[].each do |when|
  puts when
end

Traceback (most recent call last):
syntax error, unexpected keyword_when, expecting '|'
[].each do |when|

I don't think is the good approach to try working against ruby 🙉

On another topic, I was trying to use ranges in the library and end up with a working example.

factories.define(:announcement) do |f|
  f.range { ROM::SQL::Postgres::Values::Range.new(3, 9, :'[]') } # range
  f.begin { |range| range.lower }
  f.end { |range| range.upper }
end

announcement = factories[:announcement]

expect(announcement.begin).to eq 3
expect(announcement.end).to eq 9

I found a little verbose having to type all that code to create a range type, might be interesting to have some method to create ranges or something a little more generic for the users? WDYT? @solnic

from rom-factory.

cutalion avatar cutalion commented on June 8, 2024

Hi @GustavoCaso, you're of course right about language limitations.
But I think that the issue is with the way of passing parameters, with API itself.

Consider the following example:

Factory.define(:announcement) do |f|
  f.when { 10.hours.since..12.hours.since } # time range
  f.start_time { |attrs| attrs[:when].begin.strftime('%H:%M') }
  f.end_time { |attrs| attrs[:when].end.strftime('%H:%M') }
end

It wouldn't have such limitations.

from rom-factory.

cutalion avatar cutalion commented on June 8, 2024

Btw, I had to deal with the similar issue in dry-validation.

      validate(start_lt_end: [:when]) do |when_|
        when_.begin < when_.end
      end

Here at least it's possible to pick a name for a variable. In rom-factory attribute is picked after the local variable name (nice trick).

I know this a very bad name for attribute in ruby, but it's the legacy database and it's first (two) places where it hit me. I've never had such issues in rails/activerecord/fabricator/etc

from rom-factory.

GustavoCaso avatar GustavoCaso commented on June 8, 2024

@cutalion I will see what I can do ❤️

from rom-factory.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.