{"id":15064617,"url":"https://github.com/dsgriffin/rgraph-rails","last_synced_at":"2026-05-06T07:02:11.004Z","repository":{"id":56892213,"uuid":"46859169","full_name":"dsgriffin/rgraph-rails","owner":"dsgriffin","description":"The rgraph interactive chart/graph lib with the Rails asset pipeline :bar_chart:","archived":false,"fork":false,"pushed_at":"2024-12-29T21:20:09.000Z","size":2674,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-22T01:42:34.960Z","etag":null,"topics":["chart","rails-asset-pipeline","rgraph","ruby","ruby-gem","ruby-on-rails"],"latest_commit_sha":null,"homepage":"https://rubygems.org/gems/rgraph-rails","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dsgriffin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"license.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2015-11-25T12:04:19.000Z","updated_at":"2024-12-29T21:20:13.000Z","dependencies_parsed_at":"2024-10-13T00:21:06.672Z","dependency_job_id":"24d05cdb-b9a6-4a7f-b177-57a6c1c83e24","html_url":"https://github.com/dsgriffin/rgraph-rails","commit_stats":{"total_commits":46,"total_committers":4,"mean_commits":11.5,"dds":0.4782608695652174,"last_synced_commit":"9958e292c3f1658a8f37edcfed16471cf915282e"},"previous_names":["thisisbd/rgraph-rails"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/dsgriffin/rgraph-rails","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsgriffin%2Frgraph-rails","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsgriffin%2Frgraph-rails/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsgriffin%2Frgraph-rails/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsgriffin%2Frgraph-rails/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dsgriffin","download_url":"https://codeload.github.com/dsgriffin/rgraph-rails/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsgriffin%2Frgraph-rails/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32682451,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-06T02:33:58.958Z","status":"ssl_error","status_checked_at":"2026-05-06T02:33:39.611Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["chart","rails-asset-pipeline","rgraph","ruby","ruby-gem","ruby-on-rails"],"created_at":"2024-09-25T00:22:41.604Z","updated_at":"2026-05-06T07:02:10.971Z","avatar_url":"https://github.com/dsgriffin.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# rgraph-rails 📊\n\n[![Gem Version](https://badge.fury.io/rb/rgraph-rails.svg)](https://badge.fury.io/rb/rgraph-rails)\n![](https://img.shields.io/badge/rgraph-6.14-red.svg)\n\nUse the [rgraph](http://www.rgraph.net/) chart/graph library with the Rails asset pipeline.\n\n## Installation\n\nInclude the gem in your application's Gemfile:\n\n```ruby\ngem 'rgraph-rails', '~\u003e 6.14'\n```\n\nAnd then execute:\n\n```ruby\n$ bundle\n```\n\n## Usage\n\nIn your `application.js`, include the core RGraph file\n\n```ruby\n//= require RGraph.common.core\n```\n\nJust below that, include one or more graph types you'd like to use. For example:\n\n```ruby\n//= require RGraph.hprogress.js\n```\n\nThen add a simple graph\n\n```coffeescript\n// example.coffee\n\n$(window).load -\u003e\n  hprogress = new RGraph.HProgress({\n    id: 'cvs',\n    min: 50,\n    max: 100,\n    value: 85\n  }).draw()\n```\n\nAnd finally the canvas that will contain the graph\n\n```haml\n# example.html.haml\n\n%canvas#cvs{:height =\u003e \"100\", :width =\u003e \"600\"}\n  [No canvas support]\n```\n\nFor detailed documentation concerning the types of graphs/charts and all other available options, [please see the official docs](http://www.rgraph.net/docs/charts-index.html).\n\n## Run locally\n\nAfter checking out the repo, run `bin/setup` to install dependencies. Then, run `bundle exec rspec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.\n\nTo install this gem onto your local machine, run `bundle exec rake install`.\n\n## Versioning\n\nrgraph itself doesn't use semantic versioning (and therefore neither does this gem; it keeps the same version as the library so that it's less confusing) - you can find out about breaking changes by release on the [Backwards Compatibility section on the official site](http://www.rgraph.net/docs/backwards-compatibility.html).\n\n## Contributing\n\nIf you've found a bug or have an idea, feel free to open an Issue. If you've got a fix or feature ready, open a PR. Thanks!\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdsgriffin%2Frgraph-rails","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdsgriffin%2Frgraph-rails","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdsgriffin%2Frgraph-rails/lists"}