Skip to content
This repository has been archived by the owner on Apr 1, 2021. It is now read-only.

Commit

Permalink
Added Rubygem files and badges to README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSandro2000 committed Mar 23, 2018
1 parent c188604 commit 7a59b98
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Canuby

[![GitHub version](https://badge.fury.io/gh/SuperSandro2000%2Fcanuby.svg)](https://badge.fury.io/gh/SuperSandro2000%2Fcanuby)
[![Gem Version](https://badge.fury.io/rb/canuby.svg)](https://badge.fury.io/rb/canuby)
[![CodeFactor](https://www.codefactor.io/repository/github/SuperSandro2000/canuby/badge)](https://www.codefactor.io/repository/github/SuperSandro2000/canuby)
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/352928d800dc41eaad0a5f8b030132e8)](https://www.codacy.com/app/SuperSandro2000/canuby?utm_source=github.com&utm_medium=referral&utm_content=SuperSandro2000/canuby&utm_campaign=Badge_Grade)
[![AwesomeCode Status](https://awesomecode.io/projects/b8fed95d-1b9c-47a3-96b1-437a2a6ef5ea/status)](https://awesomecode.io/projects/91)

WIP

## How to run
Expand All @@ -8,6 +14,12 @@ WIP
- ``bundle install``
- ``rake -f canuby.py``

## Version scheme

Canuby uses this ``MAJOR.MINOR.PATCH`` version scheme.
It is based of https://semver.org/ version scheme.


## Code Style

This projects uses rubocop. Get it with ``gem install rubocop``
Expand Down
4 changes: 4 additions & 0 deletions bin/canubby
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env ruby

require 'canubby'
puts Canubby.main(ARGV[0])
21 changes: 21 additions & 0 deletions canuby.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
Gem::Specification.new do |s|
s.name = 'canuby'
s.version = '0.0.1'
s.date = '2018-03-23'
s.summary = "Canuby"
s.description = "A placeholder for Canuby"
s.authors = ["Sandro Jäckel"]
s.email = 'sandro.jaeckel@gmail.com'
s.homepage = 'https://github.com/SuperSandro2000/canuby'
s.metadata = { "source_code_uri" => "https://github.com/SuperSandro2000/canuby" }
s.license = 'GPL-3.0'
s.files = ["lib/canuby.rb"]

s.required_ruby_version = '~> 2.5'
s.required_rubygems_version = '~> 2.7.3'

s.add_dependency 'bundler', '~> 1.16'
s.add_dependency 'rake', '~> 12.3'
s.add_dependency 'term-ansicolor', '~> 1.6'
s.add_dependency 'tins', '~> 1.16'
end
5 changes: 5 additions & 0 deletions lib/canuby.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class Canuby
def self.main
puts 'This is a placeholder!'
end
end

0 comments on commit 7a59b98

Please sign in to comment.