Aucune description http://j1x-huginn.herokuapp.com

gemfile_helper.rb 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. class GemfileHelper
  2. class << self
  3. def load_dotenv
  4. dotenv_dir = Dir[File.join(File.dirname(__FILE__), '../vendor/gems/dotenv-[0-9]*')].sort.last
  5. yield dotenv_dir
  6. return if ENV['ON_HEROKU'] == 'true'
  7. $:.unshift File.join(dotenv_dir, 'lib')
  8. require "dotenv"
  9. $:.shift
  10. root = Pathname.new(File.join(File.dirname(__FILE__), '..'))
  11. sanity_check Dotenv.load(
  12. root.join(".env.local"),
  13. root.join(".env.#{ENV['RAILS_ENV'] || 'development'}"),
  14. root.join(".env")
  15. )
  16. end
  17. GEM_NAME = '[A-Za-z0-9\.\-\_]+'.freeze
  18. GEM_OPTIONS = '(.+?)\s*(?:,\s*(.+?)){0,1}'.freeze
  19. GEM_SEPARATOR = '\s*(?:,|\z)'.freeze
  20. GEM_REGULAR_EXPRESSION = /(#{GEM_NAME})(?:\(#{GEM_OPTIONS}\)){0,1}#{GEM_SEPARATOR}/
  21. def parse_each_agent_gem(string)
  22. return unless string
  23. string.scan(GEM_REGULAR_EXPRESSION).each do |name, version, args|
  24. if version =~ /\w+:/
  25. args = "#{version},#{args}"
  26. version = nil
  27. end
  28. yield [name, version, parse_gem_args(args)].compact
  29. end
  30. end
  31. private
  32. def parse_gem_args(args)
  33. return nil unless args
  34. options = {}
  35. args.scan(/(\w+):\s*(.+?)#{GEM_SEPARATOR}/).each do |key, value|
  36. options[key.to_sym] = value
  37. end
  38. options
  39. end
  40. def sanity_check(env)
  41. return if ENV['CI'] == 'true' || !env.empty?
  42. puts warning
  43. raise "Could not load huginn settings from .env file."
  44. end
  45. def warning
  46. <<-EOF
  47. Could not load huginn settings from .env file.
  48. Make sure to copy the .env.example to .env and change it to match your configuration.
  49. Capistrano 2 users: Make sure shared files are symlinked before bundle runs: before 'bundle:install', 'deploy:symlink_configs'
  50. EOF
  51. end
  52. end
  53. end