Skip to content

Commit

Permalink
Merge pull request #8 from HISMalawi/fix_and_refactor
Browse files Browse the repository at this point in the history
Fix and refactor
  • Loading branch information
hopgausi authored Feb 7, 2024
2 parents 905bd55 + f161bd5 commit 4c65496
Show file tree
Hide file tree
Showing 23 changed files with 3,184 additions and 3,987 deletions.
4 changes: 4 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
KEY='3a12f03a59b73e5e06f6c5babb22d76203e177a8b87f274a'
TWEAK='0123456789ABCDEF'
RADIX=9
ALPHABET='012345678'
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ config/master_nlims.yml

# Ignore db schema
db/schema.rb
public/tracker.json
11 changes: 5 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
source 'https://rubygems.org'

git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
"https://github.com/#{repo_name}.git"
end


ruby '2.5.3'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
Expand All @@ -22,8 +21,8 @@ gem 'puma', '~> 3.7'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use ActiveModel has_secure_password
gem 'bcrypt', '~> 3.1.7'
gem 'apipie-rails'
gem 'bcrypt', '~> 3.1.7'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development

Expand All @@ -33,12 +32,12 @@ gem 'apipie-rails'
gem 'rest-client'

gem 'couchrest_model'
gem 'passenger'
gem 'socket.io-client-simple'
gem 'sucker_punch'
gem 'passenger'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'byebug', platforms: %i[mri mingw x64_mingw]
end

group :development do
Expand All @@ -49,4 +48,4 @@ group :development do
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
Loading

0 comments on commit 4c65496

Please sign in to comment.