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.

Gemfile 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. source 'http://rubygems.org'
  2. gem 'rails', '3.2.3'
  3. gem 'prototype-rails', '3.2.1'
  4. gem "i18n", "~> 0.6.0"
  5. gem "coderay", "~> 1.0.6"
  6. gem "fastercsv", "~> 1.5.0", :platforms => [:mri_18, :mingw_18, :jruby]
  7. gem "tzinfo", "~> 0.3.31"
  8. gem "builder"
  9. # Optional gem for LDAP authentication
  10. group :ldap do
  11. gem "net-ldap", "~> 0.3.1"
  12. end
  13. # Optional gem for OpenID authentication
  14. group :openid do
  15. gem "ruby-openid", "~> 2.1.4", :require => "openid"
  16. gem "rack-openid"
  17. end
  18. # Optional gem for exporting the gantt to a PNG file, not supported with jruby
  19. platforms :mri, :mingw do
  20. group :rmagick do
  21. # RMagick 2 supports ruby 1.9
  22. # RMagick 1 would be fine for ruby 1.8 but Bundler does not support
  23. # different requirements for the same gem on different platforms
  24. gem "rmagick", ">= 2.0.0"
  25. end
  26. end
  27. # Database gems
  28. platforms :mri, :mingw do
  29. group :postgresql do
  30. gem "pg", ">= 0.11.0"
  31. end
  32. group :sqlite do
  33. gem "sqlite3"
  34. end
  35. end
  36. platforms :mri_18, :mingw_18 do
  37. group :mysql do
  38. gem "mysql"
  39. end
  40. end
  41. platforms :mri_19, :mingw_19 do
  42. group :mysql do
  43. gem "mysql2", "~> 0.3.11"
  44. end
  45. end
  46. platforms :jruby do
  47. gem "jruby-openssl"
  48. group :mysql do
  49. gem "activerecord-jdbcmysql-adapter"
  50. end
  51. group :postgresql do
  52. gem "activerecord-jdbcpostgresql-adapter"
  53. end
  54. group :sqlite do
  55. gem "activerecord-jdbcsqlite3-adapter"
  56. end
  57. end
  58. group :development do
  59. gem "rdoc", ">= 2.4.2"
  60. end
  61. group :test do
  62. gem "shoulda"
  63. gem "mocha"
  64. end
  65. local_gemfile = File.join(File.dirname(__FILE__), "Gemfile.local")
  66. if File.exists?(local_gemfile)
  67. puts "Loading Gemfile.local ..." if $DEBUG # `ruby -d` or `bundle -v`
  68. instance_eval File.read(local_gemfile)
  69. end
  70. # Load plugins' Gemfiles
  71. Dir.glob File.expand_path("../vendor/plugins/*/Gemfile", __FILE__) do |file|
  72. puts "Loading #{file} ..." if $DEBUG # `ruby -d` or `bundle -v`
  73. instance_eval File.read(file)
  74. end