lerolero 5.2.3 → 5.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +13 -62
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a941753cc06e41daa7ae92ab96df0ab4f566f359
4
- data.tar.gz: 628b44a0d5e4445972a48edb4c5ad7058f2457b7
3
+ metadata.gz: 50d283fba37822c05bf2e5d1a028ab6f660fc21e
4
+ data.tar.gz: 4d00e6039d5f34d230ef4c4da39635b025567d98
5
5
  SHA512:
6
- metadata.gz: 2c299fc76ace1b8c33c8e496863184a0d1a05571a549f5e919443b201898bac72b08e661ef4217a5fbf71d46c91b4f8a2ab7a390b977620259548d570bd4fed9
7
- data.tar.gz: f5ae37639bea705ce4f0b84e47929de8e3c0c2be615c38957e855bdec122857ec171c000725f0131c9b2a34de8514fc8eb0703936fc8afce1b5ef6ee6a2605a5
6
+ metadata.gz: 3b3bfdc314208662431be493c7679d25a6b9119acf9214d5c924f33d4925b5f0591800d25961fee3b54c17f62a21ee893335bd184381072abd21d20ec2b0f98e
7
+ data.tar.gz: d0b0039c25ba28b843d72a7b8d50cde01fec33c1fa5cf9ac1969e72bff5751e85392b3477afe540b28dcea57e19fbdbdc0ad2f214bec7d1c8c77e1ac5d30e606
data/README.md CHANGED
@@ -1,77 +1,28 @@
1
- # Welcome to Rails
2
-
3
- Rails is a web-application framework that includes everything needed to
4
- create database-backed web applications according to the
5
- [Model-View-Controller (MVC)](http://en.wikipedia.org/wiki/Model-view-controller)
6
- pattern.
7
-
8
- Understanding the MVC pattern is key to understanding Rails. MVC divides your
9
- application into three layers, each with a specific responsibility.
10
-
11
- The _Model layer_ represents your domain model (such as Account, Product,
12
- Person, Post, etc.) and encapsulates the business logic that is specific to
13
- your application. In Rails, database-backed model classes are derived from
14
- `ActiveRecord::Base`. Active Record allows you to present the data from
15
- database rows as objects and embellish these data objects with business logic
16
- methods. You can read more about Active Record in its [README](activerecord/README.rdoc).
17
- Although most Rails models are backed by a database, models can also be ordinary
18
- Ruby classes, or Ruby classes that implement a set of interfaces as provided by
19
- the Active Model module. You can read more about Active Model in its [README](activemodel/README.rdoc).
20
-
21
- The _Controller layer_ is responsible for handling incoming HTTP requests and
22
- providing a suitable response. Usually this means returning HTML, but Rails controllers
23
- can also generate XML, JSON, PDFs, mobile-specific views, and more. Controllers load and
24
- manipulate models, and render view templates in order to generate the appropriate HTTP response.
25
- In Rails, incoming requests are routed by Action Dispatch to an appropriate controller, and
26
- controller classes are derived from `ActionController::Base`. Action Dispatch and Action Controller
27
- are bundled together in Action Pack. You can read more about Action Pack in its
28
- [README](actionpack/README.rdoc).
29
-
30
- The _View layer_ is composed of "templates" that are responsible for providing
31
- appropriate representations of your application's resources. Templates can
32
- come in a variety of formats, but most view templates are HTML with embedded
33
- Ruby code (ERB files). Views are typically rendered to generate a controller response,
34
- or to generate the body of an email. In Rails, View generation is handled by Action View.
35
- You can read more about Action View in its [README](actionview/README.rdoc).
36
-
37
- Active Record, Active Model, Action Pack, and Action View can each be used independently outside Rails.
38
- In addition to that, Rails also comes with Action Mailer ([README](actionmailer/README.rdoc)), a library
39
- to generate and send emails; Active Job ([README](activejob/README.md)), a
40
- framework for declaring jobs and making them run on a variety of queueing
41
- backends; Action Cable ([README](actioncable/README.md)), a framework to
42
- integrate WebSockets with a Rails application;
43
- and Active Support ([README](activesupport/README.rdoc)), a collection
44
- of utility classes and standard library extensions that are useful for Rails,
45
- and may also be used independently outside Rails.
1
+ # Bem Vindo ao gem lerolero para ruby
2
+
3
+ Usado para gerar frases que aparentemente possui algum sentido mas por�m foram geradas de forma totalmente aleatoria.
46
4
 
47
5
  ## Getting Started
48
6
 
49
- 1. Install Rails at the command prompt if you haven't yet:
7
+ 1. Instale o gem lerolero:
50
8
 
51
- $ gem install rails
9
+ $ gem install lerolero
52
10
 
53
- 2. At the command prompt, create a new Rails application:
11
+ 2. Abra o Gemfile no folder raiz:
54
12
 
55
- $ rails new myapp
13
+ $ sudo nano Gemfile
56
14
 
57
- where "myapp" is the application name.
15
+ e adicione uma linha:
16
+
17
+ $ gem 'lerolero'
58
18
 
59
- 3. Change directory to `myapp` and start the web server:
60
19
 
61
- $ cd myapp
62
- $ rails server
20
+ 3. Utilize da seguinte maneira dentro do seu programa ruby:
63
21
 
64
- Run with `--help` or `-h` for options.
22
+ $ puts lerolero.produzirfraselerolero
65
23
 
66
- 4. Using a browser, go to `http://localhost:3000` and you'll see:
67
- "Yay! You�re on Rails!"
24
+ Uma frase aleatoria de significado ao mesmo tempo duvidoso e mistico sera gerada.
68
25
 
69
- 5. Follow the guidelines to start developing your application. You may find
70
- the following resources handy:
71
- * [Getting Started with Rails](http://guides.rubyonrails.org/getting_started.html)
72
- * [Ruby on Rails Guides](http://guides.rubyonrails.org)
73
- * [The API Documentation](http://api.rubyonrails.org)
74
- * [Ruby on Rails Tutorial](https://www.railstutorial.org/book)
75
26
 
76
27
  ## Contributing
77
28
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lerolero
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.2.3
4
+ version: 5.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Milton Yukio Matsumura