Skip to content

Commit f25990c

Browse files
committed
Move all jonatas/timescaledb to timescale/timescaledb-ruby
1 parent 4d192c1 commit f25990c

10 files changed

+27
-27
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -550,12 +550,12 @@ You can watch all episodes here:
550550

551551
## Contributing
552552

553-
Bug reports and pull requests are welcome on GitHub at https://github.com/jonatas/timescaledb. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/jonatas/timescaledb/blob/master/CODE_OF_CONDUCT.md).
553+
Bug reports and pull requests are welcome on GitHub at https://github.com/timescale/timescaledb-ruby. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/timescale/timescaledb-ruby/blob/master/CODE_OF_CONDUCT.md).
554554

555555
## License
556556

557557
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
558558

559559
## Code of Conduct
560560

561-
Everyone interacting in the Timescale project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/jonatas/timescaledb/blob/master/CODE_OF_CONDUCT.md).
561+
Everyone interacting in the Timescale project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/timescale/timescaledb-ruby/blob/master/CODE_OF_CONDUCT.md).

docs/chat_gpt_tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,4 +463,4 @@ If you want to try it, this example is available on
463463
[examples/chatgpt/openai-cli.rb][open-api-cli] and you can follow the
464464
instructions in the folder how to use it.
465465

466-
[open-api-cli]: https://github.com/jonatas/timescaledb/blob/main/examples/chatgpt/openai-cli.rb
466+
[open-api-cli]: https://github.com/timescale/timescaledb-ruby/blob/main/examples/chatgpt/openai-cli.rb

docs/index.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@ gem "timescaledb"
1919

2020
## Features
2121

22-
* The model can use the [acts_as_hypertable](https://github.com/jonatas/timescaledb/tree/master/lib/timescaledb/acts_as_hypertable.rb) macro. Check more on [models](models) documentation.
23-
* The ActiveRecord [migrations](migrations) can use the [create_table](https://github.com/jonatas/timescaledb/tree/master/lib/timescaledb/migration_helpers.rb) supporting the `hypertable` keyword. It's also enabling you to add retention and continuous aggregates policies
22+
* The model can use the [acts_as_hypertable](https://github.com/timescale/timescaledb-ruby/tree/master/lib/timescaledb/acts_as_hypertable.rb) macro. Check more on [models](models) documentation.
23+
* The ActiveRecord [migrations](migrations) can use the [create_table](https://github.com/timescale/timescaledb-ruby/tree/master/lib/timescaledb/migration_helpers.rb) supporting the `hypertable` keyword. It's also enabling you to add retention and continuous aggregates policies
2424
* A standalone `create_hypertable` macro is also allowed in the migrations.
25-
* Testing also becomes easier as the [schema dumper](https://github.com/jonatas/timescaledb/tree/master/lib/timescaledb/schema_dumper.rb) will automatically introduce the hypertables to all environments.
26-
* It also contains a [scenic extension](https://github.com/jonatas/timescaledb/tree/master/lib/timescaledb/scenic/extension.rb) to work with [scenic views](https://github.com/scenic-views/scenic) as it's a wide adoption in the community.
25+
* Testing also becomes easier as the [schema dumper](https://github.com/timescale/timescaledb-ruby/tree/master/lib/timescaledb/schema_dumper.rb) will automatically introduce the hypertables to all environments.
26+
* It also contains a [scenic extension](https://github.com/timescale/timescaledb-ruby/tree/master/lib/timescaledb/scenic/extension.rb) to work with [scenic views](https://github.com/scenic-views/scenic) as it's a wide adoption in the community.
2727
* The gem is also packed with a [command line utility](command_line) that makes it easier to navigate in your database with Pry and all your hypertables available in a Ruby style.
2828

2929
## Examples
3030

31-
The [all_in_one](https://github.com/jonatas/timescaledb/tree/master/examples/all_in_one/all_in_one.rb) example shows:
31+
The [all_in_one](https://github.com/timescale/timescaledb-ruby/tree/master/examples/all_in_one/all_in_one.rb) example shows:
3232

3333
1. Create a hypertable with compression settings
3434
2. Insert data
@@ -38,17 +38,17 @@ The [all_in_one](https://github.com/jonatas/timescaledb/tree/master/examples/all
3838
6. Check chunk status
3939
7. Decompress a chunk
4040

41-
The [ranking](https://github.com/jonatas/timescaledb/tree/master/examples/ranking) example shows how to configure a Rails app and navigate all the features available.
41+
The [ranking](https://github.com/timescale/timescaledb-ruby/tree/master/examples/ranking) example shows how to configure a Rails app and navigate all the features available.
4242

4343

4444
## Toolkit examples
4545

46-
There are also examples in the [toolkit-demo](https://github.com/jonatas/timescaledb/tree/master/examples/toolkit-demo) folder that can help you to
46+
There are also examples in the [toolkit-demo](https://github.com/timescale/timescaledb-ruby/tree/master/examples/toolkit-demo) folder that can help you to
4747
understand how to properly use the toolkit functions.
4848

49-
* [ohlc](https://github.com/jonatas/timescaledb/tree/master/examples/toolkit-demo/ohlc.rb) is a funtion that groups data by Open, High, Low, Close and make histogram availables to group the data, very useful for financial analysis.
50-
* While building the [LTTB tutorial]( https://jonatas.github.io/timescaledb/toolkit_lttb_tutorial/) I created the [lttb](https://github.com/jonatas/timescaledb/tree/master/examples/toolkit-demo/lttb) is a simple charting using the Largest Triangle Three Buckets and there. A [zoomable](https://github.com/jonatas/timescaledb/tree/master/examples/toolkit-demo/lttb-zoom) version which allows to navigate in the data and zoom it keeping the same data resolution is also available.
51-
* A small example showing how to process [volatility](https://github.com/jonatas/timescaledb/blob/master/examples/toolkit-demo/compare_volatility.rb) is also good to get familiar with the pipeline functions. A benchmark implementing the same in Ruby is also available to check how it compares to the SQL implementation.
49+
* [ohlc](https://github.com/timescale/timescaledb-ruby/tree/master/examples/toolkit-demo/ohlc.rb) is a funtion that groups data by Open, High, Low, Close and make histogram availables to group the data, very useful for financial analysis.
50+
* While building the [LTTB tutorial]( https://jonatas.github.io/timescaledb/toolkit_lttb_tutorial/) I created the [lttb](https://github.com/timescale/timescaledb-ruby/tree/master/examples/toolkit-demo/lttb) is a simple charting using the Largest Triangle Three Buckets and there. A [zoomable](https://github.com/timescale/timescaledb-ruby/tree/master/examples/toolkit-demo/lttb-zoom) version which allows to navigate in the data and zoom it keeping the same data resolution is also available.
51+
* A small example showing how to process [volatility](https://github.com/timescale/timescaledb-ruby/blob/master/examples/toolkit-demo/compare_volatility.rb) is also good to get familiar with the pipeline functions. A benchmark implementing the same in Ruby is also available to check how it compares to the SQL implementation.
5252

5353

5454
## Extra resources
@@ -61,12 +61,12 @@ live-coding sessions showed how [@jonatasdp](https://twitter.com/jonatasdp) buil
6161

6262
## Contributing
6363

64-
Bug reports and pull requests are welcome on GitHub at https://github.com/jonatas/timescaledb. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/jonatas/timescaledb/blob/master/CODE_OF_CONDUCT.md).
64+
Bug reports and pull requests are welcome on GitHub at https://github.com/timescale/timescaledb-ruby. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/timescale/timescaledb-ruby/blob/master/CODE_OF_CONDUCT.md).
6565

6666
## License
6767

6868
The gem is available as open source under the [MIT License](https://opensource.org/licenses/MIT).
6969

7070
## Code of Conduct
7171

72-
Everyone interacting in the Timescale project's codebases, issue trackers, chat rooms, and mailing lists is expected to follow the [code of conduct](https://github.com/jonatas/timescaledb/blob/master/CODE_OF_CONDUCT.md).
72+
Everyone interacting in the Timescale project's codebases, issue trackers, chat rooms, and mailing lists is expected to follow the [code of conduct](https://github.com/timescale/timescaledb-ruby/blob/master/CODE_OF_CONDUCT.md).

docs/scenic_views.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ FROM plays
3232
GROUP BY game_id, bucket;
3333
```
3434

35-
Check out the source code of the [full example](https://github.com/jonatas/timescaledb/tree/master/examples/ranking).
35+
Check out the source code of the [full example](https://github.com/timescale/timescaledb-ruby/tree/master/examples/ranking).

docs/toolkit_lttb_tutorial.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@ Downsampling it in the front end would save bandwidth from your server and memor
522522
You can still run this code from the official repository if you haven't followed the step-by-step tutorial. Check this out:
523523

524524
```bash
525-
git clone https://github.com/jonatas/timescaledb.git
525+
git clone https://github.com/timescale/timescaledb-ruby.git
526526
cd timescaledb
527527
bundle install
528528
cd examples/toolkit-demo
@@ -536,12 +536,12 @@ If you have any comments, feel free to drop a message to me at the [Timescale Co
536536

537537
[1]: https://github.com/timescale/timescaledb-toolkit/blob/main/docs/lttb.md
538538
[2]: https://github.com/Jubke/lttb
539-
[3]: https://github.com/jonatas/timescaledb/blob/master/examples/toolkit-demo/lttb
539+
[3]: https://github.com/timescale/timescaledb-ruby/blob/master/examples/toolkit-demo/lttb
540540
[4]: https://docs.timescale.com/timescaledb/latest/tutorials/sample-datasets/#weather-datasets
541541
[5]: https://www.timescale.com/community
542-
[6]: https://github.com/jonatas/timescaledb/pulls
543-
[7]: https://github.com/jonatas/timescaledb/issues
544-
[8]: https://github.com/jonatas/timescaledb
542+
[6]: https://github.com/timescale/timescaledb-ruby/pulls
543+
[7]: https://github.com/timescale/timescaledb-ruby/issues
544+
[8]: https://github.com/timescale/timescaledb-ruby
545545
[9]: http://pry.github.io
546546
[10]: https://github.com/Jubke/lttb
547547
[11]: https://chartkick.com

docs/toolkit_lttb_zoom.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -342,10 +342,10 @@ That's all for today folks!
342342

343343

344344
[1]: /toolkit_lttb_tutorial
345-
[2]: https://github.com/jonatas/timescaledb/blob/master/examples/toolkit-demo/lttb_zoom
345+
[2]: https://github.com/timescale/timescaledb-ruby/blob/master/examples/toolkit-demo/lttb_zoom
346346
[3]: https://docs.timescale.com/api/latest/hyperfunctions/downsample/lttb/
347347
[4]: https://docs.timescale.com/timescaledb/latest/how-to-guides/hyperfunctions/function-pipelines/
348-
[5]: https://github.com/jonatas/timescaledb
348+
[5]: https://github.com/timescale/timescaledb-ruby
349349
[6]: http://pry.github.io
350350
[7]: http://sinatrarb.com
351351
[8]: https://docs.timescale.com/timescaledb/latest/tutorials/sample-datasets/#weather-datasets

docs/toolkit_ohlc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,6 @@ If you have any questions or concerns, feel free to reach me ([@jonatasdp][7]) i
311311
[2]: https://ideia.me/timescale-continuous-aggregates-with-ruby
312312
[3]: https://github.com/timescale/timescaledb-toolkit/blob/cbbca7b2e69968e585c845924e7ed7aff1cea20a/extension/src/ohlc.rs#L20-L24
313313
[4]: https://github.com/timescale/timescaledb/pull/4668
314-
[5]: https://github.com/jonatas/timescaledb/tree/master/examples/toolkit-demo
314+
[5]: https://github.com/timescale/timescaledb-ruby/tree/master/examples/toolkit-demo
315315
[6]: https://timescale.com/community
316316
[7]: https://twitter.com/jonatasdp

docs/videos.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ You can watch all episodes here:
1313

1414

1515
If you create any content related to how to use the Timescale Gem, please open a
16-
[Pull Request](https://github.com/jonatas/timescaledb/pulls).
16+
[Pull Request](https://github.com/timescale/timescaledb-ruby/pulls).

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
site_name: The Timescaledb gem
2-
repo_url: https://github.com/jonatas/timescaledb
2+
repo_url: https://github.com/timescale/timescaledb-ruby
33
edit_uri: edit/master/docs/
44
extra:
55
analytics:

timescaledb.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
88

99
spec.summary = %q{TimescaleDB helpers for Ruby ecosystem.}
1010
spec.description = %q{Functions from timescaledb available in the ActiveRecord models.}
11-
spec.homepage = "https://github.com/jonatas/timescaledb"
11+
spec.homepage = "https://github.com/timescale/timescaledb-ruby"
1212
spec.license = "MIT"
1313
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
1414

0 commit comments

Comments
 (0)