{"id":18511721,"url":"https://github.com/jeremywrnr/copernicium","last_synced_at":"2026-02-04T13:44:14.594Z","repository":{"id":62556276,"uuid":"44344210","full_name":"jeremywrnr/copernicium","owner":"jeremywrnr","description":":white_circle: ","archived":false,"fork":false,"pushed_at":"2023-02-13T20:52:27.000Z","size":926,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-06-24T05:04:34.098Z","etag":null,"topics":["ruby","ruby-gem","version-control"],"latest_commit_sha":null,"homepage":"https://jeremywrnr.github.io/copernicium/","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jeremywrnr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2015-10-15T20:39:03.000Z","updated_at":"2023-02-13T20:54:02.000Z","dependencies_parsed_at":"2024-11-06T15:51:28.697Z","dependency_job_id":null,"html_url":"https://github.com/jeremywrnr/copernicium","commit_stats":{"total_commits":478,"total_committers":13,"mean_commits":36.76923076923077,"dds":"0.35983263598326365","last_synced_commit":"571dbd2a0f26a3481c2bbce4a328ebd2e022e7c6"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jeremywrnr/copernicium","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jeremywrnr%2Fcopernicium","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jeremywrnr%2Fcopernicium/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jeremywrnr%2Fcopernicium/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jeremywrnr%2Fcopernicium/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jeremywrnr","download_url":"https://codeload.github.com/jeremywrnr/copernicium/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jeremywrnr%2Fcopernicium/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265443553,"owners_count":23766413,"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":["ruby","ruby-gem","version-control"],"created_at":"2024-11-06T15:29:32.842Z","updated_at":"2026-02-04T13:44:14.564Z","avatar_url":"https://github.com/jeremywrnr.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"[copernicium][wiki]\n===================\n\n\n[![MIT](https://img.shields.io/npm/l/alt.svg?style=flat)](http://jeremywrnr.com/mit-license)\n[![Gem Version](https://badge.fury.io/rb/copernicium.svg)](https://badge.fury.io/rb/copernicium)\n[![Build Status](https://travis-ci.org/jeremywrnr/copernicium.svg)](https://travis-ci.org/jeremywrnr/copernicium)\n[![Code Climate](https://codeclimate.com/github/jeremywrnr/copernicium/badges/gpa.svg)](https://codeclimate.com/github/jeremywrnr/copernicium)\n\n\nRepository for Team Copernicium's DVCS.\n\n\n### installation\n\n    $ [sudo] gem install copernicium\n\n\n### cn usage\n\n##### starting out\n\n    init - create a new repository\n    status - check repo status\n    history - show repo commits\n    help - show more commands\n\n##### commands\n\n    commit [files] \u003c-m message\u003e\n    branch [opt] [branch]\n      -r | rename current branch\n      -c | create a new branch\n      -d | delete a branch\n    checkout \u003ccommit id\u003e [files]\n    clean [files] [commit/branch]\n    clone \u003cuser\u003e \u003cremote url\u003e\n    push \u003cuser\u003e \u003cremote url\u003e\n    pull \u003cuser\u003e \u003cremote url\u003e\n    merge \u003cbranch\u003e\n\n##### options\n\n    -v: print version\n    -h: show help\n\nNote: `[optional] \u003crequired\u003e`\n\n\n### troubleshooting\n\nNote: clone, push and pull require ssh keys to be setup on the hosting server.\n\nIf you are having trouble installing Copernicium as a ruby gem, you can try the\nfollowing to install it in a PATH folder where you have write access. For\nexample, this will install cn in ~/bin:\n\n    $ gem install copernicium -n~/bin\n\n\n### ssh keys\n\nIf SSH keys are not setup, you will be required to provide a user and password\nfor each use of the push, pull and clone methods.  In order to avoid this, SSH\nkeys can be used, which allow the user to only supply a password.  First,\nchange to the .ssh folder in the home directory of the user:\n\n\t$ cd ~/.ssh\n\nTo generate an ssh key on the local machine, use the command:\n\n\t$ ssh-keygen -t dsa\n\nUse the provided configurations from the program and do not enter a password.\nOnce this is done, you will have the files id_dsa and id_dsa.pub in the .ssh\nfolder. You will need to move the contents of the public key to your remote\nserver. Copy the contents of the id_dsa.pub file and log onto the remote\nserver. Navigate to the .ssh folder and open the authorized_keys file and add\nthe contents of the public key to a line:\n\n\t$ cd ~/.ssh\n\t$ echo [public key info] \u003e authorized_keys\n\nYou should now be able to use the push, pull, and origin functions using only\nthe username.\n\n\n### development\n\nFirst, clone this repository:\n\n    $ git clone https://github.com/jeremywrnr/copernicium.git\n\nTo install all runtime and testing dependencies, run:\n\n    $ [sudo] gem install rake\n    $ rake setup\n\nTo run the entire test suite, run `rake test`. To run a specific test suite:\n\n    $ rake test[pushpull]\n\nTo show information about each module's tests, and branches commits, run:\n\n    $ rake info\n\n\n### relevant links:\n\n- [spec. documentation](https://docs.google.com/document/d/1r3-NquhyRLbCncqTOQPwsznSZ-en6G6xzLbWIAmxhys/)\n- [shared google drive](https://drive.google.com/open?id=0B3rmOUWm5OBlNzRnZTZEajFWZkU)\n- [ruby style guide](https://github.com/styleguide/ruby)\n- [build history](https://travis-ci.org/jeremywrnr/copernicium/builds)\n- [messenger chat](https://www.messenger.com/t/563048860513155)\n- [asana tasks](https://app.asana.com/0/56905660582491/calendar)\n\n\n### todos\n\n- checkout commits by semantic id\n- refactor ui logic code into modules\n\n\n[wiki]:https://en.wikipedia.org/wiki/Copernicium\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjeremywrnr%2Fcopernicium","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjeremywrnr%2Fcopernicium","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjeremywrnr%2Fcopernicium/lists"}