Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
atitan committed Mar 3, 2018
1 parent 262c63d commit 01df935
Show file tree
Hide file tree
Showing 9 changed files with 90 additions and 1 deletion.
36 changes: 36 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
*.gem
*.rbc
/.config
/coverage/
/InstalledFiles
/pkg/
/spec/reports/
/spec/examples.txt
/test/tmp/
/test/version_tmp/
/tmp/

## Specific to RubyMotion:
.dat*
.repl_history
build/

## Documentation cache and generated files:
/.yardoc/
/_yardoc/
/doc/
/rdoc/

## Environment normalization:
/.bundle/
/vendor/bundle
/lib/bundler/man/

# for a library or gem, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# Gemfile.lock
# .ruby-version
# .ruby-gemset

# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
.rvmrc
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2018 Sh Lin
Copyright (c) 2018 atitan

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Fubuki

This is the project planned to replace MFRC522_Ruby in the future.
14 changes: 14 additions & 0 deletions fubuki.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
require File.expand_path("../lib/fubuki/version.rb", __FILE__)

Gem::Specification.new do |s|
s.name = 'fubuki'
s.version = Fubuki::VERSION
s.date = '2018-03-03'
s.summary = ''
s.authors = ['atitan']
s.email = ['commit@atifans.net']
s.files = Dir['lib/**/*']
s.require_path = 'lib'
s.homepage = 'https://github.com/atitan/fubuki'
s.license = 'MIT'
end
10 changes: 10 additions & 0 deletions lib/fubuki.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
require 'fubuki/version'

module Fubuki
extend self

def reader
end


end
11 changes: 11 additions & 0 deletions lib/fubuki/reader.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
require 'singleton'

module Fubuki
class Reader
include Singleton

class << self

end
end
end
6 changes: 6 additions & 0 deletions lib/fubuki/readers/mfrc522.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module Fubuki
module Readers
class MFRC522 < Reader
end
end
end
6 changes: 6 additions & 0 deletions lib/fubuki/readers/pn512.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module Fubuki
module Readers
class PN512 < Reader
end
end
end
3 changes: 3 additions & 0 deletions lib/fubuki/version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module Fubuki
VERSION = '0.0.1'
end

0 comments on commit 01df935

Please sign in to comment.