All Downloads are FREE. Search and download functionalities are using the official Maven repository.

en.source.yml Maven / Gradle / Ivy

Go to download

This library is a port of Ruby's stympy/faker gem (as well as Perl's Data::Faker library) that generates fake data. It's useful when you're developing a new project and need some pretty data for showcase.

There is a newer version: 1.0.2
Show newest version
en:
  faker:
    source:
      hello_world:
        ruby: "puts 'Hello World!'"
        javascript: "alert('Hello World!');"
      print:
        ruby: "puts 'faker_string_to_print'"
        javascript: "console.log('faker_string_to_print');"
      print_1_to_10:
        ruby: "
              (1..10).each { |i| puts i }"
        javascript: "
              for (let i=0; i<10; i++) {
                console.log(i);
              }"




© 2015 - 2024 Weber Informatics LLC | Privacy Policy