• R/O
  • HTTP
  • SSH
  • HTTPS

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

File Info

Rev. a12872389fb61f52bf95cdc2b68ad112483674b3
Größe 3,168 Bytes
Zeit 2021-03-19 12:24:33
Autor HMML
Log Message

Add 36126 amedas station file for backword compatibility.

Content

#ruby '~> 2.6.0'
source "https://rubygems.org"

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

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem "rails", "~> 5.2"
# Use sqlite3 as the database for Active Record
gem "sqlite3", group: [:development, :test]
gem "mysql2", group: [:staging, :production]
# Use Puma as the app server
gem "puma"
# Use SCSS for stylesheets
gem "sass-rails", "~> 5.0"
# Use Uglifier as compressor for JavaScript assets
gem "uglifier", ">= 1.3.0"
# Use CoffeeScript for .coffee assets and views
gem "coffee-rails", "~> 4.2"

# Use jquery as the JavaScript library
gem "jquery-rails"
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem "turbolinks", "~> 5"
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem "jbuilder", "~> 2.5"
# bundle exec rake doc:rails generates the API under doc/api.
gem "sdoc", "~> 0.4.0", group: :doc
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 3.0'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'

gem "bootsnap", require: false
gem "faraday"
gem "delayed_job_active_record"
gem "nokogiri"
gem "rails-i18n"
gem "simple_form"
gem "haml-rails"
gem "responders"
gem "kaminari"
gem "kaminari-i18n"
gem "font-awesome-rails"
gem "bootstrap", "~> 4.0"
gem "lightbox-bootstrap-rails", "~> 5.1"
gem "popper_js"
gem "tether-rails"
gem "i18n-js"
gem "enum_help"
gem "jquery-turbolinks"
gem "yaml_db"
gem "awesome_print"
gem "webpacker", "~> 2.0"
gem "webpacker-react", "~> 0.3"
gem "cancancan"
gem "devise"
gem "omniauth-twitter"
gem "omniauth", "< 2" # Note: temp workaround..
gem "daemons"
gem "exception_notification", group: :production
gem "paperclip"
gem "rqrcode", github: "sugi/rqrcode", branch: "inline-svg"
gem "rubyzip", ">= 1.0.0", require: "zip"
#gem 'counter_culture', '~> 1.0'
gem "crono"
gem "sinatra", ">= 2.0.0", require: false
gem "rails_admin"

group :development, :test do
  # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  gem "byebug", platform: :mri
  gem "capybara", "~> 2.13"
  gem "selenium-webdriver"
  gem "rspec-rails"
  #gem 'rspec-collection_matchers'
  #gem 'rspec-activemodel-mocks'
  gem "factory_girl_rails", ">= 4.0.0"
  gem "faker"
  gem "guard-rspec"
  gem "guard-bundler"

  gem "pry"
  gem "pry-rails"
  gem "pry-stack_explorer"
  gem "pry-byebug"
end

group :test do
  gem "webmock", require: false
  gem "database_cleaner"
  gem "rails-controller-testing"
end

group :development do
  # Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
  gem "web-console", ">= 3.3.0"
  gem "listen", "~> 3.0.5"
  # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  gem "spring"
  gem "spring-commands-rspec"
  gem "spring-watcher-listen", "~> 2.0.0"
  gem "capistrano-bundler"
  gem "capistrano-rails"
  gem "capistrano-deploy_into_docker", ">= 0.2.1"
  #gem 'capistrano-passenger'
end