{"id":20509655,"url":"https://github.com/semantic-org/semantic-ui-rails-less","last_synced_at":"2025-12-16T21:55:31.003Z","repository":{"id":23906548,"uuid":"27286580","full_name":"Semantic-Org/Semantic-UI-Rails-LESS","owner":"Semantic-Org","description":"This is a gem for Rails with Semantic UI (http://semantic-ui.com) assets inside.","archived":false,"fork":false,"pushed_at":"2021-06-07T21:40:44.000Z","size":5322,"stargazers_count":123,"open_issues_count":11,"forks_count":36,"subscribers_count":10,"default_branch":"master","last_synced_at":"2024-05-01T22:34:13.783Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/Semantic-Org.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}},"created_at":"2014-11-29T00:23:18.000Z","updated_at":"2023-12-27T06:02:50.000Z","dependencies_parsed_at":"2022-08-20T23:40:08.398Z","dependency_job_id":null,"html_url":"https://github.com/Semantic-Org/Semantic-UI-Rails-LESS","commit_stats":null,"previous_names":[],"tags_count":56,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Semantic-Org%2FSemantic-UI-Rails-LESS","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Semantic-Org%2FSemantic-UI-Rails-LESS/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Semantic-Org%2FSemantic-UI-Rails-LESS/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Semantic-Org%2FSemantic-UI-Rails-LESS/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Semantic-Org","download_url":"https://codeload.github.com/Semantic-Org/Semantic-UI-Rails-LESS/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247345853,"owners_count":20924102,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":[],"created_at":"2024-11-15T20:25:52.573Z","updated_at":"2025-12-16T21:55:30.943Z","avatar_url":"https://github.com/Semantic-Org.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"### No Longer Maintained\nPlease consider this project abandoned. There are many roadblocks that prevent upgrading this to the latest Semantic-UI and now there's Fomantic-UI. https://github.com/Semantic-Org/Semantic-UI-Rails-LESS/issues/53. I suggest you look at bundling Fomantic-UI in with webpacker instead. It is possible though not completely straightforward. This project is starting to get security tickets around dependencies (that I won't fix), so user beware.\n\n# less-rails-semantic_ui [![Gem Version](https://badge.fury.io/rb/less-rails-semantic_ui.svg)](http://badge.fury.io/rb/less-rails-semantic_ui) [![Build Status](https://travis-ci.org/Semantic-Org/Semantic-UI-Rails-LESS.png?branch=master)](https://travis-ci.org/Semantic-Org/Semantic-UI-Rails-LESS)\n\nThis is a gem for Rails with [Semantic UI](https://github.com/Semantic-Org/Semantic-UI/) assets inside.\nIt provides the ability to customize component themes and variables on the fly in your application.\n\n## Features\n\n* LESS based (meaning that it doesn't contains hacks usually used to convert LESS to SASS)\n* Semantic UI configs integrated in your application (you can customize and change component styles on the fly)\n\n## Installation\n\nAdd this block to your application's Gemfile:\n\n```ruby\n# Semantic UI assets\n\ngem 'less-rails-semantic_ui'\ngem 'autoprefixer-rails'\ngem 'therubyracer'\n```\n\n\u003e Semantic UI is using [autoprefixer](https://github.com/postcss/autoprefixer) (in our case [autoprefixer-rails](https://github.com/ai/autoprefixer-rails))\n\u003e to appending additional CSS vendor-prefixes for improve compatibility with different browsers.\n\u003e Without it some parts of Semantic UI (i.e. transitions or modal dialogs because they depends to transitions) won't works in some browsers.\n\u003e You can remove this gem if you don't use such functionality of Semantic UI.\n\u003e\n\u003e P.S. I hope in the future this hack will be unnecessary.\n\nAnd then execute:\n\n    $ bundle install\n\nAfter that, install configuration files inside your application in the `vendor/assets` directory with:\n\n    $ rails generate semantic_ui:install\n\nRequire `semantic_ui/semantic_ui.js` in `app/assets/application.js`:\n\n    ...\n    //= require semantic_ui/semantic_ui\n    ...\n\nRequire `semantic_ui/semantic_ui.css` in `app/assets/application.css`:\n\n    ...\n    *= require semantic_ui/semantic_ui\n    ...\n\n## Upgrade to new version\n\nExecute command below and merge your custom and new changes in config files:\n\n    $ rails generate semantic_ui:install\n\n## Customization\n\nYou can modify any Semantic UI configs and files placed to `vendor/assets/javascripts/semantic_ui` and `vendor/assets/stylesheets/semantic_ui` directories.\nFor example:\n\n* if you wish to remove unused components you can just remove corresponding lines from `semantic_ui.js` and `semantic_ui.css` files.\n* if you wish to change components themes you can just configure them in `theme.config`.\n* if you wish to change component variables or extend components you can just configure corresponding `config/{collections,elements, globals,modules,views}/*.{overrides,variables}` files.\n\n## Versioning\n\nThis gem will directly track the semantic versioning of the Semantic UI project. Major and minor versions\nwill always match to theirs, though we may have tiny patch level releases specific to this gem.\n\n## Contributing\n\n1. Fork it ( https://github.com/maxd/less-rails-semantic_ui )\n2. Create your feature branch (`git checkout -b my-new-feature`)\n3. Commit your changes (`git commit -am 'Add some feature'`)\n4. Push to the branch (`git push origin my-new-feature`)\n5. Create a new Pull Request\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsemantic-org%2Fsemantic-ui-rails-less","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsemantic-org%2Fsemantic-ui-rails-less","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsemantic-org%2Fsemantic-ui-rails-less/lists"}