API de comptabilité horaire.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

spring 494B

1234567891011121314
  1. #!/usr/bin/env ruby
  2. if !defined?(Spring) && [nil, "development", "test"].include?(ENV["RAILS_ENV"])
  3. gem "bundler"
  4. require "bundler"
  5. # Load Spring without loading other gems in the Gemfile, for speed.
  6. Bundler.locked_gems&.specs&.find { |spec| spec.name == "spring" }&.tap do |spring|
  7. Gem.use_paths Gem.dir, Bundler.bundle_path.to_s, *Gem.path
  8. gem "spring", spring.version
  9. require "spring/binstub"
  10. rescue Gem::LoadError
  11. # Ignore when Spring is not installed.
  12. end
  13. end