Skip to content

Commit

Permalink
Merge branch 'master' of github.com:anykeyh/clear
Browse files Browse the repository at this point in the history
  • Loading branch information
Yacine Petitprez committed Jun 24, 2018
2 parents 8a0090d + 83bb4be commit c1ae30e
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# v0.1.4alpha
# master/HEAD

## Breaking changes
- Migration to crystal 0.25.
Expand Down Expand Up @@ -97,4 +97,4 @@ Document.query.all.each do |document|
puts document.to_html
end
```
```
29 changes: 29 additions & 0 deletions PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!--- Provide a general summary of your changes in the Title above -->

## Description
<!--- Describe your changes in detail -->

## Motivation and Context
<!--- Why is this change required? What problem does it solve? -->
<!--- If it fixes an open issue, please link to the issue here. -->

## How Has This Been Tested?
<!--- Please describe in detail how you tested your changes. -->
<!--- Include details of your testing environment, tests ran to see how -->
<!--- your change affects other areas of the code, etc. -->

## Types of changes
<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: -->
- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)

<!--- In case of new features, please provide a proper documentation in `manual/` directory -->
- [ ] Manual of usage of the new feature.

## Checklist:
<!--- Go over all the following points, and put an `x` in all the boxes that apply. -->
<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->
- [ ] My code follows the code style of this project. `bin/ameba` ran without alert.
- [ ] My change requires a change to the documentation.
- [ ] I have updated the documentation accordingly.
4 changes: 2 additions & 2 deletions manual/BasicExample.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ they are covered in other articles of this wiki !
`echo "CREATE DATABASE sample_for_wiki;" | psql -U postgres`
# Unleash the kraken !!!
require "../../src/clear"
require "clear"
# Initialize the connection
Clear::SQL.init("postgres://postgres@localhost/sample_for_wiki")
Expand Down Expand Up @@ -189,4 +189,4 @@ User.query.with_posts(&.published).limit(5).each do |user|
end
pause
```
```

0 comments on commit c1ae30e

Please sign in to comment.