Skip to content

Commit

Permalink
small changes
Browse files Browse the repository at this point in the history
  • Loading branch information
hegde-atri committed Feb 1, 2023
1 parent 6beae90 commit 5a6dfd8
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 19 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
# Ignore bundler config.
/.bundle

# IDE configurations
.vscode
.idea

# Ignore the default SQLite database.
/db/*.sqlite3
/db/*.sqlite3-*
Expand Down
4 changes: 4 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,8 @@ GEM
nio4r (2.5.8)
nokogiri (1.14.1-x64-mingw-ucrt)
racc (~> 1.4)
nokogiri (1.14.1-x86_64-linux)
racc (~> 1.4)
public_suffix (5.0.1)
puma (5.6.5)
nio4r (~> 2.0)
Expand Down Expand Up @@ -178,6 +180,7 @@ GEM
activesupport (>= 5.2)
sprockets (>= 3.0.0)
sqlite3 (1.6.0-x64-mingw-ucrt)
sqlite3 (1.6.0-x86_64-linux)
stimulus-rails (1.2.1)
railties (>= 6.0.0)
thor (1.2.1)
Expand Down Expand Up @@ -209,6 +212,7 @@ GEM

PLATFORMS
x64-mingw-ucrt
x86_64-linux

DEPENDENCIES
bootsnap
Expand Down
29 changes: 10 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,15 @@
# README
# CRUDPracticeRails

This README would normally document whatever steps are necessary to get the
application up and running.
## Snippets

Things you may want to cover:
### Create a controller

* Ruby version
``` sh
bin/rails generate
```

* System dependencies
### Create a model

* Configuration

* Database creation

* Database initialization

* How to run the test suite

* Services (job queues, cache servers, search engines, etc.)

* Deployment instructions

* ...
``` sh
bin/rails generate model Article title:string body:text
```

0 comments on commit 5a6dfd8

Please sign in to comment.