!66 Replace Gemfile with commit de86991072b9457dd7d12dee129aef8326829935
From: @lyn1001 Reviewed-by: @wang--ge Signed-off-by: @wang--ge
This commit is contained in:
commit
13cb2dc9ed
145
Gemfile
145
Gemfile
@ -1,30 +1,38 @@
|
|||||||
# Edit this Gemfile to bundle your application's dependencies.
|
# next? was generated with `next --init`
|
||||||
# This preamble is the current preamble for Rails 3 apps; edit as needed.
|
# src/api/Gemfile.next.lock was generated with `next bundle install`
|
||||||
source 'https://mirrors.huaweicloud.com/repository/rubygems'
|
def next?
|
||||||
|
File.basename(__FILE__) == 'Gemfile.next'
|
||||||
|
end
|
||||||
|
|
||||||
gem 'rails', '~> 5.2'
|
# Edit this Gemfile to bundle your application's dependencies.
|
||||||
|
source 'https://rubygems.org'
|
||||||
|
|
||||||
|
# Start the Rails application using src/api/Gemfile.next with `next rails s`
|
||||||
|
if next?
|
||||||
|
gem 'rails', '~> 8.0'
|
||||||
|
else
|
||||||
|
gem 'rails', '~> 7.0'
|
||||||
|
end
|
||||||
|
|
||||||
# as our database
|
# as our database
|
||||||
gem 'mysql2'
|
gem 'mysql2'
|
||||||
# for XML handling
|
# for XML handling
|
||||||
gem 'nokogiri'
|
gem 'nokogiri'
|
||||||
# for delayed tasks
|
# for delayed tasks
|
||||||
gem 'delayed_job_active_record', '>= 4.0.0'
|
gem 'delayed_job_active_record'
|
||||||
# to fill errbit
|
# to fill errbit
|
||||||
gem 'airbrake'
|
gem 'airbrake'
|
||||||
gem 'airbrake-ruby'
|
gem 'airbrake-ruby'
|
||||||
# as JSON library - the default json conflicts with activerecord (by means of vice-versa monkey patching)
|
# as JSON library - the default json conflicts with activerecord (by means of vice-versa monkey patching)
|
||||||
gem 'yajl-ruby', require: 'yajl/json_gem'
|
gem 'yajl-ruby', require: 'yajl/json_gem'
|
||||||
# to search the database
|
# to search the database
|
||||||
gem 'thinking-sphinx', '> 3.1'
|
gem 'thinking-sphinx'
|
||||||
# to paginate search results
|
# to paginate search results
|
||||||
gem 'kaminari'
|
gem 'kaminari'
|
||||||
# for abstract HTML
|
# for abstract HTML
|
||||||
gem 'haml'
|
gem 'haml'
|
||||||
# streamline HAML's integration in Rails
|
# streamline HAML's integration in Rails
|
||||||
gem 'haml-rails'
|
gem 'haml-rails'
|
||||||
# to avoid tilt downgrade
|
|
||||||
gem 'tilt', '>= 1.4.1'
|
|
||||||
# to use markdown in the comment system
|
# to use markdown in the comment system
|
||||||
gem 'redcarpet'
|
gem 'redcarpet'
|
||||||
# for nested attribute forms
|
# for nested attribute forms
|
||||||
@ -32,68 +40,86 @@ gem 'cocoon'
|
|||||||
# for activerecord lists. Used for AttribValues
|
# for activerecord lists. Used for AttribValues
|
||||||
gem 'acts_as_list'
|
gem 'acts_as_list'
|
||||||
# to parse a XML string into a ruby hash
|
# to parse a XML string into a ruby hash
|
||||||
gem 'xmlhash', '>=1.3.6'
|
gem 'xmlhash'
|
||||||
# to escape HTML (FIXME: do we still use this?)
|
|
||||||
gem 'escape_utils'
|
|
||||||
# to sanitize HTML/CSS
|
|
||||||
gem 'sanitize'
|
|
||||||
# as authorization system
|
# as authorization system
|
||||||
gem 'pundit'
|
gem 'pundit'
|
||||||
# for password hashing
|
# for password hashing
|
||||||
gem 'bcrypt'
|
gem 'bcrypt'
|
||||||
#
|
|
||||||
gem 'responders', '~> 3.0'
|
|
||||||
# for threaded comments
|
# for threaded comments
|
||||||
gem 'acts_as_tree'
|
gem 'acts_as_tree'
|
||||||
# js plotting (OBS monitor)
|
# js plotting (OBS monitor)
|
||||||
gem 'flot-rails'
|
gem 'flot-rails'
|
||||||
# colorize for scripts
|
|
||||||
gem 'colorize', require: false
|
|
||||||
# XML Serialization got moved here
|
# XML Serialization got moved here
|
||||||
gem 'activemodel-serializers-xml'
|
gem 'activemodel-serializers-xml'
|
||||||
# Spider Identification
|
# Spider Identification
|
||||||
gem 'voight_kampff'
|
gem 'voight_kampff', require: 'voight_kampff/rails'
|
||||||
# support coffeescript
|
|
||||||
gem 'coffee-rails'
|
|
||||||
# bind keyboard shortcuts to actions
|
|
||||||
gem 'mousetrap-rails'
|
|
||||||
# for issue tracker communication
|
# for issue tracker communication
|
||||||
gem 'xmlrpc'
|
gem 'xmlrpc'
|
||||||
# Multiple feature switch
|
# Multiple feature switch
|
||||||
gem 'feature'
|
gem 'flipper'
|
||||||
# for profiling
|
gem 'flipper-active_record'
|
||||||
gem 'peek'
|
gem 'flipper-ui'
|
||||||
gem 'peek-dalli'
|
|
||||||
gem 'peek-host'
|
|
||||||
gem 'peek-mysql2'
|
|
||||||
# for kerberos authentication
|
# for kerberos authentication
|
||||||
gem 'gssapi', require: false
|
gem 'gssapi', require: false
|
||||||
# for sending events to rabbitmq
|
# for sending events to rabbitmq
|
||||||
gem 'bunny'
|
gem 'bunny'
|
||||||
# for making changes to existing data
|
# for making changes to existing data
|
||||||
gem 'data_migrate'
|
gem 'data_migrate', '~> 9.0'
|
||||||
# for URI encoding
|
# for URI encoding
|
||||||
gem 'addressable'
|
gem 'addressable'
|
||||||
# for XML builder
|
# for XML builder
|
||||||
gem 'builder'
|
gem 'builder'
|
||||||
# to write the rails metrics directly into InfluxDB.
|
# to write the rails metrics directly into InfluxDB.
|
||||||
gem 'experimental-influxdb-rails', '>=1.0.0.beta5'
|
gem 'influxdb-rails'
|
||||||
# for client side time ago
|
|
||||||
gem 'rails-timeago', '~> 2.0'
|
|
||||||
# for copying objects with their relations
|
# for copying objects with their relations
|
||||||
gem 'deep_cloneable', '~> 2.4.0'
|
gem 'deep_cloneable'
|
||||||
# Server-side datatables
|
# Server-side datatables
|
||||||
gem 'ajax-datatables-rails'
|
gem 'ajax-datatables-rails'
|
||||||
|
# Add syntax highlight in ruby
|
||||||
|
gem 'coderay'
|
||||||
|
# required by rails
|
||||||
|
gem 'bigdecimal'
|
||||||
|
# Catch unsafe migrations in development
|
||||||
|
gem 'strong_migrations'
|
||||||
|
# for some rails console fancy
|
||||||
|
gem 'pry-rails'
|
||||||
|
gem 'awesome_print'
|
||||||
|
# flexible and safe downloading of remote files
|
||||||
|
gem 'down'
|
||||||
|
# Simple wrapper for the GitHub API
|
||||||
|
gem 'octokit'
|
||||||
|
# Ruby wrapper and CLI for the GitLab REST API
|
||||||
|
gem 'gitlab'
|
||||||
|
# Build reusable, testable & encapsulated view components in Ruby on Rails
|
||||||
|
gem 'view_component'
|
||||||
|
# Abstraction layer for HTTP requests in custom API wrapper
|
||||||
|
gem 'faraday'
|
||||||
|
# Asset packaging system that concatenates and serves JavaScript, CoffeeScript, CSS, Sass, and SCSS
|
||||||
|
# This cannot be in the assets group since Sprockets is loaded in config/application.rb
|
||||||
|
gem 'sprockets-rails'
|
||||||
|
|
||||||
|
# FIXME: Required by the mail gem
|
||||||
|
# See https://github.com/rails/rails/pull/44083
|
||||||
|
gem 'net-smtp', require: false
|
||||||
|
gem 'net-pop', require: false
|
||||||
|
gem 'net-imap', require: false
|
||||||
|
|
||||||
|
# Used in Package and XpathEngine
|
||||||
|
gem 'rexml'
|
||||||
|
# FIXME: for prawn, matrix isn't in the default set of Ruby 3.1 anymore
|
||||||
|
# see https://github.com/prawnpdf/prawn/commit/3658d5125c3b20eb11484c3b039ca6b89dc7d1b7
|
||||||
|
gem 'matrix', '~> 0.4'
|
||||||
|
|
||||||
|
# until we have a fix for https://github.com/rubygems/rubygems/pull/5529
|
||||||
|
gem 'strscan', '3.0.1'
|
||||||
|
|
||||||
group :development, :production do
|
group :development, :production do
|
||||||
# to have the delayed job daemon
|
# to have the delayed job daemon
|
||||||
gem 'daemons'
|
gem 'daemons'
|
||||||
# as memcache client
|
# as memcache client
|
||||||
gem 'dalli'
|
gem 'dalli'
|
||||||
# to document ruby code
|
|
||||||
gem 'rdoc'
|
|
||||||
# to not rely on cron+rake
|
# to not rely on cron+rake
|
||||||
gem 'clockwork', '>= 0.7'
|
gem 'clockwork'
|
||||||
# as interface to LDAP
|
# as interface to LDAP
|
||||||
gem 'ruby-ldap', require: false
|
gem 'ruby-ldap', require: false
|
||||||
# to have better logs
|
# to have better logs
|
||||||
@ -113,32 +139,27 @@ group :test do
|
|||||||
gem 'minitest'
|
gem 'minitest'
|
||||||
gem 'test-unit'
|
gem 'test-unit'
|
||||||
# to ensure a clean state for testing
|
# to ensure a clean state for testing
|
||||||
gem 'database_cleaner', '>= 1.0.1'
|
gem 'database_cleaner-active_record'
|
||||||
# for test coverage reports
|
# for test coverage reports
|
||||||
gem 'codecov', require: false
|
|
||||||
gem 'simplecov', require: false
|
gem 'simplecov', require: false
|
||||||
|
gem 'simplecov-cobertura', require: false
|
||||||
# for failing fast
|
# for failing fast
|
||||||
gem 'minitest-fail-fast'
|
gem 'minitest-fail-fast'
|
||||||
# for spec like reporting
|
# for spec like reporting
|
||||||
gem 'minitest-reporters'
|
gem 'minitest-reporters'
|
||||||
# for integration testing
|
# for integration testing
|
||||||
gem 'capybara'
|
gem 'capybara'
|
||||||
# for rspec like matchers
|
|
||||||
gem 'capybara_minitest_spec'
|
|
||||||
# to freeze time
|
|
||||||
gem 'timecop'
|
|
||||||
# to fake backend replies
|
# to fake backend replies
|
||||||
gem 'webmock', '>= 2.3.0'
|
gem 'webmock'
|
||||||
# for mocking and stubbing
|
# for mocking and stubbing
|
||||||
gem 'mocha', '> 0.13.0', require: false
|
gem 'mocha', require: false
|
||||||
# for testing common Rails functionality with simple one-liners
|
# for testing common Rails functionality with simple one-liners
|
||||||
gem 'shoulda-matchers', '~> 4.0'
|
gem 'shoulda-matchers'
|
||||||
# assigns has been extracted to a gem
|
# assigns has been extracted to a gem
|
||||||
gem 'rails-controller-testing'
|
gem 'rails-controller-testing'
|
||||||
# To generate random data
|
# To generate random data
|
||||||
gem 'rantly'
|
gem 'rantly'
|
||||||
# for test analysis in CircleCI
|
# for test analysis in CircleCI
|
||||||
gem 'coveralls'
|
|
||||||
gem 'minitest-ci'
|
gem 'minitest-ci'
|
||||||
gem 'rspec_junit_formatter'
|
gem 'rspec_junit_formatter'
|
||||||
# to test rabbitmq support
|
# to test rabbitmq support
|
||||||
@ -146,15 +167,17 @@ group :test do
|
|||||||
end
|
end
|
||||||
|
|
||||||
group :development, :test do
|
group :development, :test do
|
||||||
gem 'rspec'
|
|
||||||
# as testing framework
|
# as testing framework
|
||||||
|
gem 'rspec'
|
||||||
gem 'rspec-rails'
|
gem 'rspec-rails'
|
||||||
|
# as rspec formatter
|
||||||
|
gem 'fuubar'
|
||||||
# for fixtures
|
# for fixtures
|
||||||
gem 'factory_bot_rails'
|
gem 'factory_bot_rails'
|
||||||
# for mocking the backend
|
# for mocking the backend
|
||||||
gem 'vcr'
|
gem 'vcr'
|
||||||
# as alternative to the standard IRB shell
|
# as alternative to the standard IRB shell
|
||||||
gem 'pry', '>= 0.9.12'
|
gem 'pry'
|
||||||
# add step-by-step debugging and stack navigation capabilities to pry
|
# add step-by-step debugging and stack navigation capabilities to pry
|
||||||
gem 'pry-byebug'
|
gem 'pry-byebug'
|
||||||
# for style checks
|
# for style checks
|
||||||
@ -175,30 +198,28 @@ group :development, :test do
|
|||||||
gem 'single_test'
|
gem 'single_test'
|
||||||
# to find n+1 queries
|
# to find n+1 queries
|
||||||
gem 'bullet'
|
gem 'bullet'
|
||||||
# Use Puma as the app server (rails 5 default)
|
# Use Puma as the app server
|
||||||
gem 'puma', '~> 4.0'
|
gem 'puma'
|
||||||
# to drive headless chrome
|
# to drive headless chrome
|
||||||
gem 'selenium-webdriver'
|
gem 'selenium-webdriver'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
group :development do
|
||||||
|
# add a comment summarizing the current schema
|
||||||
|
gem 'annotate'
|
||||||
|
# toolkit to upgrade your Rails application
|
||||||
|
gem 'next_rails'
|
||||||
|
gem 'database_consistency', require: false
|
||||||
|
end
|
||||||
|
|
||||||
# Gems used only for assets and not required in production environments by default.
|
# Gems used only for assets and not required in production environments by default.
|
||||||
group :assets do
|
group :assets do
|
||||||
# for minifying CSS
|
|
||||||
gem 'cssmin', '>= 1.0.2'
|
|
||||||
# for minifying JavaScript
|
# for minifying JavaScript
|
||||||
gem 'uglifier', '>= 1.2.2'
|
gem 'terser'
|
||||||
# to use sass in the asset pipeline
|
# to use sass in the asset pipeline
|
||||||
gem 'sassc-rails'
|
gem 'sassc-rails'
|
||||||
# assets for jQuery DataTables
|
# assets for jQuery DataTables
|
||||||
gem 'jquery-datatables'
|
gem 'jquery-datatables'
|
||||||
# assets for the text editor
|
|
||||||
gem 'codemirror-rails'
|
|
||||||
# assets for jQuery tokeninput
|
|
||||||
gem 'rails_tokeninput', '>= 1.6.1.rc1'
|
|
||||||
# to create our sprite images/stylesheets
|
|
||||||
gem 'sprite-factory', '>= 1.5.2'
|
|
||||||
# to read and write PNG images
|
|
||||||
gem 'chunky_png'
|
|
||||||
# assets for jQuery and jQuery-ujs
|
# assets for jQuery and jQuery-ujs
|
||||||
gem 'jquery-rails'
|
gem 'jquery-rails'
|
||||||
# assets for jQuery-ui
|
# assets for jQuery-ui
|
||||||
@ -207,6 +228,4 @@ group :assets do
|
|||||||
gem 'bootstrap'
|
gem 'bootstrap'
|
||||||
# assets for font-awesome vector icons
|
# assets for font-awesome vector icons
|
||||||
gem 'font-awesome-sass'
|
gem 'font-awesome-sass'
|
||||||
# assets for formatting dates
|
|
||||||
gem 'momentjs-rails'
|
|
||||||
end
|
end
|
||||||
|
|||||||
621
Gemfile.lock
Normal file
621
Gemfile.lock
Normal file
@ -0,0 +1,621 @@
|
|||||||
|
GEM
|
||||||
|
remote: https://rubygems.org/
|
||||||
|
specs:
|
||||||
|
actioncable (7.0.6)
|
||||||
|
actionpack (= 7.0.6)
|
||||||
|
activesupport (= 7.0.6)
|
||||||
|
nio4r (~> 2.0)
|
||||||
|
websocket-driver (>= 0.6.1)
|
||||||
|
actionmailbox (7.0.6)
|
||||||
|
actionpack (= 7.0.6)
|
||||||
|
activejob (= 7.0.6)
|
||||||
|
activerecord (= 7.0.6)
|
||||||
|
activestorage (= 7.0.6)
|
||||||
|
activesupport (= 7.0.6)
|
||||||
|
mail (>= 2.7.1)
|
||||||
|
net-imap
|
||||||
|
net-pop
|
||||||
|
net-smtp
|
||||||
|
actionmailer (7.0.6)
|
||||||
|
actionpack (= 7.0.6)
|
||||||
|
actionview (= 7.0.6)
|
||||||
|
activejob (= 7.0.6)
|
||||||
|
activesupport (= 7.0.6)
|
||||||
|
mail (~> 2.5, >= 2.5.4)
|
||||||
|
net-imap
|
||||||
|
net-pop
|
||||||
|
net-smtp
|
||||||
|
rails-dom-testing (~> 2.0)
|
||||||
|
actionpack (7.0.6)
|
||||||
|
actionview (= 7.0.6)
|
||||||
|
activesupport (= 7.0.6)
|
||||||
|
rack (~> 2.0, >= 2.2.4)
|
||||||
|
rack-test (>= 0.6.3)
|
||||||
|
rails-dom-testing (~> 2.0)
|
||||||
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
||||||
|
actiontext (7.0.6)
|
||||||
|
actionpack (= 7.0.6)
|
||||||
|
activerecord (= 7.0.6)
|
||||||
|
activestorage (= 7.0.6)
|
||||||
|
activesupport (= 7.0.6)
|
||||||
|
globalid (>= 0.6.0)
|
||||||
|
nokogiri (>= 1.8.5)
|
||||||
|
actionview (7.0.6)
|
||||||
|
activesupport (= 7.0.6)
|
||||||
|
builder (~> 3.1)
|
||||||
|
erubi (~> 1.4)
|
||||||
|
rails-dom-testing (~> 2.0)
|
||||||
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
||||||
|
activejob (7.0.6)
|
||||||
|
activesupport (= 7.0.6)
|
||||||
|
globalid (>= 0.3.6)
|
||||||
|
activemodel (7.0.6)
|
||||||
|
activesupport (= 7.0.6)
|
||||||
|
activemodel-serializers-xml (1.0.2)
|
||||||
|
activemodel (> 5.x)
|
||||||
|
activesupport (> 5.x)
|
||||||
|
builder (~> 3.1)
|
||||||
|
activerecord (7.0.6)
|
||||||
|
activemodel (= 7.0.6)
|
||||||
|
activesupport (= 7.0.6)
|
||||||
|
activestorage (7.0.6)
|
||||||
|
actionpack (= 7.0.6)
|
||||||
|
activejob (= 7.0.6)
|
||||||
|
activerecord (= 7.0.6)
|
||||||
|
activesupport (= 7.0.6)
|
||||||
|
marcel (~> 1.0)
|
||||||
|
mini_mime (>= 1.1.0)
|
||||||
|
activesupport (7.0.6)
|
||||||
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
||||||
|
i18n (>= 1.6, < 2)
|
||||||
|
minitest (>= 5.1)
|
||||||
|
tzinfo (~> 2.0)
|
||||||
|
acts_as_list (1.1.0)
|
||||||
|
activerecord (>= 4.2)
|
||||||
|
acts_as_tree (2.9.1)
|
||||||
|
activerecord (>= 3.0.0)
|
||||||
|
addressable (2.8.5)
|
||||||
|
public_suffix (>= 2.0.2, < 6.0)
|
||||||
|
airbrake (9.4.3)
|
||||||
|
airbrake-ruby (~> 4.6)
|
||||||
|
airbrake-ruby (4.6.0)
|
||||||
|
rbtree3 (~> 0.5)
|
||||||
|
ajax-datatables-rails (1.4.0)
|
||||||
|
rails (>= 5.2)
|
||||||
|
zeitwerk
|
||||||
|
amq-protocol (2.3.2)
|
||||||
|
annotate (3.2.0)
|
||||||
|
activerecord (>= 3.2, < 8.0)
|
||||||
|
rake (>= 10.4, < 14.0)
|
||||||
|
ansi (1.5.0)
|
||||||
|
ast (2.4.2)
|
||||||
|
autoprefixer-rails (10.4.13.0)
|
||||||
|
execjs (~> 2)
|
||||||
|
awesome_print (1.9.2)
|
||||||
|
base64 (0.1.1)
|
||||||
|
bcrypt (3.1.19)
|
||||||
|
bigdecimal (3.1.4)
|
||||||
|
bootstrap (5.2.3)
|
||||||
|
autoprefixer-rails (>= 9.1.0)
|
||||||
|
popper_js (>= 2.11.6, < 3)
|
||||||
|
sassc-rails (>= 2.0.0)
|
||||||
|
brow (0.4.1)
|
||||||
|
builder (3.2.4)
|
||||||
|
bullet (7.0.7)
|
||||||
|
activesupport (>= 3.0.0)
|
||||||
|
uniform_notifier (~> 1.11)
|
||||||
|
bunny (2.22.0)
|
||||||
|
amq-protocol (~> 2.3, >= 2.3.1)
|
||||||
|
sorted_set (~> 1, >= 1.0.2)
|
||||||
|
bunny-mock (1.7.0)
|
||||||
|
bunny (>= 1.7)
|
||||||
|
byebug (11.1.3)
|
||||||
|
capybara (3.39.2)
|
||||||
|
addressable
|
||||||
|
matrix
|
||||||
|
mini_mime (>= 0.1.3)
|
||||||
|
nokogiri (~> 1.8)
|
||||||
|
rack (>= 1.6.0)
|
||||||
|
rack-test (>= 0.6.3)
|
||||||
|
regexp_parser (>= 1.5, < 3.0)
|
||||||
|
xpath (~> 3.2)
|
||||||
|
childprocess (4.1.0)
|
||||||
|
clockwork (3.0.2)
|
||||||
|
activesupport
|
||||||
|
tzinfo
|
||||||
|
cocoon (1.2.15)
|
||||||
|
coderay (1.1.3)
|
||||||
|
colorize (1.1.0)
|
||||||
|
concurrent-ruby (1.2.2)
|
||||||
|
crack (0.4.5)
|
||||||
|
rexml
|
||||||
|
crass (1.0.6)
|
||||||
|
daemons (1.4.1)
|
||||||
|
dalli (3.2.5)
|
||||||
|
data_migrate (9.1.1)
|
||||||
|
activerecord (>= 6.0)
|
||||||
|
railties (>= 6.0)
|
||||||
|
database_cleaner-active_record (2.1.0)
|
||||||
|
activerecord (>= 5.a)
|
||||||
|
database_cleaner-core (~> 2.0.0)
|
||||||
|
database_cleaner-core (2.0.1)
|
||||||
|
database_consistency (1.7.20)
|
||||||
|
activerecord (>= 3.2)
|
||||||
|
date (3.3.3)
|
||||||
|
deep_cloneable (3.2.0)
|
||||||
|
activerecord (>= 3.1.0, < 8)
|
||||||
|
delayed_job (4.1.11)
|
||||||
|
activesupport (>= 3.0, < 8.0)
|
||||||
|
delayed_job_active_record (4.1.7)
|
||||||
|
activerecord (>= 3.0, < 8.0)
|
||||||
|
delayed_job (>= 3.0, < 5)
|
||||||
|
diff-lcs (1.5.0)
|
||||||
|
docile (1.4.0)
|
||||||
|
down (5.4.1)
|
||||||
|
addressable (~> 2.8)
|
||||||
|
erubi (1.12.0)
|
||||||
|
execjs (2.8.1)
|
||||||
|
factory_bot (6.2.1)
|
||||||
|
activesupport (>= 5.0.0)
|
||||||
|
factory_bot_rails (6.2.0)
|
||||||
|
factory_bot (~> 6.2.0)
|
||||||
|
railties (>= 5.0.0)
|
||||||
|
faker (3.2.1)
|
||||||
|
i18n (>= 1.8.11, < 2)
|
||||||
|
faraday (2.7.10)
|
||||||
|
faraday-net_http (>= 2.0, < 3.1)
|
||||||
|
ruby2_keywords (>= 0.0.4)
|
||||||
|
faraday-net_http (3.0.2)
|
||||||
|
ffi (1.15.5)
|
||||||
|
flipper (1.0.0)
|
||||||
|
brow (~> 0.4.1)
|
||||||
|
concurrent-ruby (< 2)
|
||||||
|
flipper-active_record (1.0.0)
|
||||||
|
activerecord (>= 4.2, < 8)
|
||||||
|
flipper (~> 1.0.0)
|
||||||
|
flipper-ui (1.0.0)
|
||||||
|
erubi (>= 1.0.0, < 2.0.0)
|
||||||
|
flipper (~> 1.0.0)
|
||||||
|
rack (>= 1.4, < 4)
|
||||||
|
rack-protection (>= 1.5.3, <= 4.0.0)
|
||||||
|
sanitize (< 7)
|
||||||
|
flot-rails (0.0.7)
|
||||||
|
jquery-rails
|
||||||
|
font-awesome-sass (6.4.2)
|
||||||
|
sassc (~> 2.0)
|
||||||
|
fuubar (2.5.1)
|
||||||
|
rspec-core (~> 3.0)
|
||||||
|
ruby-progressbar (~> 1.4)
|
||||||
|
gitlab (4.19.0)
|
||||||
|
httparty (~> 0.20)
|
||||||
|
terminal-table (>= 1.5.1)
|
||||||
|
globalid (1.1.0)
|
||||||
|
activesupport (>= 5.0)
|
||||||
|
gssapi (1.3.1)
|
||||||
|
ffi (>= 1.0.1)
|
||||||
|
haml (6.1.2)
|
||||||
|
temple (>= 0.8.2)
|
||||||
|
thor
|
||||||
|
tilt
|
||||||
|
haml-rails (2.1.0)
|
||||||
|
actionpack (>= 5.1)
|
||||||
|
activesupport (>= 5.1)
|
||||||
|
haml (>= 4.0.6)
|
||||||
|
railties (>= 5.1)
|
||||||
|
haml_lint (0.49.3)
|
||||||
|
haml (>= 4.0, < 6.2)
|
||||||
|
parallel (~> 1.10)
|
||||||
|
rainbow
|
||||||
|
rubocop (>= 1.0)
|
||||||
|
sysexits (~> 1.1)
|
||||||
|
hashdiff (1.0.1)
|
||||||
|
httparty (0.21.0)
|
||||||
|
mini_mime (>= 1.0.0)
|
||||||
|
multi_xml (>= 0.5.2)
|
||||||
|
i18n (1.14.1)
|
||||||
|
concurrent-ruby (~> 1.0)
|
||||||
|
influxdb (0.8.1)
|
||||||
|
influxdb-rails (1.0.3)
|
||||||
|
influxdb (~> 0.6, >= 0.6.4)
|
||||||
|
railties (>= 5.0)
|
||||||
|
innertube (1.1.0)
|
||||||
|
joiner (0.6.0)
|
||||||
|
activerecord (>= 6.1.0)
|
||||||
|
jquery-datatables (1.10.20)
|
||||||
|
jquery-rails (4.6.0)
|
||||||
|
rails-dom-testing (>= 1, < 3)
|
||||||
|
railties (>= 4.2.0)
|
||||||
|
thor (>= 0.14, < 2.0)
|
||||||
|
jquery-ui-rails (4.2.1)
|
||||||
|
railties (>= 3.2.16)
|
||||||
|
json (2.6.3)
|
||||||
|
kaminari (1.2.2)
|
||||||
|
activesupport (>= 4.1.0)
|
||||||
|
kaminari-actionview (= 1.2.2)
|
||||||
|
kaminari-activerecord (= 1.2.2)
|
||||||
|
kaminari-core (= 1.2.2)
|
||||||
|
kaminari-actionview (1.2.2)
|
||||||
|
actionview
|
||||||
|
kaminari-core (= 1.2.2)
|
||||||
|
kaminari-activerecord (1.2.2)
|
||||||
|
activerecord
|
||||||
|
kaminari-core (= 1.2.2)
|
||||||
|
kaminari-core (1.2.2)
|
||||||
|
language_server-protocol (3.17.0.3)
|
||||||
|
launchy (2.5.2)
|
||||||
|
addressable (~> 2.8)
|
||||||
|
lograge (0.13.0)
|
||||||
|
actionpack (>= 4)
|
||||||
|
activesupport (>= 4)
|
||||||
|
railties (>= 4)
|
||||||
|
request_store (~> 1.0)
|
||||||
|
loofah (2.21.3)
|
||||||
|
crass (~> 1.0.2)
|
||||||
|
nokogiri (>= 1.12.0)
|
||||||
|
mail (2.8.1)
|
||||||
|
mini_mime (>= 0.1.1)
|
||||||
|
net-imap
|
||||||
|
net-pop
|
||||||
|
net-smtp
|
||||||
|
marcel (1.0.2)
|
||||||
|
matrix (0.4.2)
|
||||||
|
method_source (1.0.0)
|
||||||
|
middleware (0.1.0)
|
||||||
|
mini_mime (1.1.5)
|
||||||
|
mini_portile2 (2.8.4)
|
||||||
|
minitest (5.19.0)
|
||||||
|
minitest-ci (3.4.0)
|
||||||
|
minitest (>= 5.0.6)
|
||||||
|
minitest-fail-fast (0.1.0)
|
||||||
|
minitest (~> 5)
|
||||||
|
minitest-reporters (1.6.1)
|
||||||
|
ansi
|
||||||
|
builder
|
||||||
|
minitest (>= 5.0)
|
||||||
|
ruby-progressbar
|
||||||
|
mocha (2.1.0)
|
||||||
|
ruby2_keywords (>= 0.0.5)
|
||||||
|
multi_xml (0.6.0)
|
||||||
|
mysql2 (0.5.5)
|
||||||
|
net-imap (0.3.7)
|
||||||
|
date
|
||||||
|
net-protocol
|
||||||
|
net-pop (0.1.2)
|
||||||
|
net-protocol
|
||||||
|
net-protocol (0.2.1)
|
||||||
|
timeout
|
||||||
|
net-smtp (0.3.3)
|
||||||
|
net-protocol
|
||||||
|
next_rails (1.3.0)
|
||||||
|
colorize (>= 0.8.1)
|
||||||
|
nio4r (2.5.9)
|
||||||
|
nokogiri (1.15.4)
|
||||||
|
mini_portile2 (~> 2.8.2)
|
||||||
|
racc (~> 1.4)
|
||||||
|
octokit (7.1.0)
|
||||||
|
faraday (>= 1, < 3)
|
||||||
|
sawyer (~> 0.9)
|
||||||
|
parallel (1.23.0)
|
||||||
|
parser (3.2.2.3)
|
||||||
|
ast (~> 2.4.1)
|
||||||
|
racc
|
||||||
|
pkg-config (1.5.2)
|
||||||
|
popper_js (2.11.8)
|
||||||
|
power_assert (2.0.3)
|
||||||
|
pry (0.14.2)
|
||||||
|
coderay (~> 1.1)
|
||||||
|
method_source (~> 1.0)
|
||||||
|
pry-byebug (3.10.1)
|
||||||
|
byebug (~> 11.0)
|
||||||
|
pry (>= 0.13, < 0.15)
|
||||||
|
pry-rails (0.3.9)
|
||||||
|
pry (>= 0.10.4)
|
||||||
|
public_suffix (5.0.3)
|
||||||
|
puma (6.3.1)
|
||||||
|
nio4r (~> 2.0)
|
||||||
|
pundit (2.3.1)
|
||||||
|
activesupport (>= 3.0.0)
|
||||||
|
racc (1.7.1)
|
||||||
|
rack (2.2.8)
|
||||||
|
rack-protection (3.1.0)
|
||||||
|
rack (~> 2.2, >= 2.2.4)
|
||||||
|
rack-test (2.1.0)
|
||||||
|
rack (>= 1.3)
|
||||||
|
rails (7.0.6)
|
||||||
|
actioncable (= 7.0.6)
|
||||||
|
actionmailbox (= 7.0.6)
|
||||||
|
actionmailer (= 7.0.6)
|
||||||
|
actionpack (= 7.0.6)
|
||||||
|
actiontext (= 7.0.6)
|
||||||
|
actionview (= 7.0.6)
|
||||||
|
activejob (= 7.0.6)
|
||||||
|
activemodel (= 7.0.6)
|
||||||
|
activerecord (= 7.0.6)
|
||||||
|
activestorage (= 7.0.6)
|
||||||
|
activesupport (= 7.0.6)
|
||||||
|
bundler (>= 1.15.0)
|
||||||
|
railties (= 7.0.6)
|
||||||
|
rails-controller-testing (1.0.5)
|
||||||
|
actionpack (>= 5.0.1.rc1)
|
||||||
|
actionview (>= 5.0.1.rc1)
|
||||||
|
activesupport (>= 5.0.1.rc1)
|
||||||
|
rails-dom-testing (2.2.0)
|
||||||
|
activesupport (>= 5.0.0)
|
||||||
|
minitest
|
||||||
|
nokogiri (>= 1.6)
|
||||||
|
rails-html-sanitizer (1.6.0)
|
||||||
|
loofah (~> 2.21)
|
||||||
|
nokogiri (~> 1.14)
|
||||||
|
railties (7.0.6)
|
||||||
|
actionpack (= 7.0.6)
|
||||||
|
activesupport (= 7.0.6)
|
||||||
|
method_source
|
||||||
|
rake (>= 12.2)
|
||||||
|
thor (~> 1.0)
|
||||||
|
zeitwerk (~> 2.5)
|
||||||
|
rainbow (3.1.1)
|
||||||
|
rake (13.0.6)
|
||||||
|
rantly (2.0.0)
|
||||||
|
rbtree (0.4.6)
|
||||||
|
rbtree3 (0.7.1)
|
||||||
|
redcarpet (3.6.0)
|
||||||
|
regexp_parser (2.8.1)
|
||||||
|
request_store (1.5.1)
|
||||||
|
rack (>= 1.4)
|
||||||
|
rexml (3.2.6)
|
||||||
|
riddle (2.4.3)
|
||||||
|
rspec (3.12.0)
|
||||||
|
rspec-core (~> 3.12.0)
|
||||||
|
rspec-expectations (~> 3.12.0)
|
||||||
|
rspec-mocks (~> 3.12.0)
|
||||||
|
rspec-core (3.12.2)
|
||||||
|
rspec-support (~> 3.12.0)
|
||||||
|
rspec-expectations (3.12.3)
|
||||||
|
diff-lcs (>= 1.2.0, < 2.0)
|
||||||
|
rspec-support (~> 3.12.0)
|
||||||
|
rspec-mocks (3.12.6)
|
||||||
|
diff-lcs (>= 1.2.0, < 2.0)
|
||||||
|
rspec-support (~> 3.12.0)
|
||||||
|
rspec-rails (6.0.3)
|
||||||
|
actionpack (>= 6.1)
|
||||||
|
activesupport (>= 6.1)
|
||||||
|
railties (>= 6.1)
|
||||||
|
rspec-core (~> 3.12)
|
||||||
|
rspec-expectations (~> 3.12)
|
||||||
|
rspec-mocks (~> 3.12)
|
||||||
|
rspec-support (~> 3.12)
|
||||||
|
rspec-support (3.12.1)
|
||||||
|
rspec_junit_formatter (0.6.0)
|
||||||
|
rspec-core (>= 2, < 4, != 2.12.0)
|
||||||
|
rubocop (1.56.1)
|
||||||
|
base64 (~> 0.1.1)
|
||||||
|
json (~> 2.3)
|
||||||
|
language_server-protocol (>= 3.17.0)
|
||||||
|
parallel (~> 1.10)
|
||||||
|
parser (>= 3.2.2.3)
|
||||||
|
rainbow (>= 2.2.2, < 4.0)
|
||||||
|
regexp_parser (>= 1.8, < 3.0)
|
||||||
|
rexml (>= 3.2.5, < 4.0)
|
||||||
|
rubocop-ast (>= 1.28.1, < 2.0)
|
||||||
|
ruby-progressbar (~> 1.7)
|
||||||
|
unicode-display_width (>= 2.4.0, < 3.0)
|
||||||
|
rubocop-ast (1.29.0)
|
||||||
|
parser (>= 3.2.1.0)
|
||||||
|
rubocop-capybara (2.18.0)
|
||||||
|
rubocop (~> 1.41)
|
||||||
|
rubocop-factory_bot (2.23.1)
|
||||||
|
rubocop (~> 1.33)
|
||||||
|
rubocop-performance (1.19.0)
|
||||||
|
rubocop (>= 1.7.0, < 2.0)
|
||||||
|
rubocop-ast (>= 0.4.0)
|
||||||
|
rubocop-rails (2.20.2)
|
||||||
|
activesupport (>= 4.2.0)
|
||||||
|
rack (>= 1.1)
|
||||||
|
rubocop (>= 1.33.0, < 2.0)
|
||||||
|
rubocop-rspec (2.23.2)
|
||||||
|
rubocop (~> 1.33)
|
||||||
|
rubocop-capybara (~> 2.17)
|
||||||
|
rubocop-factory_bot (~> 2.22)
|
||||||
|
ruby-ldap (0.9.20)
|
||||||
|
ruby-progressbar (1.13.0)
|
||||||
|
ruby2_keywords (0.0.5)
|
||||||
|
rubyzip (2.3.2)
|
||||||
|
sanitize (6.0.2)
|
||||||
|
crass (~> 1.0.2)
|
||||||
|
nokogiri (>= 1.12.0)
|
||||||
|
sassc (2.4.0)
|
||||||
|
ffi (~> 1.9)
|
||||||
|
sassc-rails (2.1.2)
|
||||||
|
railties (>= 4.0.0)
|
||||||
|
sassc (>= 2.0)
|
||||||
|
sprockets (> 3.0)
|
||||||
|
sprockets-rails
|
||||||
|
tilt
|
||||||
|
sawyer (0.9.2)
|
||||||
|
addressable (>= 2.3.5)
|
||||||
|
faraday (>= 0.17.3, < 3)
|
||||||
|
selenium-webdriver (4.5.0)
|
||||||
|
childprocess (>= 0.5, < 5.0)
|
||||||
|
rexml (~> 3.2, >= 3.2.5)
|
||||||
|
rubyzip (>= 1.2.2, < 3.0)
|
||||||
|
websocket (~> 1.0)
|
||||||
|
set (1.0.3)
|
||||||
|
shoulda-matchers (5.3.0)
|
||||||
|
activesupport (>= 5.2.0)
|
||||||
|
simplecov (0.22.0)
|
||||||
|
docile (~> 1.1)
|
||||||
|
simplecov-html (~> 0.11)
|
||||||
|
simplecov_json_formatter (~> 0.1)
|
||||||
|
simplecov-cobertura (2.1.0)
|
||||||
|
rexml
|
||||||
|
simplecov (~> 0.19)
|
||||||
|
simplecov-html (0.12.3)
|
||||||
|
simplecov_json_formatter (0.1.4)
|
||||||
|
single_test (0.6.0)
|
||||||
|
rake
|
||||||
|
sorted_set (1.0.3)
|
||||||
|
rbtree
|
||||||
|
set (~> 1.0)
|
||||||
|
sprockets (4.2.0)
|
||||||
|
concurrent-ruby (~> 1.0)
|
||||||
|
rack (>= 2.2.4, < 4)
|
||||||
|
sprockets-rails (3.4.2)
|
||||||
|
actionpack (>= 5.2)
|
||||||
|
activesupport (>= 5.2)
|
||||||
|
sprockets (>= 3.0.0)
|
||||||
|
strong_migrations (1.6.1)
|
||||||
|
activerecord (>= 5.2)
|
||||||
|
strscan (3.0.1)
|
||||||
|
sysexits (1.2.0)
|
||||||
|
temple (0.10.2)
|
||||||
|
terminal-table (3.0.2)
|
||||||
|
unicode-display_width (>= 1.1.1, < 3)
|
||||||
|
terser (1.1.17)
|
||||||
|
execjs (>= 0.3.0, < 3)
|
||||||
|
test-unit (3.6.1)
|
||||||
|
power_assert
|
||||||
|
thinking-sphinx (5.5.1)
|
||||||
|
activerecord (>= 4.2.0)
|
||||||
|
builder (>= 2.1.2)
|
||||||
|
innertube (>= 1.0.2)
|
||||||
|
joiner (>= 0.3.4)
|
||||||
|
middleware (>= 0.1.0)
|
||||||
|
riddle (~> 2.3)
|
||||||
|
thor (1.2.2)
|
||||||
|
tilt (2.2.0)
|
||||||
|
timeout (0.4.0)
|
||||||
|
tzinfo (2.0.6)
|
||||||
|
concurrent-ruby (~> 1.0)
|
||||||
|
unicode-display_width (2.4.2)
|
||||||
|
uniform_notifier (1.16.0)
|
||||||
|
vcr (6.2.0)
|
||||||
|
view_component (3.5.0)
|
||||||
|
activesupport (>= 5.2.0, < 8.0)
|
||||||
|
concurrent-ruby (~> 1.0)
|
||||||
|
method_source (~> 1.0)
|
||||||
|
voight_kampff (2.0.0)
|
||||||
|
rack (>= 1.4)
|
||||||
|
webmock (3.19.0)
|
||||||
|
addressable (>= 2.8.0)
|
||||||
|
crack (>= 0.3.2)
|
||||||
|
hashdiff (>= 0.4.0, < 2.0.0)
|
||||||
|
webrick (1.8.1)
|
||||||
|
websocket (1.2.9)
|
||||||
|
websocket-driver (0.7.6)
|
||||||
|
websocket-extensions (>= 0.1.0)
|
||||||
|
websocket-extensions (0.1.5)
|
||||||
|
xmlhash (1.3.9)
|
||||||
|
pkg-config
|
||||||
|
xmlrpc (0.3.3)
|
||||||
|
webrick
|
||||||
|
xpath (3.2.0)
|
||||||
|
nokogiri (~> 1.8)
|
||||||
|
yajl-ruby (1.4.3)
|
||||||
|
zeitwerk (2.6.11)
|
||||||
|
|
||||||
|
PLATFORMS
|
||||||
|
ruby
|
||||||
|
|
||||||
|
DEPENDENCIES
|
||||||
|
activemodel-serializers-xml
|
||||||
|
acts_as_list
|
||||||
|
acts_as_tree
|
||||||
|
addressable
|
||||||
|
airbrake
|
||||||
|
airbrake-ruby
|
||||||
|
ajax-datatables-rails
|
||||||
|
annotate
|
||||||
|
awesome_print
|
||||||
|
bcrypt
|
||||||
|
bigdecimal
|
||||||
|
bootstrap
|
||||||
|
builder
|
||||||
|
bullet
|
||||||
|
bunny
|
||||||
|
bunny-mock
|
||||||
|
capybara
|
||||||
|
clockwork
|
||||||
|
cocoon
|
||||||
|
coderay
|
||||||
|
daemons
|
||||||
|
dalli
|
||||||
|
data_migrate (~> 9.0)
|
||||||
|
database_cleaner-active_record
|
||||||
|
database_consistency
|
||||||
|
deep_cloneable
|
||||||
|
delayed_job_active_record
|
||||||
|
down
|
||||||
|
factory_bot_rails
|
||||||
|
faker
|
||||||
|
faraday
|
||||||
|
flipper
|
||||||
|
flipper-active_record
|
||||||
|
flipper-ui
|
||||||
|
flot-rails
|
||||||
|
font-awesome-sass
|
||||||
|
fuubar
|
||||||
|
gitlab
|
||||||
|
gssapi
|
||||||
|
haml
|
||||||
|
haml-rails
|
||||||
|
haml_lint
|
||||||
|
influxdb-rails
|
||||||
|
jquery-datatables
|
||||||
|
jquery-rails
|
||||||
|
jquery-ui-rails (~> 4.2.1)
|
||||||
|
kaminari
|
||||||
|
launchy
|
||||||
|
lograge
|
||||||
|
matrix (~> 0.4)
|
||||||
|
minitest
|
||||||
|
minitest-ci
|
||||||
|
minitest-fail-fast
|
||||||
|
minitest-reporters
|
||||||
|
mocha
|
||||||
|
mysql2
|
||||||
|
net-imap
|
||||||
|
net-pop
|
||||||
|
net-smtp
|
||||||
|
next_rails
|
||||||
|
nokogiri
|
||||||
|
octokit
|
||||||
|
pry
|
||||||
|
pry-byebug
|
||||||
|
pry-rails
|
||||||
|
puma
|
||||||
|
pundit
|
||||||
|
rails (~> 7.0)
|
||||||
|
rails-controller-testing
|
||||||
|
rantly
|
||||||
|
redcarpet
|
||||||
|
rexml
|
||||||
|
rspec
|
||||||
|
rspec-rails
|
||||||
|
rspec_junit_formatter
|
||||||
|
rubocop
|
||||||
|
rubocop-performance
|
||||||
|
rubocop-rails
|
||||||
|
rubocop-rspec
|
||||||
|
ruby-ldap
|
||||||
|
sassc-rails
|
||||||
|
selenium-webdriver
|
||||||
|
shoulda-matchers
|
||||||
|
simplecov
|
||||||
|
simplecov-cobertura
|
||||||
|
single_test
|
||||||
|
sprockets-rails
|
||||||
|
strong_migrations
|
||||||
|
strscan (= 3.0.1)
|
||||||
|
terser
|
||||||
|
test-unit
|
||||||
|
thinking-sphinx
|
||||||
|
vcr
|
||||||
|
view_component
|
||||||
|
voight_kampff
|
||||||
|
webmock
|
||||||
|
xmlhash
|
||||||
|
xmlrpc
|
||||||
|
yajl-ruby
|
||||||
|
|
||||||
|
BUNDLED WITH
|
||||||
|
2.4.10
|
||||||
@ -1,588 +0,0 @@
|
|||||||
GEM
|
|
||||||
remote: https://anonymous:devcloud@mirrors.huaweicloud.com/repository/rubygems/
|
|
||||||
specs:
|
|
||||||
actioncable (5.2.7.1)
|
|
||||||
actionpack (= 5.2.7.1)
|
|
||||||
nio4r (~> 2.0)
|
|
||||||
websocket-driver (>= 0.6.1)
|
|
||||||
actionmailer (5.2.7.1)
|
|
||||||
actionpack (= 5.2.7.1)
|
|
||||||
actionview (= 5.2.7.1)
|
|
||||||
activejob (= 5.2.7.1)
|
|
||||||
mail (~> 2.5, >= 2.5.4)
|
|
||||||
rails-dom-testing (~> 2.0)
|
|
||||||
actionpack (5.2.7.1)
|
|
||||||
actionview (= 5.2.7.1)
|
|
||||||
activesupport (= 5.2.7.1)
|
|
||||||
rack (~> 2.0, >= 2.0.8)
|
|
||||||
rack-test (>= 0.6.3)
|
|
||||||
rails-dom-testing (~> 2.0)
|
|
||||||
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
|
||||||
actionview (5.2.7.1)
|
|
||||||
activesupport (= 5.2.7.1)
|
|
||||||
builder (~> 3.1)
|
|
||||||
erubi (~> 1.4)
|
|
||||||
rails-dom-testing (~> 2.0)
|
|
||||||
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
|
||||||
activejob (5.2.7.1)
|
|
||||||
activesupport (= 5.2.7.1)
|
|
||||||
globalid (>= 0.3.6)
|
|
||||||
activemodel (5.2.7.1)
|
|
||||||
activesupport (= 5.2.7.1)
|
|
||||||
activemodel-serializers-xml (1.0.2)
|
|
||||||
activemodel (> 5.x)
|
|
||||||
activesupport (> 5.x)
|
|
||||||
builder (~> 3.1)
|
|
||||||
activerecord (5.2.7.1)
|
|
||||||
activemodel (= 5.2.7.1)
|
|
||||||
activesupport (= 5.2.7.1)
|
|
||||||
arel (>= 9.0)
|
|
||||||
activestorage (5.2.7.1)
|
|
||||||
actionpack (= 5.2.7.1)
|
|
||||||
activerecord (= 5.2.7.1)
|
|
||||||
marcel (~> 1.0.0)
|
|
||||||
activesupport (5.2.7.1)
|
|
||||||
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
||||||
i18n (>= 0.7, < 2)
|
|
||||||
minitest (~> 5.1)
|
|
||||||
tzinfo (~> 1.1)
|
|
||||||
acts_as_list (1.0.4)
|
|
||||||
activerecord (>= 4.2)
|
|
||||||
acts_as_tree (2.9.1)
|
|
||||||
activerecord (>= 3.0.0)
|
|
||||||
addressable (2.8.0)
|
|
||||||
public_suffix (>= 2.0.2, < 5.0)
|
|
||||||
airbrake (13.0.0)
|
|
||||||
airbrake-ruby (~> 6.0)
|
|
||||||
airbrake-ruby (6.0.2)
|
|
||||||
rbtree3 (~> 0.5)
|
|
||||||
ajax-datatables-rails (1.3.1)
|
|
||||||
zeitwerk
|
|
||||||
amq-protocol (2.3.2)
|
|
||||||
ansi (1.5.0)
|
|
||||||
arel (9.0.0)
|
|
||||||
ast (2.4.2)
|
|
||||||
autoprefixer-rails (10.4.2.0)
|
|
||||||
execjs (~> 2)
|
|
||||||
bcrypt (3.1.17)
|
|
||||||
bootstrap (5.1.3)
|
|
||||||
autoprefixer-rails (>= 9.1.0)
|
|
||||||
popper_js (>= 2.9.3, < 3)
|
|
||||||
sassc-rails (>= 2.0.0)
|
|
||||||
builder (3.2.4)
|
|
||||||
bullet (7.0.1)
|
|
||||||
activesupport (>= 3.0.0)
|
|
||||||
uniform_notifier (~> 1.11)
|
|
||||||
bunny (2.19.0)
|
|
||||||
amq-protocol (~> 2.3, >= 2.3.1)
|
|
||||||
sorted_set (~> 1, >= 1.0.2)
|
|
||||||
bunny-mock (1.7.0)
|
|
||||||
bunny (>= 1.7)
|
|
||||||
byebug (11.1.3)
|
|
||||||
capybara (3.36.0)
|
|
||||||
addressable
|
|
||||||
matrix
|
|
||||||
mini_mime (>= 0.1.3)
|
|
||||||
nokogiri (~> 1.8)
|
|
||||||
rack (>= 1.6.0)
|
|
||||||
rack-test (>= 0.6.3)
|
|
||||||
regexp_parser (>= 1.5, < 3.0)
|
|
||||||
xpath (~> 3.2)
|
|
||||||
capybara_minitest_spec (1.0.7)
|
|
||||||
capybara (>= 2)
|
|
||||||
minitest (>= 4)
|
|
||||||
childprocess (4.1.0)
|
|
||||||
chunky_png (1.4.0)
|
|
||||||
clockwork (3.0.0)
|
|
||||||
activesupport
|
|
||||||
tzinfo
|
|
||||||
cocoon (1.2.15)
|
|
||||||
codecov (0.6.0)
|
|
||||||
simplecov (>= 0.15, < 0.22)
|
|
||||||
codemirror-rails (5.16.0)
|
|
||||||
railties (>= 3.0, < 6.0)
|
|
||||||
coderay (1.1.3)
|
|
||||||
coffee-rails (5.0.0)
|
|
||||||
coffee-script (>= 2.2.0)
|
|
||||||
railties (>= 5.2.0)
|
|
||||||
coffee-script (2.4.1)
|
|
||||||
coffee-script-source
|
|
||||||
execjs
|
|
||||||
coffee-script-source (1.12.2)
|
|
||||||
colorize (0.8.1)
|
|
||||||
concurrent-ruby (1.1.9)
|
|
||||||
concurrent-ruby-ext (1.1.9)
|
|
||||||
concurrent-ruby (= 1.1.9)
|
|
||||||
coveralls (0.7.1)
|
|
||||||
multi_json (~> 1.3)
|
|
||||||
rest-client
|
|
||||||
simplecov (>= 0.7)
|
|
||||||
term-ansicolor
|
|
||||||
thor
|
|
||||||
crack (0.4.5)
|
|
||||||
rexml
|
|
||||||
crass (1.0.6)
|
|
||||||
cssmin (1.0.3)
|
|
||||||
daemons (1.4.1)
|
|
||||||
dalli (3.2.1)
|
|
||||||
data_migrate (8.0.0)
|
|
||||||
activerecord (>= 5.0)
|
|
||||||
railties (>= 5.0)
|
|
||||||
database_cleaner (2.0.1)
|
|
||||||
database_cleaner-active_record (~> 2.0.0)
|
|
||||||
database_cleaner-active_record (2.0.1)
|
|
||||||
activerecord (>= 5.a)
|
|
||||||
database_cleaner-core (~> 2.0.0)
|
|
||||||
database_cleaner-core (2.0.1)
|
|
||||||
deep_cloneable (2.4.0)
|
|
||||||
activerecord (>= 3.1.0, < 6)
|
|
||||||
delayed_job (4.1.10)
|
|
||||||
activesupport (>= 3.0, < 8.0)
|
|
||||||
delayed_job_active_record (4.1.7)
|
|
||||||
activerecord (>= 3.0, < 8.0)
|
|
||||||
delayed_job (>= 3.0, < 5)
|
|
||||||
diff-lcs (1.5.0)
|
|
||||||
docile (1.4.0)
|
|
||||||
domain_name (0.5.20190701)
|
|
||||||
unf (>= 0.0.5, < 1.0.0)
|
|
||||||
erubi (1.10.0)
|
|
||||||
erubis (2.7.0)
|
|
||||||
escape_utils (1.2.1)
|
|
||||||
execjs (2.8.1)
|
|
||||||
experimental-influxdb-rails (1.0.0.beta5)
|
|
||||||
influxdb (~> 0.6, >= 0.6.4)
|
|
||||||
railties (>= 4.2)
|
|
||||||
factory_bot (6.2.0)
|
|
||||||
activesupport (>= 5.0.0)
|
|
||||||
factory_bot_rails (6.2.0)
|
|
||||||
factory_bot (~> 6.2.0)
|
|
||||||
railties (>= 5.0.0)
|
|
||||||
faker (2.20.0)
|
|
||||||
i18n (>= 1.8.11, < 2)
|
|
||||||
feature (1.4.0)
|
|
||||||
ffi (1.15.5)
|
|
||||||
flot-rails (0.0.7)
|
|
||||||
jquery-rails
|
|
||||||
font-awesome-sass (6.1.0)
|
|
||||||
sassc (>= 2.0)
|
|
||||||
globalid (1.0.0)
|
|
||||||
activesupport (>= 5.0)
|
|
||||||
gssapi (1.3.1)
|
|
||||||
ffi (>= 1.0.1)
|
|
||||||
haml (5.2.2)
|
|
||||||
temple (>= 0.8.0)
|
|
||||||
tilt
|
|
||||||
haml-rails (2.0.1)
|
|
||||||
actionpack (>= 5.1)
|
|
||||||
activesupport (>= 5.1)
|
|
||||||
haml (>= 4.0.6, < 6.0)
|
|
||||||
html2haml (>= 1.0.1)
|
|
||||||
railties (>= 5.1)
|
|
||||||
haml_lint (0.40.0)
|
|
||||||
haml (>= 4.0, < 5.3)
|
|
||||||
parallel (~> 1.10)
|
|
||||||
rainbow
|
|
||||||
rubocop (>= 0.50.0)
|
|
||||||
sysexits (~> 1.1)
|
|
||||||
hashdiff (1.0.1)
|
|
||||||
html2haml (2.2.0)
|
|
||||||
erubis (~> 2.7.0)
|
|
||||||
haml (>= 4.0, < 6)
|
|
||||||
nokogiri (>= 1.6.0)
|
|
||||||
ruby_parser (~> 3.5)
|
|
||||||
http-accept (1.7.0)
|
|
||||||
http-cookie (1.0.4)
|
|
||||||
domain_name (~> 0.5)
|
|
||||||
i18n (1.10.0)
|
|
||||||
concurrent-ruby (~> 1.0)
|
|
||||||
influxdb (0.8.1)
|
|
||||||
innertube (1.1.0)
|
|
||||||
joiner (0.4.2)
|
|
||||||
activerecord (>= 5.2.beta1)
|
|
||||||
jquery-datatables (1.10.20)
|
|
||||||
jquery-rails (4.4.0)
|
|
||||||
rails-dom-testing (>= 1, < 3)
|
|
||||||
railties (>= 4.2.0)
|
|
||||||
thor (>= 0.14, < 2.0)
|
|
||||||
jquery-ui-rails (4.2.1)
|
|
||||||
railties (>= 3.2.16)
|
|
||||||
kaminari (1.2.2)
|
|
||||||
activesupport (>= 4.1.0)
|
|
||||||
kaminari-actionview (= 1.2.2)
|
|
||||||
kaminari-activerecord (= 1.2.2)
|
|
||||||
kaminari-core (= 1.2.2)
|
|
||||||
kaminari-actionview (1.2.2)
|
|
||||||
actionview
|
|
||||||
kaminari-core (= 1.2.2)
|
|
||||||
kaminari-activerecord (1.2.2)
|
|
||||||
activerecord
|
|
||||||
kaminari-core (= 1.2.2)
|
|
||||||
kaminari-core (1.2.2)
|
|
||||||
launchy (2.5.0)
|
|
||||||
addressable (~> 2.7)
|
|
||||||
lograge (0.11.2)
|
|
||||||
actionpack (>= 4)
|
|
||||||
activesupport (>= 4)
|
|
||||||
railties (>= 4)
|
|
||||||
request_store (~> 1.0)
|
|
||||||
loofah (2.15.0)
|
|
||||||
crass (~> 1.0.2)
|
|
||||||
nokogiri (>= 1.5.9)
|
|
||||||
mail (2.7.1)
|
|
||||||
mini_mime (>= 0.1.1)
|
|
||||||
marcel (1.0.2)
|
|
||||||
matrix (0.4.2)
|
|
||||||
method_source (1.0.0)
|
|
||||||
middleware (0.1.0)
|
|
||||||
mime-types (3.4.1)
|
|
||||||
mime-types-data (~> 3.2015)
|
|
||||||
mime-types-data (3.2022.0105)
|
|
||||||
mini_mime (1.1.2)
|
|
||||||
minitest (5.15.0)
|
|
||||||
minitest-ci (3.4.0)
|
|
||||||
minitest (>= 5.0.6)
|
|
||||||
minitest-fail-fast (0.1.0)
|
|
||||||
minitest (~> 5)
|
|
||||||
minitest-reporters (1.5.0)
|
|
||||||
ansi
|
|
||||||
builder
|
|
||||||
minitest (>= 5.0)
|
|
||||||
ruby-progressbar
|
|
||||||
mocha (1.13.0)
|
|
||||||
momentjs-rails (2.29.1.1)
|
|
||||||
railties (>= 3.1)
|
|
||||||
mousetrap-rails (1.4.6)
|
|
||||||
multi_json (1.15.0)
|
|
||||||
mysql2 (0.5.3)
|
|
||||||
netrc (0.11.0)
|
|
||||||
nio4r (2.5.8)
|
|
||||||
nokogiri (1.13.4-aarch64-linux)
|
|
||||||
racc (~> 1.4)
|
|
||||||
parallel (1.21.0)
|
|
||||||
parser (3.1.1.0)
|
|
||||||
ast (~> 2.4.1)
|
|
||||||
peek (1.1.0)
|
|
||||||
railties (>= 4.0.0)
|
|
||||||
peek-dalli (1.2.0)
|
|
||||||
concurrent-ruby
|
|
||||||
concurrent-ruby-ext
|
|
||||||
dalli
|
|
||||||
peek
|
|
||||||
peek-host (1.0.0)
|
|
||||||
peek
|
|
||||||
peek-mysql2 (1.2.0)
|
|
||||||
concurrent-ruby
|
|
||||||
concurrent-ruby-ext
|
|
||||||
mysql2
|
|
||||||
peek
|
|
||||||
pkg-config (1.4.7)
|
|
||||||
popper_js (2.9.3)
|
|
||||||
power_assert (2.0.1)
|
|
||||||
pry (0.13.1)
|
|
||||||
coderay (~> 1.1)
|
|
||||||
method_source (~> 1.0)
|
|
||||||
pry-byebug (3.9.0)
|
|
||||||
byebug (~> 11.0)
|
|
||||||
pry (~> 0.13.0)
|
|
||||||
public_suffix (4.0.6)
|
|
||||||
puma (4.3.11)
|
|
||||||
nio4r (~> 2.0)
|
|
||||||
pundit (2.2.0)
|
|
||||||
activesupport (>= 3.0.0)
|
|
||||||
racc (1.6.0)
|
|
||||||
rack (2.2.3)
|
|
||||||
rack-test (1.1.0)
|
|
||||||
rack (>= 1.0, < 3)
|
|
||||||
rails (5.2.7.1)
|
|
||||||
actioncable (= 5.2.7.1)
|
|
||||||
actionmailer (= 5.2.7.1)
|
|
||||||
actionpack (= 5.2.7.1)
|
|
||||||
actionview (= 5.2.7.1)
|
|
||||||
activejob (= 5.2.7.1)
|
|
||||||
activemodel (= 5.2.7.1)
|
|
||||||
activerecord (= 5.2.7.1)
|
|
||||||
activestorage (= 5.2.7.1)
|
|
||||||
activesupport (= 5.2.7.1)
|
|
||||||
bundler (>= 1.3.0)
|
|
||||||
railties (= 5.2.7.1)
|
|
||||||
sprockets-rails (>= 2.0.0)
|
|
||||||
rails-controller-testing (1.0.5)
|
|
||||||
actionpack (>= 5.0.1.rc1)
|
|
||||||
actionview (>= 5.0.1.rc1)
|
|
||||||
activesupport (>= 5.0.1.rc1)
|
|
||||||
rails-dom-testing (2.0.3)
|
|
||||||
activesupport (>= 4.2.0)
|
|
||||||
nokogiri (>= 1.6)
|
|
||||||
rails-html-sanitizer (1.4.2)
|
|
||||||
loofah (~> 2.3)
|
|
||||||
rails-timeago (2.20.0)
|
|
||||||
actionpack (>= 5.2)
|
|
||||||
activesupport (>= 5.2)
|
|
||||||
rails_tokeninput (1.7.0)
|
|
||||||
railties (>= 3.1.0)
|
|
||||||
railties (5.2.7.1)
|
|
||||||
actionpack (= 5.2.7.1)
|
|
||||||
activesupport (= 5.2.7.1)
|
|
||||||
method_source
|
|
||||||
rake (>= 0.8.7)
|
|
||||||
thor (>= 0.19.0, < 2.0)
|
|
||||||
rainbow (3.1.1)
|
|
||||||
rake (13.0.6)
|
|
||||||
rantly (2.0.0)
|
|
||||||
rbtree (0.4.5)
|
|
||||||
rbtree3 (0.7.0)
|
|
||||||
rdoc (6.3.3)
|
|
||||||
redcarpet (3.5.1)
|
|
||||||
regexp_parser (2.2.1)
|
|
||||||
request_store (1.5.1)
|
|
||||||
rack (>= 1.4)
|
|
||||||
responders (3.0.1)
|
|
||||||
actionpack (>= 5.0)
|
|
||||||
railties (>= 5.0)
|
|
||||||
rest-client (2.1.0)
|
|
||||||
http-accept (>= 1.7.0, < 2.0)
|
|
||||||
http-cookie (>= 1.0.2, < 2.0)
|
|
||||||
mime-types (>= 1.16, < 4.0)
|
|
||||||
netrc (~> 0.8)
|
|
||||||
rexml (3.2.5)
|
|
||||||
riddle (2.4.3)
|
|
||||||
rspec (3.11.0)
|
|
||||||
rspec-core (~> 3.11.0)
|
|
||||||
rspec-expectations (~> 3.11.0)
|
|
||||||
rspec-mocks (~> 3.11.0)
|
|
||||||
rspec-core (3.11.0)
|
|
||||||
rspec-support (~> 3.11.0)
|
|
||||||
rspec-expectations (3.11.0)
|
|
||||||
diff-lcs (>= 1.2.0, < 2.0)
|
|
||||||
rspec-support (~> 3.11.0)
|
|
||||||
rspec-mocks (3.11.0)
|
|
||||||
diff-lcs (>= 1.2.0, < 2.0)
|
|
||||||
rspec-support (~> 3.11.0)
|
|
||||||
rspec-rails (5.1.1)
|
|
||||||
actionpack (>= 5.2)
|
|
||||||
activesupport (>= 5.2)
|
|
||||||
railties (>= 5.2)
|
|
||||||
rspec-core (~> 3.10)
|
|
||||||
rspec-expectations (~> 3.10)
|
|
||||||
rspec-mocks (~> 3.10)
|
|
||||||
rspec-support (~> 3.10)
|
|
||||||
rspec-support (3.11.0)
|
|
||||||
rspec_junit_formatter (0.5.1)
|
|
||||||
rspec-core (>= 2, < 4, != 2.12.0)
|
|
||||||
rubocop (1.26.0)
|
|
||||||
parallel (~> 1.10)
|
|
||||||
parser (>= 3.1.0.0)
|
|
||||||
rainbow (>= 2.2.2, < 4.0)
|
|
||||||
regexp_parser (>= 1.8, < 3.0)
|
|
||||||
rexml
|
|
||||||
rubocop-ast (>= 1.16.0, < 2.0)
|
|
||||||
ruby-progressbar (~> 1.7)
|
|
||||||
unicode-display_width (>= 1.4.0, < 3.0)
|
|
||||||
rubocop-ast (1.16.0)
|
|
||||||
parser (>= 3.1.1.0)
|
|
||||||
rubocop-performance (1.13.3)
|
|
||||||
rubocop (>= 1.7.0, < 2.0)
|
|
||||||
rubocop-ast (>= 0.4.0)
|
|
||||||
rubocop-rails (2.14.2)
|
|
||||||
activesupport (>= 4.2.0)
|
|
||||||
rack (>= 1.1)
|
|
||||||
rubocop (>= 1.7.0, < 2.0)
|
|
||||||
rubocop-rspec (2.9.0)
|
|
||||||
rubocop (~> 1.19)
|
|
||||||
ruby-ldap (0.9.20)
|
|
||||||
ruby-progressbar (1.11.0)
|
|
||||||
ruby_parser (3.18.1)
|
|
||||||
sexp_processor (~> 4.16)
|
|
||||||
rubyzip (2.3.2)
|
|
||||||
sanitize (6.0.0)
|
|
||||||
crass (~> 1.0.2)
|
|
||||||
nokogiri (>= 1.12.0)
|
|
||||||
sassc (2.4.0)
|
|
||||||
ffi (~> 1.9)
|
|
||||||
sassc-rails (2.1.2)
|
|
||||||
railties (>= 4.0.0)
|
|
||||||
sassc (>= 2.0)
|
|
||||||
sprockets (> 3.0)
|
|
||||||
sprockets-rails
|
|
||||||
tilt
|
|
||||||
selenium-webdriver (4.1.0)
|
|
||||||
childprocess (>= 0.5, < 5.0)
|
|
||||||
rexml (~> 3.2, >= 3.2.5)
|
|
||||||
rubyzip (>= 1.2.2)
|
|
||||||
set (1.0.2)
|
|
||||||
sexp_processor (4.16.0)
|
|
||||||
shoulda-matchers (4.5.1)
|
|
||||||
activesupport (>= 4.2.0)
|
|
||||||
simplecov (0.21.2)
|
|
||||||
docile (~> 1.1)
|
|
||||||
simplecov-html (~> 0.11)
|
|
||||||
simplecov_json_formatter (~> 0.1)
|
|
||||||
simplecov-html (0.12.3)
|
|
||||||
simplecov_json_formatter (0.1.4)
|
|
||||||
single_test (0.6.0)
|
|
||||||
rake
|
|
||||||
sorted_set (1.0.3)
|
|
||||||
rbtree
|
|
||||||
set (~> 1.0)
|
|
||||||
sprite-factory (1.7.1)
|
|
||||||
sprockets (4.0.3)
|
|
||||||
concurrent-ruby (~> 1.0)
|
|
||||||
rack (> 1, < 3)
|
|
||||||
sprockets-rails (3.4.2)
|
|
||||||
actionpack (>= 5.2)
|
|
||||||
activesupport (>= 5.2)
|
|
||||||
sprockets (>= 3.0.0)
|
|
||||||
sync (0.5.0)
|
|
||||||
sysexits (1.2.0)
|
|
||||||
temple (0.8.2)
|
|
||||||
term-ansicolor (1.7.1)
|
|
||||||
tins (~> 1.0)
|
|
||||||
test-unit (3.5.3)
|
|
||||||
power_assert
|
|
||||||
thinking-sphinx (5.4.0)
|
|
||||||
activerecord (>= 4.2.0)
|
|
||||||
builder (>= 2.1.2)
|
|
||||||
innertube (>= 1.0.2)
|
|
||||||
joiner (>= 0.3.4)
|
|
||||||
middleware (>= 0.1.0)
|
|
||||||
riddle (~> 2.3)
|
|
||||||
thor (1.2.1)
|
|
||||||
thread_safe (0.3.6)
|
|
||||||
tilt (2.0.10)
|
|
||||||
timecop (0.9.5)
|
|
||||||
tins (1.31.0)
|
|
||||||
sync
|
|
||||||
tzinfo (1.2.9)
|
|
||||||
thread_safe (~> 0.1)
|
|
||||||
uglifier (4.2.0)
|
|
||||||
execjs (>= 0.3.0, < 3)
|
|
||||||
unf (0.1.4)
|
|
||||||
unf_ext
|
|
||||||
unf_ext (0.0.8.1)
|
|
||||||
unicode-display_width (2.1.0)
|
|
||||||
uniform_notifier (1.14.2)
|
|
||||||
vcr (6.1.0)
|
|
||||||
voight_kampff (1.1.4)
|
|
||||||
rack (>= 1.4, < 3.0)
|
|
||||||
webmock (3.14.0)
|
|
||||||
addressable (>= 2.8.0)
|
|
||||||
crack (>= 0.3.2)
|
|
||||||
hashdiff (>= 0.4.0, < 2.0.0)
|
|
||||||
webrick (1.7.0)
|
|
||||||
websocket-driver (0.7.5)
|
|
||||||
websocket-extensions (>= 0.1.0)
|
|
||||||
websocket-extensions (0.1.5)
|
|
||||||
xmlhash (1.3.8)
|
|
||||||
pkg-config
|
|
||||||
xmlrpc (0.3.2)
|
|
||||||
webrick
|
|
||||||
xpath (3.2.0)
|
|
||||||
nokogiri (~> 1.8)
|
|
||||||
yajl-ruby (1.4.2)
|
|
||||||
zeitwerk (2.5.4)
|
|
||||||
|
|
||||||
PLATFORMS
|
|
||||||
aarch64-linux
|
|
||||||
|
|
||||||
DEPENDENCIES
|
|
||||||
activemodel-serializers-xml
|
|
||||||
acts_as_list
|
|
||||||
acts_as_tree
|
|
||||||
addressable
|
|
||||||
airbrake
|
|
||||||
airbrake-ruby
|
|
||||||
ajax-datatables-rails
|
|
||||||
bcrypt
|
|
||||||
bootstrap
|
|
||||||
builder
|
|
||||||
bullet
|
|
||||||
bunny
|
|
||||||
bunny-mock
|
|
||||||
capybara
|
|
||||||
capybara_minitest_spec
|
|
||||||
chunky_png
|
|
||||||
clockwork (>= 0.7)
|
|
||||||
cocoon
|
|
||||||
codecov
|
|
||||||
codemirror-rails
|
|
||||||
coffee-rails
|
|
||||||
colorize
|
|
||||||
coveralls
|
|
||||||
cssmin (>= 1.0.2)
|
|
||||||
daemons
|
|
||||||
dalli
|
|
||||||
data_migrate
|
|
||||||
database_cleaner (>= 1.0.1)
|
|
||||||
deep_cloneable (~> 2.4.0)
|
|
||||||
delayed_job_active_record (>= 4.0.0)
|
|
||||||
escape_utils
|
|
||||||
experimental-influxdb-rails (>= 1.0.0.beta5)
|
|
||||||
factory_bot_rails
|
|
||||||
faker
|
|
||||||
feature
|
|
||||||
flot-rails
|
|
||||||
font-awesome-sass
|
|
||||||
gssapi
|
|
||||||
haml
|
|
||||||
haml-rails
|
|
||||||
haml_lint
|
|
||||||
jquery-datatables
|
|
||||||
jquery-rails
|
|
||||||
jquery-ui-rails (~> 4.2.1)
|
|
||||||
kaminari
|
|
||||||
launchy
|
|
||||||
lograge
|
|
||||||
minitest
|
|
||||||
minitest-ci
|
|
||||||
minitest-fail-fast
|
|
||||||
minitest-reporters
|
|
||||||
mocha (> 0.13.0)
|
|
||||||
momentjs-rails
|
|
||||||
mousetrap-rails
|
|
||||||
mysql2
|
|
||||||
nokogiri
|
|
||||||
peek
|
|
||||||
peek-dalli
|
|
||||||
peek-host
|
|
||||||
peek-mysql2
|
|
||||||
pry (>= 0.9.12)
|
|
||||||
pry-byebug
|
|
||||||
puma (~> 4.0)
|
|
||||||
pundit
|
|
||||||
rails (~> 5.2)
|
|
||||||
rails-controller-testing
|
|
||||||
rails-timeago (~> 2.0)
|
|
||||||
rails_tokeninput (>= 1.6.1.rc1)
|
|
||||||
rantly
|
|
||||||
rdoc
|
|
||||||
redcarpet
|
|
||||||
responders (~> 3.0)
|
|
||||||
rspec
|
|
||||||
rspec-rails
|
|
||||||
rspec_junit_formatter
|
|
||||||
rubocop
|
|
||||||
rubocop-performance
|
|
||||||
rubocop-rails
|
|
||||||
rubocop-rspec
|
|
||||||
ruby-ldap
|
|
||||||
sanitize
|
|
||||||
sassc-rails
|
|
||||||
selenium-webdriver
|
|
||||||
shoulda-matchers (~> 4.0)
|
|
||||||
simplecov
|
|
||||||
single_test
|
|
||||||
sprite-factory (>= 1.5.2)
|
|
||||||
test-unit
|
|
||||||
thinking-sphinx (> 3.1)
|
|
||||||
tilt (>= 1.4.1)
|
|
||||||
timecop
|
|
||||||
uglifier (>= 1.2.2)
|
|
||||||
vcr
|
|
||||||
voight_kampff
|
|
||||||
webmock (>= 2.3.0)
|
|
||||||
xmlhash (>= 1.3.6)
|
|
||||||
xmlrpc
|
|
||||||
yajl-ruby
|
|
||||||
|
|
||||||
BUNDLED WITH
|
|
||||||
2.4.10
|
|
||||||
@ -1,588 +0,0 @@
|
|||||||
GEM
|
|
||||||
remote: https://anonymous:devcloud@mirrors.huaweicloud.com/repository/rubygems/
|
|
||||||
specs:
|
|
||||||
actioncable (5.2.7.1)
|
|
||||||
actionpack (= 5.2.7.1)
|
|
||||||
nio4r (~> 2.0)
|
|
||||||
websocket-driver (>= 0.6.1)
|
|
||||||
actionmailer (5.2.7.1)
|
|
||||||
actionpack (= 5.2.7.1)
|
|
||||||
actionview (= 5.2.7.1)
|
|
||||||
activejob (= 5.2.7.1)
|
|
||||||
mail (~> 2.5, >= 2.5.4)
|
|
||||||
rails-dom-testing (~> 2.0)
|
|
||||||
actionpack (5.2.7.1)
|
|
||||||
actionview (= 5.2.7.1)
|
|
||||||
activesupport (= 5.2.7.1)
|
|
||||||
rack (~> 2.0, >= 2.0.8)
|
|
||||||
rack-test (>= 0.6.3)
|
|
||||||
rails-dom-testing (~> 2.0)
|
|
||||||
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
|
||||||
actionview (5.2.7.1)
|
|
||||||
activesupport (= 5.2.7.1)
|
|
||||||
builder (~> 3.1)
|
|
||||||
erubi (~> 1.4)
|
|
||||||
rails-dom-testing (~> 2.0)
|
|
||||||
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
|
||||||
activejob (5.2.7.1)
|
|
||||||
activesupport (= 5.2.7.1)
|
|
||||||
globalid (>= 0.3.6)
|
|
||||||
activemodel (5.2.7.1)
|
|
||||||
activesupport (= 5.2.7.1)
|
|
||||||
activemodel-serializers-xml (1.0.2)
|
|
||||||
activemodel (> 5.x)
|
|
||||||
activesupport (> 5.x)
|
|
||||||
builder (~> 3.1)
|
|
||||||
activerecord (5.2.7.1)
|
|
||||||
activemodel (= 5.2.7.1)
|
|
||||||
activesupport (= 5.2.7.1)
|
|
||||||
arel (>= 9.0)
|
|
||||||
activestorage (5.2.7.1)
|
|
||||||
actionpack (= 5.2.7.1)
|
|
||||||
activerecord (= 5.2.7.1)
|
|
||||||
marcel (~> 1.0.0)
|
|
||||||
activesupport (5.2.7.1)
|
|
||||||
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
||||||
i18n (>= 0.7, < 2)
|
|
||||||
minitest (~> 5.1)
|
|
||||||
tzinfo (~> 1.1)
|
|
||||||
acts_as_list (1.0.4)
|
|
||||||
activerecord (>= 4.2)
|
|
||||||
acts_as_tree (2.9.1)
|
|
||||||
activerecord (>= 3.0.0)
|
|
||||||
addressable (2.8.0)
|
|
||||||
public_suffix (>= 2.0.2, < 5.0)
|
|
||||||
airbrake (13.0.0)
|
|
||||||
airbrake-ruby (~> 6.0)
|
|
||||||
airbrake-ruby (6.0.2)
|
|
||||||
rbtree3 (~> 0.5)
|
|
||||||
ajax-datatables-rails (1.3.1)
|
|
||||||
zeitwerk
|
|
||||||
amq-protocol (2.3.2)
|
|
||||||
ansi (1.5.0)
|
|
||||||
arel (9.0.0)
|
|
||||||
ast (2.4.2)
|
|
||||||
autoprefixer-rails (10.4.2.0)
|
|
||||||
execjs (~> 2)
|
|
||||||
bcrypt (3.1.17)
|
|
||||||
bootstrap (5.1.3)
|
|
||||||
autoprefixer-rails (>= 9.1.0)
|
|
||||||
popper_js (>= 2.9.3, < 3)
|
|
||||||
sassc-rails (>= 2.0.0)
|
|
||||||
builder (3.2.4)
|
|
||||||
bullet (7.0.1)
|
|
||||||
activesupport (>= 3.0.0)
|
|
||||||
uniform_notifier (~> 1.11)
|
|
||||||
bunny (2.19.0)
|
|
||||||
amq-protocol (~> 2.3, >= 2.3.1)
|
|
||||||
sorted_set (~> 1, >= 1.0.2)
|
|
||||||
bunny-mock (1.7.0)
|
|
||||||
bunny (>= 1.7)
|
|
||||||
byebug (11.1.3)
|
|
||||||
capybara (3.36.0)
|
|
||||||
addressable
|
|
||||||
matrix
|
|
||||||
mini_mime (>= 0.1.3)
|
|
||||||
nokogiri (~> 1.8)
|
|
||||||
rack (>= 1.6.0)
|
|
||||||
rack-test (>= 0.6.3)
|
|
||||||
regexp_parser (>= 1.5, < 3.0)
|
|
||||||
xpath (~> 3.2)
|
|
||||||
capybara_minitest_spec (1.0.7)
|
|
||||||
capybara (>= 2)
|
|
||||||
minitest (>= 4)
|
|
||||||
childprocess (4.1.0)
|
|
||||||
chunky_png (1.4.0)
|
|
||||||
clockwork (3.0.0)
|
|
||||||
activesupport
|
|
||||||
tzinfo
|
|
||||||
cocoon (1.2.15)
|
|
||||||
codecov (0.6.0)
|
|
||||||
simplecov (>= 0.15, < 0.22)
|
|
||||||
codemirror-rails (5.16.0)
|
|
||||||
railties (>= 3.0, < 6.0)
|
|
||||||
coderay (1.1.3)
|
|
||||||
coffee-rails (5.0.0)
|
|
||||||
coffee-script (>= 2.2.0)
|
|
||||||
railties (>= 5.2.0)
|
|
||||||
coffee-script (2.4.1)
|
|
||||||
coffee-script-source
|
|
||||||
execjs
|
|
||||||
coffee-script-source (1.12.2)
|
|
||||||
colorize (0.8.1)
|
|
||||||
concurrent-ruby (1.1.9)
|
|
||||||
concurrent-ruby-ext (1.1.9)
|
|
||||||
concurrent-ruby (= 1.1.9)
|
|
||||||
coveralls (0.7.1)
|
|
||||||
multi_json (~> 1.3)
|
|
||||||
rest-client
|
|
||||||
simplecov (>= 0.7)
|
|
||||||
term-ansicolor
|
|
||||||
thor
|
|
||||||
crack (0.4.5)
|
|
||||||
rexml
|
|
||||||
crass (1.0.6)
|
|
||||||
cssmin (1.0.3)
|
|
||||||
daemons (1.4.1)
|
|
||||||
dalli (3.2.1)
|
|
||||||
data_migrate (8.0.0)
|
|
||||||
activerecord (>= 5.0)
|
|
||||||
railties (>= 5.0)
|
|
||||||
database_cleaner (2.0.1)
|
|
||||||
database_cleaner-active_record (~> 2.0.0)
|
|
||||||
database_cleaner-active_record (2.0.1)
|
|
||||||
activerecord (>= 5.a)
|
|
||||||
database_cleaner-core (~> 2.0.0)
|
|
||||||
database_cleaner-core (2.0.1)
|
|
||||||
deep_cloneable (2.4.0)
|
|
||||||
activerecord (>= 3.1.0, < 6)
|
|
||||||
delayed_job (4.1.10)
|
|
||||||
activesupport (>= 3.0, < 8.0)
|
|
||||||
delayed_job_active_record (4.1.7)
|
|
||||||
activerecord (>= 3.0, < 8.0)
|
|
||||||
delayed_job (>= 3.0, < 5)
|
|
||||||
diff-lcs (1.5.0)
|
|
||||||
docile (1.4.0)
|
|
||||||
domain_name (0.5.20190701)
|
|
||||||
unf (>= 0.0.5, < 1.0.0)
|
|
||||||
erubi (1.10.0)
|
|
||||||
erubis (2.7.0)
|
|
||||||
escape_utils (1.2.1)
|
|
||||||
execjs (2.8.1)
|
|
||||||
experimental-influxdb-rails (1.0.0.beta5)
|
|
||||||
influxdb (~> 0.6, >= 0.6.4)
|
|
||||||
railties (>= 4.2)
|
|
||||||
factory_bot (6.2.0)
|
|
||||||
activesupport (>= 5.0.0)
|
|
||||||
factory_bot_rails (6.2.0)
|
|
||||||
factory_bot (~> 6.2.0)
|
|
||||||
railties (>= 5.0.0)
|
|
||||||
faker (2.20.0)
|
|
||||||
i18n (>= 1.8.11, < 2)
|
|
||||||
feature (1.4.0)
|
|
||||||
ffi (1.15.5)
|
|
||||||
flot-rails (0.0.7)
|
|
||||||
jquery-rails
|
|
||||||
font-awesome-sass (6.1.0)
|
|
||||||
sassc (>= 2.0)
|
|
||||||
globalid (1.0.0)
|
|
||||||
activesupport (>= 5.0)
|
|
||||||
gssapi (1.3.1)
|
|
||||||
ffi (>= 1.0.1)
|
|
||||||
haml (5.2.2)
|
|
||||||
temple (>= 0.8.0)
|
|
||||||
tilt
|
|
||||||
haml-rails (2.0.1)
|
|
||||||
actionpack (>= 5.1)
|
|
||||||
activesupport (>= 5.1)
|
|
||||||
haml (>= 4.0.6, < 6.0)
|
|
||||||
html2haml (>= 1.0.1)
|
|
||||||
railties (>= 5.1)
|
|
||||||
haml_lint (0.40.0)
|
|
||||||
haml (>= 4.0, < 5.3)
|
|
||||||
parallel (~> 1.10)
|
|
||||||
rainbow
|
|
||||||
rubocop (>= 0.50.0)
|
|
||||||
sysexits (~> 1.1)
|
|
||||||
hashdiff (1.0.1)
|
|
||||||
html2haml (2.2.0)
|
|
||||||
erubis (~> 2.7.0)
|
|
||||||
haml (>= 4.0, < 6)
|
|
||||||
nokogiri (>= 1.6.0)
|
|
||||||
ruby_parser (~> 3.5)
|
|
||||||
http-accept (1.7.0)
|
|
||||||
http-cookie (1.0.4)
|
|
||||||
domain_name (~> 0.5)
|
|
||||||
i18n (1.10.0)
|
|
||||||
concurrent-ruby (~> 1.0)
|
|
||||||
influxdb (0.8.1)
|
|
||||||
innertube (1.1.0)
|
|
||||||
joiner (0.4.2)
|
|
||||||
activerecord (>= 5.2.beta1)
|
|
||||||
jquery-datatables (1.10.20)
|
|
||||||
jquery-rails (4.4.0)
|
|
||||||
rails-dom-testing (>= 1, < 3)
|
|
||||||
railties (>= 4.2.0)
|
|
||||||
thor (>= 0.14, < 2.0)
|
|
||||||
jquery-ui-rails (4.2.1)
|
|
||||||
railties (>= 3.2.16)
|
|
||||||
kaminari (1.2.2)
|
|
||||||
activesupport (>= 4.1.0)
|
|
||||||
kaminari-actionview (= 1.2.2)
|
|
||||||
kaminari-activerecord (= 1.2.2)
|
|
||||||
kaminari-core (= 1.2.2)
|
|
||||||
kaminari-actionview (1.2.2)
|
|
||||||
actionview
|
|
||||||
kaminari-core (= 1.2.2)
|
|
||||||
kaminari-activerecord (1.2.2)
|
|
||||||
activerecord
|
|
||||||
kaminari-core (= 1.2.2)
|
|
||||||
kaminari-core (1.2.2)
|
|
||||||
launchy (2.5.0)
|
|
||||||
addressable (~> 2.7)
|
|
||||||
lograge (0.11.2)
|
|
||||||
actionpack (>= 4)
|
|
||||||
activesupport (>= 4)
|
|
||||||
railties (>= 4)
|
|
||||||
request_store (~> 1.0)
|
|
||||||
loofah (2.15.0)
|
|
||||||
crass (~> 1.0.2)
|
|
||||||
nokogiri (>= 1.5.9)
|
|
||||||
mail (2.7.1)
|
|
||||||
mini_mime (>= 0.1.1)
|
|
||||||
marcel (1.0.2)
|
|
||||||
matrix (0.4.2)
|
|
||||||
method_source (1.0.0)
|
|
||||||
middleware (0.1.0)
|
|
||||||
mime-types (3.4.1)
|
|
||||||
mime-types-data (~> 3.2015)
|
|
||||||
mime-types-data (3.2022.0105)
|
|
||||||
mini_mime (1.1.2)
|
|
||||||
minitest (5.15.0)
|
|
||||||
minitest-ci (3.4.0)
|
|
||||||
minitest (>= 5.0.6)
|
|
||||||
minitest-fail-fast (0.1.0)
|
|
||||||
minitest (~> 5)
|
|
||||||
minitest-reporters (1.5.0)
|
|
||||||
ansi
|
|
||||||
builder
|
|
||||||
minitest (>= 5.0)
|
|
||||||
ruby-progressbar
|
|
||||||
mocha (1.13.0)
|
|
||||||
momentjs-rails (2.29.1.1)
|
|
||||||
railties (>= 3.1)
|
|
||||||
mousetrap-rails (1.4.6)
|
|
||||||
multi_json (1.15.0)
|
|
||||||
mysql2 (0.5.3)
|
|
||||||
netrc (0.11.0)
|
|
||||||
nio4r (2.5.8)
|
|
||||||
nokogiri (1.13.4)
|
|
||||||
racc (~> 1.4)
|
|
||||||
parallel (1.21.0)
|
|
||||||
parser (3.1.1.0)
|
|
||||||
ast (~> 2.4.1)
|
|
||||||
peek (1.1.0)
|
|
||||||
railties (>= 4.0.0)
|
|
||||||
peek-dalli (1.2.0)
|
|
||||||
concurrent-ruby
|
|
||||||
concurrent-ruby-ext
|
|
||||||
dalli
|
|
||||||
peek
|
|
||||||
peek-host (1.0.0)
|
|
||||||
peek
|
|
||||||
peek-mysql2 (1.2.0)
|
|
||||||
concurrent-ruby
|
|
||||||
concurrent-ruby-ext
|
|
||||||
mysql2
|
|
||||||
peek
|
|
||||||
pkg-config (1.4.7)
|
|
||||||
popper_js (2.9.3)
|
|
||||||
power_assert (2.0.1)
|
|
||||||
pry (0.13.1)
|
|
||||||
coderay (~> 1.1)
|
|
||||||
method_source (~> 1.0)
|
|
||||||
pry-byebug (3.9.0)
|
|
||||||
byebug (~> 11.0)
|
|
||||||
pry (~> 0.13.0)
|
|
||||||
public_suffix (4.0.6)
|
|
||||||
puma (4.3.11)
|
|
||||||
nio4r (~> 2.0)
|
|
||||||
pundit (2.2.0)
|
|
||||||
activesupport (>= 3.0.0)
|
|
||||||
racc (1.6.0)
|
|
||||||
rack (2.2.3)
|
|
||||||
rack-test (1.1.0)
|
|
||||||
rack (>= 1.0, < 3)
|
|
||||||
rails (5.2.7.1)
|
|
||||||
actioncable (= 5.2.7.1)
|
|
||||||
actionmailer (= 5.2.7.1)
|
|
||||||
actionpack (= 5.2.7.1)
|
|
||||||
actionview (= 5.2.7.1)
|
|
||||||
activejob (= 5.2.7.1)
|
|
||||||
activemodel (= 5.2.7.1)
|
|
||||||
activerecord (= 5.2.7.1)
|
|
||||||
activestorage (= 5.2.7.1)
|
|
||||||
activesupport (= 5.2.7.1)
|
|
||||||
bundler (>= 1.3.0)
|
|
||||||
railties (= 5.2.7.1)
|
|
||||||
sprockets-rails (>= 2.0.0)
|
|
||||||
rails-controller-testing (1.0.5)
|
|
||||||
actionpack (>= 5.0.1.rc1)
|
|
||||||
actionview (>= 5.0.1.rc1)
|
|
||||||
activesupport (>= 5.0.1.rc1)
|
|
||||||
rails-dom-testing (2.0.3)
|
|
||||||
activesupport (>= 4.2.0)
|
|
||||||
nokogiri (>= 1.6)
|
|
||||||
rails-html-sanitizer (1.4.2)
|
|
||||||
loofah (~> 2.3)
|
|
||||||
rails-timeago (2.20.0)
|
|
||||||
actionpack (>= 5.2)
|
|
||||||
activesupport (>= 5.2)
|
|
||||||
rails_tokeninput (1.7.0)
|
|
||||||
railties (>= 3.1.0)
|
|
||||||
railties (5.2.7.1)
|
|
||||||
actionpack (= 5.2.7.1)
|
|
||||||
activesupport (= 5.2.7.1)
|
|
||||||
method_source
|
|
||||||
rake (>= 0.8.7)
|
|
||||||
thor (>= 0.19.0, < 2.0)
|
|
||||||
rainbow (3.1.1)
|
|
||||||
rake (13.0.6)
|
|
||||||
rantly (2.0.0)
|
|
||||||
rbtree (0.4.5)
|
|
||||||
rbtree3 (0.7.0)
|
|
||||||
rdoc (6.3.3)
|
|
||||||
redcarpet (3.5.1)
|
|
||||||
regexp_parser (2.2.1)
|
|
||||||
request_store (1.5.1)
|
|
||||||
rack (>= 1.4)
|
|
||||||
responders (3.0.1)
|
|
||||||
actionpack (>= 5.0)
|
|
||||||
railties (>= 5.0)
|
|
||||||
rest-client (2.1.0)
|
|
||||||
http-accept (>= 1.7.0, < 2.0)
|
|
||||||
http-cookie (>= 1.0.2, < 2.0)
|
|
||||||
mime-types (>= 1.16, < 4.0)
|
|
||||||
netrc (~> 0.8)
|
|
||||||
rexml (3.2.5)
|
|
||||||
riddle (2.4.3)
|
|
||||||
rspec (3.11.0)
|
|
||||||
rspec-core (~> 3.11.0)
|
|
||||||
rspec-expectations (~> 3.11.0)
|
|
||||||
rspec-mocks (~> 3.11.0)
|
|
||||||
rspec-core (3.11.0)
|
|
||||||
rspec-support (~> 3.11.0)
|
|
||||||
rspec-expectations (3.11.0)
|
|
||||||
diff-lcs (>= 1.2.0, < 2.0)
|
|
||||||
rspec-support (~> 3.11.0)
|
|
||||||
rspec-mocks (3.11.0)
|
|
||||||
diff-lcs (>= 1.2.0, < 2.0)
|
|
||||||
rspec-support (~> 3.11.0)
|
|
||||||
rspec-rails (5.1.1)
|
|
||||||
actionpack (>= 5.2)
|
|
||||||
activesupport (>= 5.2)
|
|
||||||
railties (>= 5.2)
|
|
||||||
rspec-core (~> 3.10)
|
|
||||||
rspec-expectations (~> 3.10)
|
|
||||||
rspec-mocks (~> 3.10)
|
|
||||||
rspec-support (~> 3.10)
|
|
||||||
rspec-support (3.11.0)
|
|
||||||
rspec_junit_formatter (0.5.1)
|
|
||||||
rspec-core (>= 2, < 4, != 2.12.0)
|
|
||||||
rubocop (1.26.0)
|
|
||||||
parallel (~> 1.10)
|
|
||||||
parser (>= 3.1.0.0)
|
|
||||||
rainbow (>= 2.2.2, < 4.0)
|
|
||||||
regexp_parser (>= 1.8, < 3.0)
|
|
||||||
rexml
|
|
||||||
rubocop-ast (>= 1.16.0, < 2.0)
|
|
||||||
ruby-progressbar (~> 1.7)
|
|
||||||
unicode-display_width (>= 1.4.0, < 3.0)
|
|
||||||
rubocop-ast (1.16.0)
|
|
||||||
parser (>= 3.1.1.0)
|
|
||||||
rubocop-performance (1.13.3)
|
|
||||||
rubocop (>= 1.7.0, < 2.0)
|
|
||||||
rubocop-ast (>= 0.4.0)
|
|
||||||
rubocop-rails (2.14.2)
|
|
||||||
activesupport (>= 4.2.0)
|
|
||||||
rack (>= 1.1)
|
|
||||||
rubocop (>= 1.7.0, < 2.0)
|
|
||||||
rubocop-rspec (2.9.0)
|
|
||||||
rubocop (~> 1.19)
|
|
||||||
ruby-ldap (0.9.20)
|
|
||||||
ruby-progressbar (1.11.0)
|
|
||||||
ruby_parser (3.18.1)
|
|
||||||
sexp_processor (~> 4.16)
|
|
||||||
rubyzip (2.3.2)
|
|
||||||
sanitize (6.0.0)
|
|
||||||
crass (~> 1.0.2)
|
|
||||||
nokogiri (>= 1.12.0)
|
|
||||||
sassc (2.4.0)
|
|
||||||
ffi (~> 1.9)
|
|
||||||
sassc-rails (2.1.2)
|
|
||||||
railties (>= 4.0.0)
|
|
||||||
sassc (>= 2.0)
|
|
||||||
sprockets (> 3.0)
|
|
||||||
sprockets-rails
|
|
||||||
tilt
|
|
||||||
selenium-webdriver (4.1.0)
|
|
||||||
childprocess (>= 0.5, < 5.0)
|
|
||||||
rexml (~> 3.2, >= 3.2.5)
|
|
||||||
rubyzip (>= 1.2.2)
|
|
||||||
set (1.0.2)
|
|
||||||
sexp_processor (4.16.0)
|
|
||||||
shoulda-matchers (4.5.1)
|
|
||||||
activesupport (>= 4.2.0)
|
|
||||||
simplecov (0.21.2)
|
|
||||||
docile (~> 1.1)
|
|
||||||
simplecov-html (~> 0.11)
|
|
||||||
simplecov_json_formatter (~> 0.1)
|
|
||||||
simplecov-html (0.12.3)
|
|
||||||
simplecov_json_formatter (0.1.4)
|
|
||||||
single_test (0.6.0)
|
|
||||||
rake
|
|
||||||
sorted_set (1.0.3)
|
|
||||||
rbtree
|
|
||||||
set (~> 1.0)
|
|
||||||
sprite-factory (1.7.1)
|
|
||||||
sprockets (4.0.3)
|
|
||||||
concurrent-ruby (~> 1.0)
|
|
||||||
rack (> 1, < 3)
|
|
||||||
sprockets-rails (3.4.2)
|
|
||||||
actionpack (>= 5.2)
|
|
||||||
activesupport (>= 5.2)
|
|
||||||
sprockets (>= 3.0.0)
|
|
||||||
sync (0.5.0)
|
|
||||||
sysexits (1.2.0)
|
|
||||||
temple (0.8.2)
|
|
||||||
term-ansicolor (1.7.1)
|
|
||||||
tins (~> 1.0)
|
|
||||||
test-unit (3.5.3)
|
|
||||||
power_assert
|
|
||||||
thinking-sphinx (5.4.0)
|
|
||||||
activerecord (>= 4.2.0)
|
|
||||||
builder (>= 2.1.2)
|
|
||||||
innertube (>= 1.0.2)
|
|
||||||
joiner (>= 0.3.4)
|
|
||||||
middleware (>= 0.1.0)
|
|
||||||
riddle (~> 2.3)
|
|
||||||
thor (1.2.1)
|
|
||||||
thread_safe (0.3.6)
|
|
||||||
tilt (2.0.10)
|
|
||||||
timecop (0.9.5)
|
|
||||||
tins (1.31.0)
|
|
||||||
sync
|
|
||||||
tzinfo (1.2.9)
|
|
||||||
thread_safe (~> 0.1)
|
|
||||||
uglifier (4.2.0)
|
|
||||||
execjs (>= 0.3.0, < 3)
|
|
||||||
unf (0.1.4)
|
|
||||||
unf_ext
|
|
||||||
unf_ext (0.0.8.1)
|
|
||||||
unicode-display_width (2.1.0)
|
|
||||||
uniform_notifier (1.14.2)
|
|
||||||
vcr (6.1.0)
|
|
||||||
voight_kampff (1.1.4)
|
|
||||||
rack (>= 1.4, < 3.0)
|
|
||||||
webmock (3.14.0)
|
|
||||||
addressable (>= 2.8.0)
|
|
||||||
crack (>= 0.3.2)
|
|
||||||
hashdiff (>= 0.4.0, < 2.0.0)
|
|
||||||
webrick (1.7.0)
|
|
||||||
websocket-driver (0.7.5)
|
|
||||||
websocket-extensions (>= 0.1.0)
|
|
||||||
websocket-extensions (0.1.5)
|
|
||||||
xmlhash (1.3.8)
|
|
||||||
pkg-config
|
|
||||||
xmlrpc (0.3.2)
|
|
||||||
webrick
|
|
||||||
xpath (3.2.0)
|
|
||||||
nokogiri (~> 1.8)
|
|
||||||
yajl-ruby (1.4.2)
|
|
||||||
zeitwerk (2.5.4)
|
|
||||||
|
|
||||||
PLATFORMS
|
|
||||||
ruby
|
|
||||||
|
|
||||||
DEPENDENCIES
|
|
||||||
activemodel-serializers-xml
|
|
||||||
acts_as_list
|
|
||||||
acts_as_tree
|
|
||||||
addressable
|
|
||||||
airbrake
|
|
||||||
airbrake-ruby
|
|
||||||
ajax-datatables-rails
|
|
||||||
bcrypt
|
|
||||||
bootstrap
|
|
||||||
builder
|
|
||||||
bullet
|
|
||||||
bunny
|
|
||||||
bunny-mock
|
|
||||||
capybara
|
|
||||||
capybara_minitest_spec
|
|
||||||
chunky_png
|
|
||||||
clockwork (>= 0.7)
|
|
||||||
cocoon
|
|
||||||
codecov
|
|
||||||
codemirror-rails
|
|
||||||
coffee-rails
|
|
||||||
colorize
|
|
||||||
coveralls
|
|
||||||
cssmin (>= 1.0.2)
|
|
||||||
daemons
|
|
||||||
dalli
|
|
||||||
data_migrate
|
|
||||||
database_cleaner (>= 1.0.1)
|
|
||||||
deep_cloneable (~> 2.4.0)
|
|
||||||
delayed_job_active_record (>= 4.0.0)
|
|
||||||
escape_utils
|
|
||||||
experimental-influxdb-rails (>= 1.0.0.beta5)
|
|
||||||
factory_bot_rails
|
|
||||||
faker
|
|
||||||
feature
|
|
||||||
flot-rails
|
|
||||||
font-awesome-sass
|
|
||||||
gssapi
|
|
||||||
haml
|
|
||||||
haml-rails
|
|
||||||
haml_lint
|
|
||||||
jquery-datatables
|
|
||||||
jquery-rails
|
|
||||||
jquery-ui-rails (~> 4.2.1)
|
|
||||||
kaminari
|
|
||||||
launchy
|
|
||||||
lograge
|
|
||||||
minitest
|
|
||||||
minitest-ci
|
|
||||||
minitest-fail-fast
|
|
||||||
minitest-reporters
|
|
||||||
mocha (> 0.13.0)
|
|
||||||
momentjs-rails
|
|
||||||
mousetrap-rails
|
|
||||||
mysql2
|
|
||||||
nokogiri
|
|
||||||
peek
|
|
||||||
peek-dalli
|
|
||||||
peek-host
|
|
||||||
peek-mysql2
|
|
||||||
pry (>= 0.9.12)
|
|
||||||
pry-byebug
|
|
||||||
puma (~> 4.0)
|
|
||||||
pundit
|
|
||||||
rails (~> 5.2)
|
|
||||||
rails-controller-testing
|
|
||||||
rails-timeago (~> 2.0)
|
|
||||||
rails_tokeninput (>= 1.6.1.rc1)
|
|
||||||
rantly
|
|
||||||
rdoc
|
|
||||||
redcarpet
|
|
||||||
responders (~> 3.0)
|
|
||||||
rspec
|
|
||||||
rspec-rails
|
|
||||||
rspec_junit_formatter
|
|
||||||
rubocop
|
|
||||||
rubocop-performance
|
|
||||||
rubocop-rails
|
|
||||||
rubocop-rspec
|
|
||||||
ruby-ldap
|
|
||||||
sanitize
|
|
||||||
sassc-rails
|
|
||||||
selenium-webdriver
|
|
||||||
shoulda-matchers (~> 4.0)
|
|
||||||
simplecov
|
|
||||||
single_test
|
|
||||||
sprite-factory (>= 1.5.2)
|
|
||||||
test-unit
|
|
||||||
thinking-sphinx (> 3.1)
|
|
||||||
tilt (>= 1.4.1)
|
|
||||||
timecop
|
|
||||||
uglifier (>= 1.2.2)
|
|
||||||
vcr
|
|
||||||
voight_kampff
|
|
||||||
webmock (>= 2.3.0)
|
|
||||||
xmlhash (>= 1.3.6)
|
|
||||||
xmlrpc
|
|
||||||
yajl-ruby
|
|
||||||
|
|
||||||
BUNDLED WITH
|
|
||||||
2.4.10
|
|
||||||
@ -1,589 +0,0 @@
|
|||||||
GEM
|
|
||||||
remote: https://anonymous:devcloud@mirrors.huaweicloud.com/repository/rubygems/
|
|
||||||
specs:
|
|
||||||
actioncable (5.2.7.1)
|
|
||||||
actionpack (= 5.2.7.1)
|
|
||||||
nio4r (~> 2.0)
|
|
||||||
websocket-driver (>= 0.6.1)
|
|
||||||
actionmailer (5.2.7.1)
|
|
||||||
actionpack (= 5.2.7.1)
|
|
||||||
actionview (= 5.2.7.1)
|
|
||||||
activejob (= 5.2.7.1)
|
|
||||||
mail (~> 2.5, >= 2.5.4)
|
|
||||||
rails-dom-testing (~> 2.0)
|
|
||||||
actionpack (5.2.7.1)
|
|
||||||
actionview (= 5.2.7.1)
|
|
||||||
activesupport (= 5.2.7.1)
|
|
||||||
rack (~> 2.0, >= 2.0.8)
|
|
||||||
rack-test (>= 0.6.3)
|
|
||||||
rails-dom-testing (~> 2.0)
|
|
||||||
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
|
||||||
actionview (5.2.7.1)
|
|
||||||
activesupport (= 5.2.7.1)
|
|
||||||
builder (~> 3.1)
|
|
||||||
erubi (~> 1.4)
|
|
||||||
rails-dom-testing (~> 2.0)
|
|
||||||
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
|
||||||
activejob (5.2.7.1)
|
|
||||||
activesupport (= 5.2.7.1)
|
|
||||||
globalid (>= 0.3.6)
|
|
||||||
activemodel (5.2.7.1)
|
|
||||||
activesupport (= 5.2.7.1)
|
|
||||||
activemodel-serializers-xml (1.0.2)
|
|
||||||
activemodel (> 5.x)
|
|
||||||
activesupport (> 5.x)
|
|
||||||
builder (~> 3.1)
|
|
||||||
activerecord (5.2.7.1)
|
|
||||||
activemodel (= 5.2.7.1)
|
|
||||||
activesupport (= 5.2.7.1)
|
|
||||||
arel (>= 9.0)
|
|
||||||
activestorage (5.2.7.1)
|
|
||||||
actionpack (= 5.2.7.1)
|
|
||||||
activerecord (= 5.2.7.1)
|
|
||||||
marcel (~> 1.0.0)
|
|
||||||
activesupport (5.2.7.1)
|
|
||||||
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
||||||
i18n (>= 0.7, < 2)
|
|
||||||
minitest (~> 5.1)
|
|
||||||
tzinfo (~> 1.1)
|
|
||||||
acts_as_list (1.0.4)
|
|
||||||
activerecord (>= 4.2)
|
|
||||||
acts_as_tree (2.9.1)
|
|
||||||
activerecord (>= 3.0.0)
|
|
||||||
addressable (2.8.0)
|
|
||||||
public_suffix (>= 2.0.2, < 5.0)
|
|
||||||
airbrake (13.0.0)
|
|
||||||
airbrake-ruby (~> 6.0)
|
|
||||||
airbrake-ruby (6.0.2)
|
|
||||||
rbtree3 (~> 0.5)
|
|
||||||
ajax-datatables-rails (1.3.1)
|
|
||||||
zeitwerk
|
|
||||||
amq-protocol (2.3.2)
|
|
||||||
ansi (1.5.0)
|
|
||||||
arel (9.0.0)
|
|
||||||
ast (2.4.2)
|
|
||||||
autoprefixer-rails (10.4.2.0)
|
|
||||||
execjs (~> 2)
|
|
||||||
bcrypt (3.1.17)
|
|
||||||
bootstrap (5.1.3)
|
|
||||||
autoprefixer-rails (>= 9.1.0)
|
|
||||||
popper_js (>= 2.9.3, < 3)
|
|
||||||
sassc-rails (>= 2.0.0)
|
|
||||||
builder (3.2.4)
|
|
||||||
bullet (7.0.1)
|
|
||||||
activesupport (>= 3.0.0)
|
|
||||||
uniform_notifier (~> 1.11)
|
|
||||||
bunny (2.19.0)
|
|
||||||
amq-protocol (~> 2.3, >= 2.3.1)
|
|
||||||
sorted_set (~> 1, >= 1.0.2)
|
|
||||||
bunny-mock (1.7.0)
|
|
||||||
bunny (>= 1.7)
|
|
||||||
byebug (11.1.3)
|
|
||||||
capybara (3.36.0)
|
|
||||||
addressable
|
|
||||||
matrix
|
|
||||||
mini_mime (>= 0.1.3)
|
|
||||||
nokogiri (~> 1.8)
|
|
||||||
rack (>= 1.6.0)
|
|
||||||
rack-test (>= 0.6.3)
|
|
||||||
regexp_parser (>= 1.5, < 3.0)
|
|
||||||
xpath (~> 3.2)
|
|
||||||
capybara_minitest_spec (1.0.7)
|
|
||||||
capybara (>= 2)
|
|
||||||
minitest (>= 4)
|
|
||||||
childprocess (4.1.0)
|
|
||||||
chunky_png (1.4.0)
|
|
||||||
clockwork (3.0.0)
|
|
||||||
activesupport
|
|
||||||
tzinfo
|
|
||||||
cocoon (1.2.15)
|
|
||||||
codecov (0.6.0)
|
|
||||||
simplecov (>= 0.15, < 0.22)
|
|
||||||
codemirror-rails (5.16.0)
|
|
||||||
railties (>= 3.0, < 6.0)
|
|
||||||
coderay (1.1.3)
|
|
||||||
coffee-rails (5.0.0)
|
|
||||||
coffee-script (>= 2.2.0)
|
|
||||||
railties (>= 5.2.0)
|
|
||||||
coffee-script (2.4.1)
|
|
||||||
coffee-script-source
|
|
||||||
execjs
|
|
||||||
coffee-script-source (1.12.2)
|
|
||||||
colorize (0.8.1)
|
|
||||||
concurrent-ruby (1.1.9)
|
|
||||||
concurrent-ruby-ext (1.1.9)
|
|
||||||
concurrent-ruby (= 1.1.9)
|
|
||||||
coveralls (0.7.1)
|
|
||||||
multi_json (~> 1.3)
|
|
||||||
rest-client
|
|
||||||
simplecov (>= 0.7)
|
|
||||||
term-ansicolor
|
|
||||||
thor
|
|
||||||
crack (0.4.5)
|
|
||||||
rexml
|
|
||||||
crass (1.0.6)
|
|
||||||
cssmin (1.0.3)
|
|
||||||
daemons (1.4.1)
|
|
||||||
dalli (3.2.1)
|
|
||||||
data_migrate (8.0.0)
|
|
||||||
activerecord (>= 5.0)
|
|
||||||
railties (>= 5.0)
|
|
||||||
database_cleaner (2.0.1)
|
|
||||||
database_cleaner-active_record (~> 2.0.0)
|
|
||||||
database_cleaner-active_record (2.0.1)
|
|
||||||
activerecord (>= 5.a)
|
|
||||||
database_cleaner-core (~> 2.0.0)
|
|
||||||
database_cleaner-core (2.0.1)
|
|
||||||
deep_cloneable (2.4.0)
|
|
||||||
activerecord (>= 3.1.0, < 6)
|
|
||||||
delayed_job (4.1.10)
|
|
||||||
activesupport (>= 3.0, < 8.0)
|
|
||||||
delayed_job_active_record (4.1.7)
|
|
||||||
activerecord (>= 3.0, < 8.0)
|
|
||||||
delayed_job (>= 3.0, < 5)
|
|
||||||
diff-lcs (1.5.0)
|
|
||||||
docile (1.4.0)
|
|
||||||
domain_name (0.5.20190701)
|
|
||||||
unf (>= 0.0.5, < 1.0.0)
|
|
||||||
erubi (1.10.0)
|
|
||||||
erubis (2.7.0)
|
|
||||||
escape_utils (1.2.1)
|
|
||||||
execjs (2.8.1)
|
|
||||||
experimental-influxdb-rails (1.0.0.beta5)
|
|
||||||
influxdb (~> 0.6, >= 0.6.4)
|
|
||||||
railties (>= 4.2)
|
|
||||||
factory_bot (6.2.1)
|
|
||||||
activesupport (>= 5.0.0)
|
|
||||||
factory_bot_rails (6.2.0)
|
|
||||||
factory_bot (~> 6.2.0)
|
|
||||||
railties (>= 5.0.0)
|
|
||||||
faker (2.20.0)
|
|
||||||
i18n (>= 1.8.11, < 2)
|
|
||||||
feature (1.4.0)
|
|
||||||
ffi (1.15.5)
|
|
||||||
flot-rails (0.0.7)
|
|
||||||
jquery-rails
|
|
||||||
font-awesome-sass (6.1.0)
|
|
||||||
sassc (>= 2.0)
|
|
||||||
globalid (1.0.0)
|
|
||||||
activesupport (>= 5.0)
|
|
||||||
gssapi (1.3.1)
|
|
||||||
ffi (>= 1.0.1)
|
|
||||||
haml (5.2.2)
|
|
||||||
temple (>= 0.8.0)
|
|
||||||
tilt
|
|
||||||
haml-rails (2.0.1)
|
|
||||||
actionpack (>= 5.1)
|
|
||||||
activesupport (>= 5.1)
|
|
||||||
haml (>= 4.0.6, < 6.0)
|
|
||||||
html2haml (>= 1.0.1)
|
|
||||||
railties (>= 5.1)
|
|
||||||
haml_lint (0.40.0)
|
|
||||||
haml (>= 4.0, < 5.3)
|
|
||||||
parallel (~> 1.10)
|
|
||||||
rainbow
|
|
||||||
rubocop (>= 0.50.0)
|
|
||||||
sysexits (~> 1.1)
|
|
||||||
hashdiff (1.0.1)
|
|
||||||
html2haml (2.2.0)
|
|
||||||
erubis (~> 2.7.0)
|
|
||||||
haml (>= 4.0, < 6)
|
|
||||||
nokogiri (>= 1.6.0)
|
|
||||||
ruby_parser (~> 3.5)
|
|
||||||
http-accept (1.7.0)
|
|
||||||
http-cookie (1.0.4)
|
|
||||||
domain_name (~> 0.5)
|
|
||||||
i18n (1.10.0)
|
|
||||||
concurrent-ruby (~> 1.0)
|
|
||||||
influxdb (0.8.1)
|
|
||||||
innertube (1.1.0)
|
|
||||||
joiner (0.4.2)
|
|
||||||
activerecord (>= 5.2.beta1)
|
|
||||||
jquery-datatables (1.10.20)
|
|
||||||
jquery-rails (4.4.0)
|
|
||||||
rails-dom-testing (>= 1, < 3)
|
|
||||||
railties (>= 4.2.0)
|
|
||||||
thor (>= 0.14, < 2.0)
|
|
||||||
jquery-ui-rails (4.2.1)
|
|
||||||
railties (>= 3.2.16)
|
|
||||||
kaminari (1.2.2)
|
|
||||||
activesupport (>= 4.1.0)
|
|
||||||
kaminari-actionview (= 1.2.2)
|
|
||||||
kaminari-activerecord (= 1.2.2)
|
|
||||||
kaminari-core (= 1.2.2)
|
|
||||||
kaminari-actionview (1.2.2)
|
|
||||||
actionview
|
|
||||||
kaminari-core (= 1.2.2)
|
|
||||||
kaminari-activerecord (1.2.2)
|
|
||||||
activerecord
|
|
||||||
kaminari-core (= 1.2.2)
|
|
||||||
kaminari-core (1.2.2)
|
|
||||||
launchy (2.5.0)
|
|
||||||
addressable (~> 2.7)
|
|
||||||
lograge (0.11.2)
|
|
||||||
actionpack (>= 4)
|
|
||||||
activesupport (>= 4)
|
|
||||||
railties (>= 4)
|
|
||||||
request_store (~> 1.0)
|
|
||||||
loofah (2.15.0)
|
|
||||||
crass (~> 1.0.2)
|
|
||||||
nokogiri (>= 1.5.9)
|
|
||||||
mail (2.7.1)
|
|
||||||
mini_mime (>= 0.1.1)
|
|
||||||
marcel (1.0.2)
|
|
||||||
matrix (0.4.2)
|
|
||||||
method_source (1.0.0)
|
|
||||||
middleware (0.1.0)
|
|
||||||
mime-types (3.4.1)
|
|
||||||
mime-types-data (~> 3.2015)
|
|
||||||
mime-types-data (3.2022.0105)
|
|
||||||
mini_mime (1.1.2)
|
|
||||||
minitest (5.15.0)
|
|
||||||
minitest-ci (3.4.0)
|
|
||||||
minitest (>= 5.0.6)
|
|
||||||
minitest-fail-fast (0.1.0)
|
|
||||||
minitest (~> 5)
|
|
||||||
minitest-reporters (1.5.0)
|
|
||||||
ansi
|
|
||||||
builder
|
|
||||||
minitest (>= 5.0)
|
|
||||||
ruby-progressbar
|
|
||||||
mocha (1.13.0)
|
|
||||||
momentjs-rails (2.29.1.1)
|
|
||||||
railties (>= 3.1)
|
|
||||||
mousetrap-rails (1.4.6)
|
|
||||||
multi_json (1.15.0)
|
|
||||||
mysql2 (0.5.3)
|
|
||||||
netrc (0.11.0)
|
|
||||||
nio4r (2.5.8)
|
|
||||||
nokogiri (1.13.4)
|
|
||||||
racc (~> 1.4)
|
|
||||||
mini_portile2
|
|
||||||
parallel (1.21.0)
|
|
||||||
parser (3.1.1.0)
|
|
||||||
ast (~> 2.4.1)
|
|
||||||
peek (1.1.0)
|
|
||||||
railties (>= 4.0.0)
|
|
||||||
peek-dalli (1.2.0)
|
|
||||||
concurrent-ruby
|
|
||||||
concurrent-ruby-ext
|
|
||||||
dalli
|
|
||||||
peek
|
|
||||||
peek-host (1.0.0)
|
|
||||||
peek
|
|
||||||
peek-mysql2 (1.2.0)
|
|
||||||
concurrent-ruby
|
|
||||||
concurrent-ruby-ext
|
|
||||||
mysql2
|
|
||||||
peek
|
|
||||||
pkg-config (1.4.7)
|
|
||||||
popper_js (2.9.3)
|
|
||||||
power_assert (2.0.1)
|
|
||||||
pry (0.14.1)
|
|
||||||
coderay (~> 1.1)
|
|
||||||
method_source (~> 1.0)
|
|
||||||
pry-byebug (3.8.0)
|
|
||||||
byebug (~> 11.0)
|
|
||||||
pry (~> 0.10)
|
|
||||||
public_suffix (4.0.6)
|
|
||||||
puma (4.3.11)
|
|
||||||
nio4r (~> 2.0)
|
|
||||||
pundit (2.2.0)
|
|
||||||
activesupport (>= 3.0.0)
|
|
||||||
racc (1.6.0)
|
|
||||||
rack (2.2.3)
|
|
||||||
rack-test (1.1.0)
|
|
||||||
rack (>= 1.0, < 3)
|
|
||||||
rails (5.2.7.1)
|
|
||||||
actioncable (= 5.2.7.1)
|
|
||||||
actionmailer (= 5.2.7.1)
|
|
||||||
actionpack (= 5.2.7.1)
|
|
||||||
actionview (= 5.2.7.1)
|
|
||||||
activejob (= 5.2.7.1)
|
|
||||||
activemodel (= 5.2.7.1)
|
|
||||||
activerecord (= 5.2.7.1)
|
|
||||||
activestorage (= 5.2.7.1)
|
|
||||||
activesupport (= 5.2.7.1)
|
|
||||||
bundler (>= 1.3.0)
|
|
||||||
railties (= 5.2.7.1)
|
|
||||||
sprockets-rails (>= 2.0.0)
|
|
||||||
rails-controller-testing (1.0.5)
|
|
||||||
actionpack (>= 5.0.1.rc1)
|
|
||||||
actionview (>= 5.0.1.rc1)
|
|
||||||
activesupport (>= 5.0.1.rc1)
|
|
||||||
rails-dom-testing (2.0.3)
|
|
||||||
activesupport (>= 4.2.0)
|
|
||||||
nokogiri (>= 1.6)
|
|
||||||
rails-html-sanitizer (1.4.2)
|
|
||||||
loofah (~> 2.3)
|
|
||||||
rails-timeago (2.20.0)
|
|
||||||
actionpack (>= 5.2)
|
|
||||||
activesupport (>= 5.2)
|
|
||||||
rails_tokeninput (1.7.0)
|
|
||||||
railties (>= 3.1.0)
|
|
||||||
railties (5.2.7.1)
|
|
||||||
actionpack (= 5.2.7.1)
|
|
||||||
activesupport (= 5.2.7.1)
|
|
||||||
method_source
|
|
||||||
rake (>= 0.8.7)
|
|
||||||
thor (>= 0.19.0, < 2.0)
|
|
||||||
rainbow (3.1.1)
|
|
||||||
rake (13.0.6)
|
|
||||||
rantly (2.0.0)
|
|
||||||
rbtree (0.4.5)
|
|
||||||
rbtree3 (0.7.0)
|
|
||||||
rdoc (6.3.3)
|
|
||||||
redcarpet (3.5.1)
|
|
||||||
regexp_parser (2.2.1)
|
|
||||||
request_store (1.5.1)
|
|
||||||
rack (>= 1.4)
|
|
||||||
responders (3.0.1)
|
|
||||||
actionpack (>= 5.0)
|
|
||||||
railties (>= 5.0)
|
|
||||||
rest-client (2.1.0)
|
|
||||||
http-accept (>= 1.7.0, < 2.0)
|
|
||||||
http-cookie (>= 1.0.2, < 2.0)
|
|
||||||
mime-types (>= 1.16, < 4.0)
|
|
||||||
netrc (~> 0.8)
|
|
||||||
rexml (3.2.5)
|
|
||||||
riddle (2.4.3)
|
|
||||||
rspec (3.11.0)
|
|
||||||
rspec-core (~> 3.11.0)
|
|
||||||
rspec-expectations (~> 3.11.0)
|
|
||||||
rspec-mocks (~> 3.11.0)
|
|
||||||
rspec-core (3.11.0)
|
|
||||||
rspec-support (~> 3.11.0)
|
|
||||||
rspec-expectations (3.11.0)
|
|
||||||
diff-lcs (>= 1.2.0, < 2.0)
|
|
||||||
rspec-support (~> 3.11.0)
|
|
||||||
rspec-mocks (3.11.0)
|
|
||||||
diff-lcs (>= 1.2.0, < 2.0)
|
|
||||||
rspec-support (~> 3.11.0)
|
|
||||||
rspec-rails (5.1.1)
|
|
||||||
actionpack (>= 5.2)
|
|
||||||
activesupport (>= 5.2)
|
|
||||||
railties (>= 5.2)
|
|
||||||
rspec-core (~> 3.10)
|
|
||||||
rspec-expectations (~> 3.10)
|
|
||||||
rspec-mocks (~> 3.10)
|
|
||||||
rspec-support (~> 3.10)
|
|
||||||
rspec-support (3.11.0)
|
|
||||||
rspec_junit_formatter (0.5.1)
|
|
||||||
rspec-core (>= 2, < 4, != 2.12.0)
|
|
||||||
rubocop (1.26.0)
|
|
||||||
parallel (~> 1.10)
|
|
||||||
parser (>= 3.1.0.0)
|
|
||||||
rainbow (>= 2.2.2, < 4.0)
|
|
||||||
regexp_parser (>= 1.8, < 3.0)
|
|
||||||
rexml
|
|
||||||
rubocop-ast (>= 1.16.0, < 2.0)
|
|
||||||
ruby-progressbar (~> 1.7)
|
|
||||||
unicode-display_width (>= 1.4.0, < 3.0)
|
|
||||||
rubocop-ast (1.16.0)
|
|
||||||
parser (>= 3.1.1.0)
|
|
||||||
rubocop-performance (1.13.3)
|
|
||||||
rubocop (>= 1.7.0, < 2.0)
|
|
||||||
rubocop-ast (>= 0.4.0)
|
|
||||||
rubocop-rails (2.14.2)
|
|
||||||
activesupport (>= 4.2.0)
|
|
||||||
rack (>= 1.1)
|
|
||||||
rubocop (>= 1.7.0, < 2.0)
|
|
||||||
rubocop-rspec (2.9.0)
|
|
||||||
rubocop (~> 1.19)
|
|
||||||
ruby-ldap (0.9.20)
|
|
||||||
ruby-progressbar (1.11.0)
|
|
||||||
ruby_parser (3.18.1)
|
|
||||||
sexp_processor (~> 4.16)
|
|
||||||
rubyzip (2.3.2)
|
|
||||||
sanitize (6.0.0)
|
|
||||||
crass (~> 1.0.2)
|
|
||||||
nokogiri (>= 1.12.0)
|
|
||||||
sassc (2.4.0)
|
|
||||||
ffi (~> 1.9)
|
|
||||||
sassc-rails (2.1.2)
|
|
||||||
railties (>= 4.0.0)
|
|
||||||
sassc (>= 2.0)
|
|
||||||
sprockets (> 3.0)
|
|
||||||
sprockets-rails
|
|
||||||
tilt
|
|
||||||
selenium-webdriver (4.1.0)
|
|
||||||
childprocess (>= 0.5, < 5.0)
|
|
||||||
rexml (~> 3.2, >= 3.2.5)
|
|
||||||
rubyzip (>= 1.2.2)
|
|
||||||
set (1.0.2)
|
|
||||||
sexp_processor (4.16.0)
|
|
||||||
shoulda-matchers (4.5.1)
|
|
||||||
activesupport (>= 4.2.0)
|
|
||||||
simplecov (0.21.2)
|
|
||||||
docile (~> 1.1)
|
|
||||||
simplecov-html (~> 0.11)
|
|
||||||
simplecov_json_formatter (~> 0.1)
|
|
||||||
simplecov-html (0.12.3)
|
|
||||||
simplecov_json_formatter (0.1.4)
|
|
||||||
single_test (0.6.0)
|
|
||||||
rake
|
|
||||||
sorted_set (1.0.3)
|
|
||||||
rbtree
|
|
||||||
set (~> 1.0)
|
|
||||||
sprite-factory (1.7.1)
|
|
||||||
sprockets (4.0.3)
|
|
||||||
concurrent-ruby (~> 1.0)
|
|
||||||
rack (> 1, < 3)
|
|
||||||
sprockets-rails (3.4.2)
|
|
||||||
actionpack (>= 5.2)
|
|
||||||
activesupport (>= 5.2)
|
|
||||||
sprockets (>= 3.0.0)
|
|
||||||
sync (0.5.0)
|
|
||||||
sysexits (1.2.0)
|
|
||||||
temple (0.8.2)
|
|
||||||
term-ansicolor (1.7.1)
|
|
||||||
tins (~> 1.0)
|
|
||||||
test-unit (3.5.3)
|
|
||||||
power_assert
|
|
||||||
thinking-sphinx (5.4.0)
|
|
||||||
activerecord (>= 4.2.0)
|
|
||||||
builder (>= 2.1.2)
|
|
||||||
innertube (>= 1.0.2)
|
|
||||||
joiner (>= 0.3.4)
|
|
||||||
middleware (>= 0.1.0)
|
|
||||||
riddle (~> 2.3)
|
|
||||||
thor (1.2.1)
|
|
||||||
thread_safe (0.3.6)
|
|
||||||
tilt (2.0.10)
|
|
||||||
timecop (0.9.5)
|
|
||||||
tins (1.31.0)
|
|
||||||
sync
|
|
||||||
tzinfo (1.2.9)
|
|
||||||
thread_safe (~> 0.1)
|
|
||||||
uglifier (4.2.0)
|
|
||||||
execjs (>= 0.3.0, < 3)
|
|
||||||
unf (0.1.4)
|
|
||||||
unf_ext
|
|
||||||
unf_ext (0.0.8.1)
|
|
||||||
unicode-display_width (2.1.0)
|
|
||||||
uniform_notifier (1.14.2)
|
|
||||||
vcr (6.1.0)
|
|
||||||
voight_kampff (1.1.4)
|
|
||||||
rack (>= 1.4, < 3.0)
|
|
||||||
webmock (3.14.0)
|
|
||||||
addressable (>= 2.8.0)
|
|
||||||
crack (>= 0.3.2)
|
|
||||||
hashdiff (>= 0.4.0, < 2.0.0)
|
|
||||||
webrick (1.7.0)
|
|
||||||
websocket-driver (0.7.5)
|
|
||||||
websocket-extensions (>= 0.1.0)
|
|
||||||
websocket-extensions (0.1.5)
|
|
||||||
xmlhash (1.3.8)
|
|
||||||
pkg-config
|
|
||||||
xmlrpc (0.3.2)
|
|
||||||
webrick
|
|
||||||
xpath (3.2.0)
|
|
||||||
nokogiri (~> 1.8)
|
|
||||||
yajl-ruby (1.4.2)
|
|
||||||
zeitwerk (2.5.4)
|
|
||||||
|
|
||||||
PLATFORMS
|
|
||||||
ruby
|
|
||||||
|
|
||||||
DEPENDENCIES
|
|
||||||
activemodel-serializers-xml
|
|
||||||
acts_as_list
|
|
||||||
acts_as_tree
|
|
||||||
addressable
|
|
||||||
airbrake
|
|
||||||
airbrake-ruby
|
|
||||||
ajax-datatables-rails
|
|
||||||
bcrypt
|
|
||||||
bootstrap
|
|
||||||
builder
|
|
||||||
bullet
|
|
||||||
bunny
|
|
||||||
bunny-mock
|
|
||||||
capybara
|
|
||||||
capybara_minitest_spec
|
|
||||||
chunky_png
|
|
||||||
clockwork (>= 0.7)
|
|
||||||
cocoon
|
|
||||||
codecov
|
|
||||||
codemirror-rails
|
|
||||||
coffee-rails
|
|
||||||
colorize
|
|
||||||
coveralls
|
|
||||||
cssmin (>= 1.0.2)
|
|
||||||
daemons
|
|
||||||
dalli
|
|
||||||
data_migrate
|
|
||||||
database_cleaner (>= 1.0.1)
|
|
||||||
deep_cloneable (~> 2.4.0)
|
|
||||||
delayed_job_active_record (>= 4.0.0)
|
|
||||||
escape_utils
|
|
||||||
experimental-influxdb-rails (>= 1.0.0.beta5)
|
|
||||||
factory_bot_rails
|
|
||||||
faker
|
|
||||||
feature
|
|
||||||
flot-rails
|
|
||||||
font-awesome-sass
|
|
||||||
gssapi
|
|
||||||
haml
|
|
||||||
haml-rails
|
|
||||||
haml_lint
|
|
||||||
jquery-datatables
|
|
||||||
jquery-rails
|
|
||||||
jquery-ui-rails (~> 4.2.1)
|
|
||||||
kaminari
|
|
||||||
launchy
|
|
||||||
lograge
|
|
||||||
minitest
|
|
||||||
minitest-ci
|
|
||||||
minitest-fail-fast
|
|
||||||
minitest-reporters
|
|
||||||
mocha (> 0.13.0)
|
|
||||||
momentjs-rails
|
|
||||||
mousetrap-rails
|
|
||||||
mysql2
|
|
||||||
nokogiri
|
|
||||||
peek
|
|
||||||
peek-dalli
|
|
||||||
peek-host
|
|
||||||
peek-mysql2
|
|
||||||
pry (>= 0.9.12)
|
|
||||||
pry-byebug
|
|
||||||
puma (~> 4.0)
|
|
||||||
pundit
|
|
||||||
rails (~> 5.2)
|
|
||||||
rails-controller-testing
|
|
||||||
rails-timeago (~> 2.0)
|
|
||||||
rails_tokeninput (>= 1.6.1.rc1)
|
|
||||||
rantly
|
|
||||||
rdoc
|
|
||||||
redcarpet
|
|
||||||
responders (~> 3.0)
|
|
||||||
rspec
|
|
||||||
rspec-rails
|
|
||||||
rspec_junit_formatter
|
|
||||||
rubocop
|
|
||||||
rubocop-performance
|
|
||||||
rubocop-rails
|
|
||||||
rubocop-rspec
|
|
||||||
ruby-ldap
|
|
||||||
sanitize
|
|
||||||
sassc-rails
|
|
||||||
selenium-webdriver
|
|
||||||
shoulda-matchers (~> 4.0)
|
|
||||||
simplecov
|
|
||||||
single_test
|
|
||||||
sprite-factory (>= 1.5.2)
|
|
||||||
test-unit
|
|
||||||
thinking-sphinx (> 3.1)
|
|
||||||
tilt (>= 1.4.1)
|
|
||||||
timecop
|
|
||||||
uglifier (>= 1.2.2)
|
|
||||||
vcr
|
|
||||||
voight_kampff
|
|
||||||
webmock (>= 2.3.0)
|
|
||||||
xmlhash (>= 1.3.6)
|
|
||||||
xmlrpc
|
|
||||||
yajl-ruby
|
|
||||||
|
|
||||||
BUNDLED WITH
|
|
||||||
2.4.10
|
|
||||||
588
Gemfile.lock.x86
588
Gemfile.lock.x86
@ -1,588 +0,0 @@
|
|||||||
GEM
|
|
||||||
remote: https://rubygems.org/
|
|
||||||
specs:
|
|
||||||
actioncable (5.2.7.1)
|
|
||||||
actionpack (= 5.2.7.1)
|
|
||||||
nio4r (~> 2.0)
|
|
||||||
websocket-driver (>= 0.6.1)
|
|
||||||
actionmailer (5.2.7.1)
|
|
||||||
actionpack (= 5.2.7.1)
|
|
||||||
actionview (= 5.2.7.1)
|
|
||||||
activejob (= 5.2.7.1)
|
|
||||||
mail (~> 2.5, >= 2.5.4)
|
|
||||||
rails-dom-testing (~> 2.0)
|
|
||||||
actionpack (5.2.7.1)
|
|
||||||
actionview (= 5.2.7.1)
|
|
||||||
activesupport (= 5.2.7.1)
|
|
||||||
rack (~> 2.0, >= 2.0.8)
|
|
||||||
rack-test (>= 0.6.3)
|
|
||||||
rails-dom-testing (~> 2.0)
|
|
||||||
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
|
||||||
actionview (5.2.7.1)
|
|
||||||
activesupport (= 5.2.7.1)
|
|
||||||
builder (~> 3.1)
|
|
||||||
erubi (~> 1.4)
|
|
||||||
rails-dom-testing (~> 2.0)
|
|
||||||
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
|
||||||
activejob (5.2.7.1)
|
|
||||||
activesupport (= 5.2.7.1)
|
|
||||||
globalid (>= 0.3.6)
|
|
||||||
activemodel (5.2.7.1)
|
|
||||||
activesupport (= 5.2.7.1)
|
|
||||||
activemodel-serializers-xml (1.0.2)
|
|
||||||
activemodel (> 5.x)
|
|
||||||
activesupport (> 5.x)
|
|
||||||
builder (~> 3.1)
|
|
||||||
activerecord (5.2.7.1)
|
|
||||||
activemodel (= 5.2.7.1)
|
|
||||||
activesupport (= 5.2.7.1)
|
|
||||||
arel (>= 9.0)
|
|
||||||
activestorage (5.2.7.1)
|
|
||||||
actionpack (= 5.2.7.1)
|
|
||||||
activerecord (= 5.2.7.1)
|
|
||||||
marcel (~> 1.0.0)
|
|
||||||
activesupport (5.2.7.1)
|
|
||||||
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
||||||
i18n (>= 0.7, < 2)
|
|
||||||
minitest (~> 5.1)
|
|
||||||
tzinfo (~> 1.1)
|
|
||||||
acts_as_list (1.0.4)
|
|
||||||
activerecord (>= 4.2)
|
|
||||||
acts_as_tree (2.9.1)
|
|
||||||
activerecord (>= 3.0.0)
|
|
||||||
addressable (2.8.0)
|
|
||||||
public_suffix (>= 2.0.2, < 5.0)
|
|
||||||
airbrake (13.0.0)
|
|
||||||
airbrake-ruby (~> 6.0)
|
|
||||||
airbrake-ruby (6.0.2)
|
|
||||||
rbtree3 (~> 0.5)
|
|
||||||
ajax-datatables-rails (1.3.1)
|
|
||||||
zeitwerk
|
|
||||||
amq-protocol (2.3.2)
|
|
||||||
ansi (1.5.0)
|
|
||||||
arel (9.0.0)
|
|
||||||
ast (2.4.2)
|
|
||||||
autoprefixer-rails (10.4.2.0)
|
|
||||||
execjs (~> 2)
|
|
||||||
bcrypt (3.1.17)
|
|
||||||
bootstrap (5.1.3)
|
|
||||||
autoprefixer-rails (>= 9.1.0)
|
|
||||||
popper_js (>= 2.9.3, < 3)
|
|
||||||
sassc-rails (>= 2.0.0)
|
|
||||||
builder (3.2.4)
|
|
||||||
bullet (7.0.1)
|
|
||||||
activesupport (>= 3.0.0)
|
|
||||||
uniform_notifier (~> 1.11)
|
|
||||||
bunny (2.19.0)
|
|
||||||
amq-protocol (~> 2.3, >= 2.3.1)
|
|
||||||
sorted_set (~> 1, >= 1.0.2)
|
|
||||||
bunny-mock (1.7.0)
|
|
||||||
bunny (>= 1.7)
|
|
||||||
byebug (11.1.3)
|
|
||||||
capybara (3.36.0)
|
|
||||||
addressable
|
|
||||||
matrix
|
|
||||||
mini_mime (>= 0.1.3)
|
|
||||||
nokogiri (~> 1.8)
|
|
||||||
rack (>= 1.6.0)
|
|
||||||
rack-test (>= 0.6.3)
|
|
||||||
regexp_parser (>= 1.5, < 3.0)
|
|
||||||
xpath (~> 3.2)
|
|
||||||
capybara_minitest_spec (1.0.7)
|
|
||||||
capybara (>= 2)
|
|
||||||
minitest (>= 4)
|
|
||||||
childprocess (4.1.0)
|
|
||||||
chunky_png (1.4.0)
|
|
||||||
clockwork (3.0.0)
|
|
||||||
activesupport
|
|
||||||
tzinfo
|
|
||||||
cocoon (1.2.15)
|
|
||||||
codecov (0.6.0)
|
|
||||||
simplecov (>= 0.15, < 0.22)
|
|
||||||
codemirror-rails (5.16.0)
|
|
||||||
railties (>= 3.0, < 6.0)
|
|
||||||
coderay (1.1.3)
|
|
||||||
coffee-rails (5.0.0)
|
|
||||||
coffee-script (>= 2.2.0)
|
|
||||||
railties (>= 5.2.0)
|
|
||||||
coffee-script (2.4.1)
|
|
||||||
coffee-script-source
|
|
||||||
execjs
|
|
||||||
coffee-script-source (1.12.2)
|
|
||||||
colorize (0.8.1)
|
|
||||||
concurrent-ruby (1.1.9)
|
|
||||||
concurrent-ruby-ext (1.1.9)
|
|
||||||
concurrent-ruby (= 1.1.9)
|
|
||||||
coveralls (0.7.1)
|
|
||||||
multi_json (~> 1.3)
|
|
||||||
rest-client
|
|
||||||
simplecov (>= 0.7)
|
|
||||||
term-ansicolor
|
|
||||||
thor
|
|
||||||
crack (0.4.5)
|
|
||||||
rexml
|
|
||||||
crass (1.0.6)
|
|
||||||
cssmin (1.0.3)
|
|
||||||
daemons (1.4.1)
|
|
||||||
dalli (3.2.1)
|
|
||||||
data_migrate (8.0.0)
|
|
||||||
activerecord (>= 5.0)
|
|
||||||
railties (>= 5.0)
|
|
||||||
database_cleaner (2.0.1)
|
|
||||||
database_cleaner-active_record (~> 2.0.0)
|
|
||||||
database_cleaner-active_record (2.0.1)
|
|
||||||
activerecord (>= 5.a)
|
|
||||||
database_cleaner-core (~> 2.0.0)
|
|
||||||
database_cleaner-core (2.0.1)
|
|
||||||
deep_cloneable (2.4.0)
|
|
||||||
activerecord (>= 3.1.0, < 6)
|
|
||||||
delayed_job (4.1.10)
|
|
||||||
activesupport (>= 3.0, < 8.0)
|
|
||||||
delayed_job_active_record (4.1.7)
|
|
||||||
activerecord (>= 3.0, < 8.0)
|
|
||||||
delayed_job (>= 3.0, < 5)
|
|
||||||
diff-lcs (1.5.0)
|
|
||||||
docile (1.4.0)
|
|
||||||
domain_name (0.5.20190701)
|
|
||||||
unf (>= 0.0.5, < 1.0.0)
|
|
||||||
erubi (1.10.0)
|
|
||||||
erubis (2.7.0)
|
|
||||||
escape_utils (1.2.1)
|
|
||||||
execjs (2.8.1)
|
|
||||||
experimental-influxdb-rails (1.0.0.beta5)
|
|
||||||
influxdb (~> 0.6, >= 0.6.4)
|
|
||||||
railties (>= 4.2)
|
|
||||||
factory_bot (6.2.1)
|
|
||||||
activesupport (>= 5.0.0)
|
|
||||||
factory_bot_rails (6.2.0)
|
|
||||||
factory_bot (~> 6.2.0)
|
|
||||||
railties (>= 5.0.0)
|
|
||||||
faker (2.20.0)
|
|
||||||
i18n (>= 1.8.11, < 2)
|
|
||||||
feature (1.4.0)
|
|
||||||
ffi (1.15.5)
|
|
||||||
flot-rails (0.0.7)
|
|
||||||
jquery-rails
|
|
||||||
font-awesome-sass (6.1.0)
|
|
||||||
sassc (>= 2.0)
|
|
||||||
globalid (1.0.0)
|
|
||||||
activesupport (>= 5.0)
|
|
||||||
gssapi (1.3.1)
|
|
||||||
ffi (>= 1.0.1)
|
|
||||||
haml (5.2.2)
|
|
||||||
temple (>= 0.8.0)
|
|
||||||
tilt
|
|
||||||
haml-rails (2.0.1)
|
|
||||||
actionpack (>= 5.1)
|
|
||||||
activesupport (>= 5.1)
|
|
||||||
haml (>= 4.0.6, < 6.0)
|
|
||||||
html2haml (>= 1.0.1)
|
|
||||||
railties (>= 5.1)
|
|
||||||
haml_lint (0.40.0)
|
|
||||||
haml (>= 4.0, < 5.3)
|
|
||||||
parallel (~> 1.10)
|
|
||||||
rainbow
|
|
||||||
rubocop (>= 0.50.0)
|
|
||||||
sysexits (~> 1.1)
|
|
||||||
hashdiff (1.0.1)
|
|
||||||
html2haml (2.2.0)
|
|
||||||
erubis (~> 2.7.0)
|
|
||||||
haml (>= 4.0, < 6)
|
|
||||||
nokogiri (>= 1.6.0)
|
|
||||||
ruby_parser (~> 3.5)
|
|
||||||
http-accept (1.7.0)
|
|
||||||
http-cookie (1.0.4)
|
|
||||||
domain_name (~> 0.5)
|
|
||||||
i18n (1.10.0)
|
|
||||||
concurrent-ruby (~> 1.0)
|
|
||||||
influxdb (0.8.1)
|
|
||||||
innertube (1.1.0)
|
|
||||||
joiner (0.4.2)
|
|
||||||
activerecord (>= 5.2.beta1)
|
|
||||||
jquery-datatables (1.10.20)
|
|
||||||
jquery-rails (4.4.0)
|
|
||||||
rails-dom-testing (>= 1, < 3)
|
|
||||||
railties (>= 4.2.0)
|
|
||||||
thor (>= 0.14, < 2.0)
|
|
||||||
jquery-ui-rails (4.2.1)
|
|
||||||
railties (>= 3.2.16)
|
|
||||||
kaminari (1.2.2)
|
|
||||||
activesupport (>= 4.1.0)
|
|
||||||
kaminari-actionview (= 1.2.2)
|
|
||||||
kaminari-activerecord (= 1.2.2)
|
|
||||||
kaminari-core (= 1.2.2)
|
|
||||||
kaminari-actionview (1.2.2)
|
|
||||||
actionview
|
|
||||||
kaminari-core (= 1.2.2)
|
|
||||||
kaminari-activerecord (1.2.2)
|
|
||||||
activerecord
|
|
||||||
kaminari-core (= 1.2.2)
|
|
||||||
kaminari-core (1.2.2)
|
|
||||||
launchy (2.5.0)
|
|
||||||
addressable (~> 2.7)
|
|
||||||
lograge (0.11.2)
|
|
||||||
actionpack (>= 4)
|
|
||||||
activesupport (>= 4)
|
|
||||||
railties (>= 4)
|
|
||||||
request_store (~> 1.0)
|
|
||||||
loofah (2.15.0)
|
|
||||||
crass (~> 1.0.2)
|
|
||||||
nokogiri (>= 1.5.9)
|
|
||||||
mail (2.7.1)
|
|
||||||
mini_mime (>= 0.1.1)
|
|
||||||
marcel (1.0.2)
|
|
||||||
matrix (0.4.2)
|
|
||||||
method_source (1.0.0)
|
|
||||||
middleware (0.1.0)
|
|
||||||
mime-types (3.4.1)
|
|
||||||
mime-types-data (~> 3.2015)
|
|
||||||
mime-types-data (3.2022.0105)
|
|
||||||
mini_mime (1.1.2)
|
|
||||||
minitest (5.15.0)
|
|
||||||
minitest-ci (3.4.0)
|
|
||||||
minitest (>= 5.0.6)
|
|
||||||
minitest-fail-fast (0.1.0)
|
|
||||||
minitest (~> 5)
|
|
||||||
minitest-reporters (1.5.0)
|
|
||||||
ansi
|
|
||||||
builder
|
|
||||||
minitest (>= 5.0)
|
|
||||||
ruby-progressbar
|
|
||||||
mocha (1.13.0)
|
|
||||||
momentjs-rails (2.29.1.1)
|
|
||||||
railties (>= 3.1)
|
|
||||||
mousetrap-rails (1.4.6)
|
|
||||||
multi_json (1.15.0)
|
|
||||||
mysql2 (0.5.3)
|
|
||||||
netrc (0.11.0)
|
|
||||||
nio4r (2.5.8)
|
|
||||||
nokogiri (1.13.4-x86_64-linux)
|
|
||||||
racc (~> 1.4)
|
|
||||||
parallel (1.21.0)
|
|
||||||
parser (3.1.1.0)
|
|
||||||
ast (~> 2.4.1)
|
|
||||||
peek (1.1.0)
|
|
||||||
railties (>= 4.0.0)
|
|
||||||
peek-dalli (1.2.0)
|
|
||||||
concurrent-ruby
|
|
||||||
concurrent-ruby-ext
|
|
||||||
dalli
|
|
||||||
peek
|
|
||||||
peek-host (1.0.0)
|
|
||||||
peek
|
|
||||||
peek-mysql2 (1.2.0)
|
|
||||||
concurrent-ruby
|
|
||||||
concurrent-ruby-ext
|
|
||||||
mysql2
|
|
||||||
peek
|
|
||||||
pkg-config (1.4.7)
|
|
||||||
popper_js (2.9.3)
|
|
||||||
power_assert (2.0.1)
|
|
||||||
pry (0.14.1)
|
|
||||||
coderay (~> 1.1)
|
|
||||||
method_source (~> 1.0)
|
|
||||||
pry-byebug (3.8.0)
|
|
||||||
byebug (~> 11.0)
|
|
||||||
pry (~> 0.10)
|
|
||||||
public_suffix (4.0.6)
|
|
||||||
puma (4.3.11)
|
|
||||||
nio4r (~> 2.0)
|
|
||||||
pundit (2.2.0)
|
|
||||||
activesupport (>= 3.0.0)
|
|
||||||
racc (1.6.0)
|
|
||||||
rack (2.2.3)
|
|
||||||
rack-test (1.1.0)
|
|
||||||
rack (>= 1.0, < 3)
|
|
||||||
rails (5.2.7.1)
|
|
||||||
actioncable (= 5.2.7.1)
|
|
||||||
actionmailer (= 5.2.7.1)
|
|
||||||
actionpack (= 5.2.7.1)
|
|
||||||
actionview (= 5.2.7.1)
|
|
||||||
activejob (= 5.2.7.1)
|
|
||||||
activemodel (= 5.2.7.1)
|
|
||||||
activerecord (= 5.2.7.1)
|
|
||||||
activestorage (= 5.2.7.1)
|
|
||||||
activesupport (= 5.2.7.1)
|
|
||||||
bundler (>= 1.3.0)
|
|
||||||
railties (= 5.2.7.1)
|
|
||||||
sprockets-rails (>= 2.0.0)
|
|
||||||
rails-controller-testing (1.0.5)
|
|
||||||
actionpack (>= 5.0.1.rc1)
|
|
||||||
actionview (>= 5.0.1.rc1)
|
|
||||||
activesupport (>= 5.0.1.rc1)
|
|
||||||
rails-dom-testing (2.0.3)
|
|
||||||
activesupport (>= 4.2.0)
|
|
||||||
nokogiri (>= 1.6)
|
|
||||||
rails-html-sanitizer (1.4.2)
|
|
||||||
loofah (~> 2.3)
|
|
||||||
rails-timeago (2.20.0)
|
|
||||||
actionpack (>= 5.2)
|
|
||||||
activesupport (>= 5.2)
|
|
||||||
rails_tokeninput (1.7.0)
|
|
||||||
railties (>= 3.1.0)
|
|
||||||
railties (5.2.7.1)
|
|
||||||
actionpack (= 5.2.7.1)
|
|
||||||
activesupport (= 5.2.7.1)
|
|
||||||
method_source
|
|
||||||
rake (>= 0.8.7)
|
|
||||||
thor (>= 0.19.0, < 2.0)
|
|
||||||
rainbow (3.1.1)
|
|
||||||
rake (13.0.6)
|
|
||||||
rantly (2.0.0)
|
|
||||||
rbtree (0.4.5)
|
|
||||||
rbtree3 (0.7.0)
|
|
||||||
rdoc (6.3.3)
|
|
||||||
redcarpet (3.5.1)
|
|
||||||
regexp_parser (2.2.1)
|
|
||||||
request_store (1.5.1)
|
|
||||||
rack (>= 1.4)
|
|
||||||
responders (3.0.1)
|
|
||||||
actionpack (>= 5.0)
|
|
||||||
railties (>= 5.0)
|
|
||||||
rest-client (2.1.0)
|
|
||||||
http-accept (>= 1.7.0, < 2.0)
|
|
||||||
http-cookie (>= 1.0.2, < 2.0)
|
|
||||||
mime-types (>= 1.16, < 4.0)
|
|
||||||
netrc (~> 0.8)
|
|
||||||
rexml (3.2.5)
|
|
||||||
riddle (2.4.3)
|
|
||||||
rspec (3.11.0)
|
|
||||||
rspec-core (~> 3.11.0)
|
|
||||||
rspec-expectations (~> 3.11.0)
|
|
||||||
rspec-mocks (~> 3.11.0)
|
|
||||||
rspec-core (3.11.0)
|
|
||||||
rspec-support (~> 3.11.0)
|
|
||||||
rspec-expectations (3.11.0)
|
|
||||||
diff-lcs (>= 1.2.0, < 2.0)
|
|
||||||
rspec-support (~> 3.11.0)
|
|
||||||
rspec-mocks (3.11.0)
|
|
||||||
diff-lcs (>= 1.2.0, < 2.0)
|
|
||||||
rspec-support (~> 3.11.0)
|
|
||||||
rspec-rails (5.1.1)
|
|
||||||
actionpack (>= 5.2)
|
|
||||||
activesupport (>= 5.2)
|
|
||||||
railties (>= 5.2)
|
|
||||||
rspec-core (~> 3.10)
|
|
||||||
rspec-expectations (~> 3.10)
|
|
||||||
rspec-mocks (~> 3.10)
|
|
||||||
rspec-support (~> 3.10)
|
|
||||||
rspec-support (3.11.0)
|
|
||||||
rspec_junit_formatter (0.5.1)
|
|
||||||
rspec-core (>= 2, < 4, != 2.12.0)
|
|
||||||
rubocop (1.26.0)
|
|
||||||
parallel (~> 1.10)
|
|
||||||
parser (>= 3.1.0.0)
|
|
||||||
rainbow (>= 2.2.2, < 4.0)
|
|
||||||
regexp_parser (>= 1.8, < 3.0)
|
|
||||||
rexml
|
|
||||||
rubocop-ast (>= 1.16.0, < 2.0)
|
|
||||||
ruby-progressbar (~> 1.7)
|
|
||||||
unicode-display_width (>= 1.4.0, < 3.0)
|
|
||||||
rubocop-ast (1.16.0)
|
|
||||||
parser (>= 3.1.1.0)
|
|
||||||
rubocop-performance (1.13.3)
|
|
||||||
rubocop (>= 1.7.0, < 2.0)
|
|
||||||
rubocop-ast (>= 0.4.0)
|
|
||||||
rubocop-rails (2.14.2)
|
|
||||||
activesupport (>= 4.2.0)
|
|
||||||
rack (>= 1.1)
|
|
||||||
rubocop (>= 1.7.0, < 2.0)
|
|
||||||
rubocop-rspec (2.9.0)
|
|
||||||
rubocop (~> 1.19)
|
|
||||||
ruby-ldap (0.9.20)
|
|
||||||
ruby-progressbar (1.11.0)
|
|
||||||
ruby_parser (3.18.1)
|
|
||||||
sexp_processor (~> 4.16)
|
|
||||||
rubyzip (2.3.2)
|
|
||||||
sanitize (6.0.0)
|
|
||||||
crass (~> 1.0.2)
|
|
||||||
nokogiri (>= 1.12.0)
|
|
||||||
sassc (2.4.0)
|
|
||||||
ffi (~> 1.9)
|
|
||||||
sassc-rails (2.1.2)
|
|
||||||
railties (>= 4.0.0)
|
|
||||||
sassc (>= 2.0)
|
|
||||||
sprockets (> 3.0)
|
|
||||||
sprockets-rails
|
|
||||||
tilt
|
|
||||||
selenium-webdriver (4.1.0)
|
|
||||||
childprocess (>= 0.5, < 5.0)
|
|
||||||
rexml (~> 3.2, >= 3.2.5)
|
|
||||||
rubyzip (>= 1.2.2)
|
|
||||||
set (1.0.2)
|
|
||||||
sexp_processor (4.16.0)
|
|
||||||
shoulda-matchers (4.5.1)
|
|
||||||
activesupport (>= 4.2.0)
|
|
||||||
simplecov (0.21.2)
|
|
||||||
docile (~> 1.1)
|
|
||||||
simplecov-html (~> 0.11)
|
|
||||||
simplecov_json_formatter (~> 0.1)
|
|
||||||
simplecov-html (0.12.3)
|
|
||||||
simplecov_json_formatter (0.1.4)
|
|
||||||
single_test (0.6.0)
|
|
||||||
rake
|
|
||||||
sorted_set (1.0.3)
|
|
||||||
rbtree
|
|
||||||
set (~> 1.0)
|
|
||||||
sprite-factory (1.7.1)
|
|
||||||
sprockets (4.0.3)
|
|
||||||
concurrent-ruby (~> 1.0)
|
|
||||||
rack (> 1, < 3)
|
|
||||||
sprockets-rails (3.4.2)
|
|
||||||
actionpack (>= 5.2)
|
|
||||||
activesupport (>= 5.2)
|
|
||||||
sprockets (>= 3.0.0)
|
|
||||||
sync (0.5.0)
|
|
||||||
sysexits (1.2.0)
|
|
||||||
temple (0.8.2)
|
|
||||||
term-ansicolor (1.7.1)
|
|
||||||
tins (~> 1.0)
|
|
||||||
test-unit (3.5.3)
|
|
||||||
power_assert
|
|
||||||
thinking-sphinx (5.4.0)
|
|
||||||
activerecord (>= 4.2.0)
|
|
||||||
builder (>= 2.1.2)
|
|
||||||
innertube (>= 1.0.2)
|
|
||||||
joiner (>= 0.3.4)
|
|
||||||
middleware (>= 0.1.0)
|
|
||||||
riddle (~> 2.3)
|
|
||||||
thor (1.2.1)
|
|
||||||
thread_safe (0.3.6)
|
|
||||||
tilt (2.0.10)
|
|
||||||
timecop (0.9.5)
|
|
||||||
tins (1.31.0)
|
|
||||||
sync
|
|
||||||
tzinfo (1.2.9)
|
|
||||||
thread_safe (~> 0.1)
|
|
||||||
uglifier (4.2.0)
|
|
||||||
execjs (>= 0.3.0, < 3)
|
|
||||||
unf (0.1.4)
|
|
||||||
unf_ext
|
|
||||||
unf_ext (0.0.8.1)
|
|
||||||
unicode-display_width (2.1.0)
|
|
||||||
uniform_notifier (1.14.2)
|
|
||||||
vcr (6.1.0)
|
|
||||||
voight_kampff (1.1.4)
|
|
||||||
rack (>= 1.4, < 3.0)
|
|
||||||
webmock (3.14.0)
|
|
||||||
addressable (>= 2.8.0)
|
|
||||||
crack (>= 0.3.2)
|
|
||||||
hashdiff (>= 0.4.0, < 2.0.0)
|
|
||||||
webrick (1.7.0)
|
|
||||||
websocket-driver (0.7.5)
|
|
||||||
websocket-extensions (>= 0.1.0)
|
|
||||||
websocket-extensions (0.1.5)
|
|
||||||
xmlhash (1.3.8)
|
|
||||||
pkg-config
|
|
||||||
xmlrpc (0.3.2)
|
|
||||||
webrick
|
|
||||||
xpath (3.2.0)
|
|
||||||
nokogiri (~> 1.8)
|
|
||||||
yajl-ruby (1.4.2)
|
|
||||||
zeitwerk (2.5.4)
|
|
||||||
|
|
||||||
PLATFORMS
|
|
||||||
x86_64-linux
|
|
||||||
|
|
||||||
DEPENDENCIES
|
|
||||||
activemodel-serializers-xml
|
|
||||||
acts_as_list
|
|
||||||
acts_as_tree
|
|
||||||
addressable
|
|
||||||
airbrake
|
|
||||||
airbrake-ruby
|
|
||||||
ajax-datatables-rails
|
|
||||||
bcrypt
|
|
||||||
bootstrap
|
|
||||||
builder
|
|
||||||
bullet
|
|
||||||
bunny
|
|
||||||
bunny-mock
|
|
||||||
capybara
|
|
||||||
capybara_minitest_spec
|
|
||||||
chunky_png
|
|
||||||
clockwork (>= 0.7)
|
|
||||||
cocoon
|
|
||||||
codecov
|
|
||||||
codemirror-rails
|
|
||||||
coffee-rails
|
|
||||||
colorize
|
|
||||||
coveralls
|
|
||||||
cssmin (>= 1.0.2)
|
|
||||||
daemons
|
|
||||||
dalli
|
|
||||||
data_migrate
|
|
||||||
database_cleaner (>= 1.0.1)
|
|
||||||
deep_cloneable (~> 2.4.0)
|
|
||||||
delayed_job_active_record (>= 4.0.0)
|
|
||||||
escape_utils
|
|
||||||
experimental-influxdb-rails (>= 1.0.0.beta5)
|
|
||||||
factory_bot_rails
|
|
||||||
faker
|
|
||||||
feature
|
|
||||||
flot-rails
|
|
||||||
font-awesome-sass
|
|
||||||
gssapi
|
|
||||||
haml
|
|
||||||
haml-rails
|
|
||||||
haml_lint
|
|
||||||
jquery-datatables
|
|
||||||
jquery-rails
|
|
||||||
jquery-ui-rails (~> 4.2.1)
|
|
||||||
kaminari
|
|
||||||
launchy
|
|
||||||
lograge
|
|
||||||
minitest
|
|
||||||
minitest-ci
|
|
||||||
minitest-fail-fast
|
|
||||||
minitest-reporters
|
|
||||||
mocha (> 0.13.0)
|
|
||||||
momentjs-rails
|
|
||||||
mousetrap-rails
|
|
||||||
mysql2
|
|
||||||
nokogiri
|
|
||||||
peek
|
|
||||||
peek-dalli
|
|
||||||
peek-host
|
|
||||||
peek-mysql2
|
|
||||||
pry (>= 0.9.12)
|
|
||||||
pry-byebug
|
|
||||||
puma (~> 4.0)
|
|
||||||
pundit
|
|
||||||
rails (~> 5.2)
|
|
||||||
rails-controller-testing
|
|
||||||
rails-timeago (~> 2.0)
|
|
||||||
rails_tokeninput (>= 1.6.1.rc1)
|
|
||||||
rantly
|
|
||||||
rdoc
|
|
||||||
redcarpet
|
|
||||||
responders (~> 3.0)
|
|
||||||
rspec
|
|
||||||
rspec-rails
|
|
||||||
rspec_junit_formatter
|
|
||||||
rubocop
|
|
||||||
rubocop-performance
|
|
||||||
rubocop-rails
|
|
||||||
rubocop-rspec
|
|
||||||
ruby-ldap
|
|
||||||
sanitize
|
|
||||||
sassc-rails
|
|
||||||
selenium-webdriver
|
|
||||||
shoulda-matchers (~> 4.0)
|
|
||||||
simplecov
|
|
||||||
single_test
|
|
||||||
sprite-factory (>= 1.5.2)
|
|
||||||
test-unit
|
|
||||||
thinking-sphinx (> 3.1)
|
|
||||||
tilt (>= 1.4.1)
|
|
||||||
timecop
|
|
||||||
uglifier (>= 1.2.2)
|
|
||||||
vcr
|
|
||||||
voight_kampff
|
|
||||||
webmock (>= 2.3.0)
|
|
||||||
xmlhash (>= 1.3.6)
|
|
||||||
xmlrpc
|
|
||||||
yajl-ruby
|
|
||||||
|
|
||||||
BUNDLED WITH
|
|
||||||
2.4.10
|
|
||||||
BIN
ffi-1.15.5.gem
BIN
ffi-1.15.5.gem
Binary file not shown.
@ -16,25 +16,20 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
%global rake_version 13.0.6
|
%global rake_version 13.0.6
|
||||||
%global rack_version 2.2.3
|
%global rack_version 2.2.8
|
||||||
%global ruby_version 3.2.0
|
%global ruby_version 3.2.0
|
||||||
Name: obs-bundled-gems
|
Name: obs-bundled-gems
|
||||||
Version: 2.10.15
|
Version: 2.10.15
|
||||||
Release: 7
|
Release: 8
|
||||||
Summary: The Open Build Service -- Bundled Gems
|
Summary: The Open Build Service -- Bundled Gems
|
||||||
License: GPL-2.0-only OR GPL-3.0-only
|
License: GPL-2.0-only OR GPL-3.0-only
|
||||||
URL: http://www.openbuildservice.org
|
URL: http://www.openbuildservice.org
|
||||||
Source0: Gemfile
|
Source0: Gemfile
|
||||||
Source1: Gemfile.lock.aarch64
|
Source1: Gemfile.lock
|
||||||
Source2: Gemfile.lock.x86
|
Source2: verdor.obscpio
|
||||||
Source3: verdor.obscpio
|
|
||||||
Source4: Gemfile.lock.riscv64
|
|
||||||
Source5: Gemfile.lock.loongarch64
|
|
||||||
# http://rubygems.loongnix.cn/gems/ffi-1.15.5.gem
|
|
||||||
Source6: ffi-1.15.5.gem
|
|
||||||
BuildRequires: cyrus-sasl-devel mysql-devel nodejs openldap-devel python3-devel
|
BuildRequires: cyrus-sasl-devel mysql-devel nodejs openldap-devel python3-devel
|
||||||
BuildRequires: gcc gcc-c++ glibc-devel libtool libxml2-devel libxslt-devel
|
BuildRequires: gcc gcc-c++ glibc-devel libtool libxml2-devel libxslt-devel
|
||||||
BuildRequires: ruby-devel rubygem-bundler ruby-common
|
BuildRequires: ruby-devel rubygem-bundler ruby-common make
|
||||||
|
|
||||||
%description
|
%description
|
||||||
This package is useful for the Open Build Service. It will figure out
|
This package is useful for the Open Build Service. It will figure out
|
||||||
@ -68,17 +63,8 @@ this package is just a meta package used to build obs-api testsuite
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
echo "This package contains of requirements"> README
|
echo "This package contains of requirements"> README
|
||||||
cp %{_sourcedir}/Gemfile %{_sourcedir}/Gemfile.lock* .
|
cp %{_sourcedir}/Gemfile %{_sourcedir}/Gemfile.lock .
|
||||||
arch=`uname -m`
|
|
||||||
if [ $arch == 'x86_64' ];then
|
|
||||||
mv Gemfile.lock.x86 Gemfile.lock
|
|
||||||
elif [ $arch == 'aarch64' ];then
|
|
||||||
mv Gemfile.lock.aarch64 Gemfile.lock
|
|
||||||
elif [ $arch == 'riscv64' ];then
|
|
||||||
mv Gemfile.lock.riscv64 Gemfile.lock
|
|
||||||
else
|
|
||||||
mv Gemfile.lock.loongarch64 Gemfile.lock
|
|
||||||
fi
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
cd %{_sourcedir}
|
cd %{_sourcedir}
|
||||||
@ -86,10 +72,6 @@ if [ ! -f verdor.obscpio ]; then find ./vendor/cache | cpio -o -H newc > %{_sour
|
|||||||
if [ -d vendor ]; then rm -rf vendor; fi
|
if [ -d vendor ]; then rm -rf vendor; fi
|
||||||
cpio -idvm < verdor.obscpio
|
cpio -idvm < verdor.obscpio
|
||||||
cd -
|
cd -
|
||||||
arch=`uname -m`
|
|
||||||
if [ $arch == 'loongarch64' ];then
|
|
||||||
cp %{SOURCE6} %{_sourcedir}/vendor/cache/
|
|
||||||
fi
|
|
||||||
export QA_SKIP_BUILD_ROOT=1
|
export QA_SKIP_BUILD_ROOT=1
|
||||||
# copy gem files into cache
|
# copy gem files into cache
|
||||||
mkdir -p vendor/cache
|
mkdir -p vendor/cache
|
||||||
@ -154,6 +136,9 @@ done
|
|||||||
%doc README
|
%doc README
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Aug 29 2023 liyanan <thistleslyn@163.com> - 2.10.15-8
|
||||||
|
- Replace Gemfile with commit de86991072b9457dd7d12dee129aef8326829935
|
||||||
|
|
||||||
* Sat Aug 12 2023 Ge Wang <wang__ge@126.com> 2.10.15-7
|
* Sat Aug 12 2023 Ge Wang <wang__ge@126.com> 2.10.15-7
|
||||||
- Fix obs-server build failure due to ruby updated to version 3.2
|
- Fix obs-server build failure due to ruby updated to version 3.2
|
||||||
|
|
||||||
|
|||||||
BIN
verdor.obscpio
BIN
verdor.obscpio
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user