Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
bogdan authored Sep 23, 2024
1 parent cefa853 commit 85c51dd
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,20 @@ Building an URI from initial parts:
``` ruby
Furi.build(protocol: '//', host: 'gusiev.com', path: '/assets/application.js')
# => "//gusiev.com/assets/application.js"

Furi.build(
location: 'https://calendar.google.com',
path: '/calendar/render',
query: {
action: 'TEMPLATE',
text: 'Seven Figure Club Meeting',
dates: [Time.now + 2.hours, Time.now + 3.hours].map do |t|
t.strftime("%Y%m%dT%H%M%SZ")
end.join('/'),
details: 'Seven Figure Club invites to the discussion with other founders to one of the topics you have expressed your interest to.',
add: ["[email protected]", "[email protected]"].join(',')
}
)
```

### Working with Object
Expand Down

0 comments on commit 85c51dd

Please sign in to comment.