Advertisement
Guest User

Untitled

a guest
Jul 3rd, 2013
319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 KB | None | 0 0
  1. " You have already activated rack 1.1.0, but your Gemfile requires rack 1.0.1. Consider using bundle exec."
  2.  
  3. my Gemfile:
  4.  
  5. source 'http://rubygems.org'
  6.  
  7.  
  8. group :test, :development do
  9. gem "rack","1.0.1"
  10. end
  11.  
  12. gem "rails","2.3.5"
  13. gem "mysql"
  14. gem "rake", "0.8.3"
  15. gem "declarative_authorization", "0.5.2"
  16. gem "searchlogic"
  17. gem "prawn", "0.6.3"
  18. gem "thin","1.2.11"
  19.  
  20. group :test, :development do
  21. gem "rack","1.0.1"
  22. end
  23.  
  24.  
  25. group :development do
  26. # bundler requires these gems in development
  27. # gem "rails-footnotes"
  28. end
  29.  
  30. group :test do
  31. # bundler requires these gems while running tests
  32. # gem "rspec"
  33. # gem "faker"
  34. end
  35. ----------------------
  36.  
  37. GEM
  38. remote: http://rubygems.org/
  39. specs:
  40. actionmailer (2.3.5)
  41.  
  42. actionpack (= 2.3.5)
  43. actionpack (2.3.5)
  44. activesupport (= 2.3.5)
  45. rack (~> 1.0.0)
  46. activerecord (2.3.5)
  47. activesupport (= 2.3.5)
  48. activeresource (2.3.5)
  49. activesupport (= 2.3.5)
  50. activesupport (2.3.5)
  51. daemons (1.1.4)
  52. declarative_authorization (0.5.2)
  53. eventmachine (0.12.10)
  54. mysql (2.8.1)
  55. prawn (0.6.3)
  56. prawn-core (>= 0.6.3, < 0.7)
  57. prawn-format (>= 0.2.3, < 0.3)
  58. prawn-layout (>= 0.3.2, < 0.4)
  59. prawn-security (>= 0.1.1, < 0.2)
  60. prawn-core (0.6.3)
  61. prawn-format (0.2.3)
  62. prawn-core
  63. prawn-layout (0.3.2)
  64. prawn-security (0.1.1)
  65. rack (1.0.1)
  66. rails (2.3.5)
  67. actionmailer (= 2.3.5)
  68. actionpack (= 2.3.5)
  69. activerecord (= 2.3.5)
  70. activeresource (= 2.3.5)
  71. activesupport (= 2.3.5)
  72. rake (>= 0.8.3)
  73. rake (0.8.3)
  74. searchlogic (2.4.28)
  75. activerecord (>= 2.0.0)
  76. thin (1.2.11)
  77. daemons (>= 1.0.9)
  78. eventmachine (>= 0.12.6)
  79. rack (>= 1.0.0)
  80.  
  81. PLATFORMS
  82. ruby
  83.  
  84. DEPENDENCIES
  85. declarative_authorization (= 0.5.2)
  86. mysql
  87. prawn (= 0.6.3)
  88. rack (= 1.0.1)
  89. rails (= 2.3.5)
  90. rake (= 0.8.3)
  91. searchlogic
  92. thin (= 1.2.11)
  93. ---------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement