mirror of
https://github.com/bitwarden/help
synced 2025-12-15 15:53:53 +00:00
* initial commit
* adding quotes for the array error
* Create Gemfile
* Create Gemfile.lock
* add .nvmrc and .node-version
* removed /article from URL
* update links to work with netlify
* more fixed links
* link fixes
* update bad links
* Update netlify.toml
toml test for redirects
* article redirect
* link fixes
* Update index.html
* Update netlify.toml
* Update _config.yml
* Update netlify.toml
* Update netlify.toml
* Update netlify.toml
* Update netlify.toml
* Update netlify.toml
* add article back into URL for launch
* Update netlify.toml
* Update netlify.toml
* add order to categories front matter
* Update netlify.toml
* update
* sidemenu update
* Revert "sidemenu update"
This reverts commit 5441c3d35c.
* update order prop
* Navbar updates per Gary and compiler warnings
* font/style tweaks
* Update sidebar.html
* Stage Release Documentation (#739)
* initial drafts
* rewrite Custom Fields article to prioritize new context-menu option & better organize ancillary information
* edit
* edit
* Custom Field Context Menu & CAPTCHA item in release notes
* SSO relink event
* update rn
* small edits
* improve release notes titles
* fix side menu
* Edits courtest of mportune!
* update order
* link fixes
* link cleanup
* image updates and a link
* fix trailing slash
Co-authored-by: DanHillesheim <79476558+DanHillesheim@users.noreply.github.com>
43 lines
1.3 KiB
Ruby
43 lines
1.3 KiB
Ruby
source 'https://rubygems.org'
|
|
|
|
require File.join(File.dirname(__FILE__), 'lib/concurrent-ruby/concurrent/version')
|
|
require File.join(File.dirname(__FILE__ ), 'lib/concurrent-ruby-edge/concurrent/edge/version')
|
|
require File.join(File.dirname(__FILE__ ), 'lib/concurrent-ruby/concurrent/utility/engine')
|
|
|
|
no_path = ENV['NO_PATH']
|
|
options = no_path ? {} : { path: '.' }
|
|
|
|
gem 'concurrent-ruby', Concurrent::VERSION, options
|
|
gem 'concurrent-ruby-edge', Concurrent::EDGE_VERSION, options
|
|
gem 'concurrent-ruby-ext', Concurrent::VERSION, options.merge(platform: :mri)
|
|
|
|
group :development do
|
|
gem 'rake', (Concurrent.ruby_version :<, 2, 2, 0) ? '~> 12.0' : '~> 13.0'
|
|
gem 'rake-compiler', '~> 1.0', '>= 1.0.7'
|
|
gem 'rake-compiler-dock', '~> 1.0'
|
|
gem 'pry', '~> 0.11', platforms: :mri
|
|
end
|
|
|
|
group :documentation, optional: true do
|
|
gem 'yard', '~> 0.9.0', require: false
|
|
gem 'redcarpet', '~> 3.0', platforms: :mri # understands github markdown
|
|
gem 'md-ruby-eval', '~> 0.6'
|
|
end
|
|
|
|
group :testing do
|
|
gem 'rspec', '~> 3.7'
|
|
gem 'timecop', '~> 0.7.4'
|
|
gem 'sigdump', require: false
|
|
end
|
|
|
|
# made opt-in since it will not install on jruby 1.7
|
|
group :coverage, optional: !ENV['COVERAGE'] do
|
|
gem 'simplecov', '~> 0.16.0', require: false
|
|
gem 'coveralls', '~> 0.8.2', require: false
|
|
end
|
|
|
|
group :benchmarks, optional: true do
|
|
gem 'benchmark-ips', '~> 2.7'
|
|
gem 'bench9000'
|
|
end
|