Advertisement
Guest User

Untitled

a guest
Nov 26th, 2013
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.62 KB | None | 0 0
  1. Gemfile:
  2.  
  3. source 'https://rubygems.org'
  4. ruby '2.0.0'
  5. #ruby-gemset=railstutorial_rails_4_0
  6.  
  7. gem 'rails', '4.0.1'
  8.  
  9. group :development, :test do
  10. gem 'sqlite3', "1.3.7"
  11. gem 'rspec-rails', '2.13.1'
  12. end
  13.  
  14. group :test do
  15. gem 'selenium-webdriver', '2.35.1'
  16. gem 'capybara', '2.1.0'
  17. end
  18.  
  19. gem 'sass-rails', '4.0.1'
  20. gem 'uglifier', '2.1.1'
  21. gem 'coffee-rails', '4.0.1'
  22. gem 'jquery-rails', '3.0.4'
  23. gem 'turbolinks', '1.1.1'
  24. gem 'jbuilder', '1.0.2'
  25.  
  26. group :doc do
  27. gem 'sdoc', '0.3.20', require: false
  28. end
  29.  
  30. group :production do
  31. gem 'pg', '0.15.1'
  32. gem 'rails_12factor', '0.0.2'
  33. end
  34.  
  35. Gemfile.lock:
  36.  
  37. GEM
  38. remote: https://rubygems.org/
  39. specs:
  40. actionmailer (4.0.1)
  41. actionpack (= 4.0.1)
  42. mail (~> 2.5.4)
  43. actionpack (4.0.1)
  44. activesupport (= 4.0.1)
  45. builder (~> 3.1.0)
  46. erubis (~> 2.7.0)
  47. rack (~> 1.5.2)
  48. rack-test (~> 0.6.2)
  49. activemodel (4.0.1)
  50. activesupport (= 4.0.1)
  51. builder (~> 3.1.0)
  52. activerecord (4.0.1)
  53. activemodel (= 4.0.1)
  54. activerecord-deprecated_finders (~> 1.0.2)
  55. activesupport (= 4.0.1)
  56. arel (~> 4.0.0)
  57. activerecord-deprecated_finders (1.0.3)
  58. activesupport (4.0.1)
  59. i18n (~> 0.6, >= 0.6.4)
  60. minitest (~> 4.2)
  61. multi_json (~> 1.3)
  62. thread_safe (~> 0.1)
  63. tzinfo (~> 0.3.37)
  64. arel (4.0.1)
  65. atomic (1.1.14)
  66. builder (3.1.4)
  67. capybara (2.1.0)
  68. mime-types (>= 1.16)
  69. nokogiri (>= 1.3.3)
  70. rack (>= 1.0.0)
  71. rack-test (>= 0.5.4)
  72. xpath (~> 2.0)
  73. childprocess (0.3.9)
  74. ffi (~> 1.0, >= 1.0.11)
  75. coffee-rails (4.0.1)
  76. coffee-script (>= 2.2.0)
  77. railties (>= 4.0.0, < 5.0)
  78. coffee-script (2.2.0)
  79. coffee-script-source
  80. execjs
  81. coffee-script-source (1.6.3)
  82. diff-lcs (1.2.5)
  83. erubis (2.7.0)
  84. execjs (2.0.2)
  85. ffi (1.9.3-x86-mingw32)
  86. hike (1.2.3)
  87. i18n (0.6.5)
  88. jbuilder (1.0.2)
  89. activesupport (>= 3.0.0)
  90. jquery-rails (3.0.4)
  91. railties (>= 3.0, < 5.0)
  92. thor (>= 0.14, < 2.0)
  93. json (1.8.1)
  94. mail (2.5.4)
  95. mime-types (~> 1.16)
  96. treetop (~> 1.4.8)
  97. mime-types (1.25.1)
  98. mini_portile (0.5.2)
  99. minitest (4.7.5)
  100. multi_json (1.8.2)
  101. nokogiri (1.6.0-x86-mingw32)
  102. mini_portile (~> 0.5.0)
  103. pg (0.15.1-x86-mingw32)
  104. polyglot (0.3.3)
  105. rack (1.5.2)
  106. rack-test (0.6.2)
  107. rack (>= 1.0)
  108. rails (4.0.1)
  109. actionmailer (= 4.0.1)
  110. actionpack (= 4.0.1)
  111. activerecord (= 4.0.1)
  112. activesupport (= 4.0.1)
  113. bundler (>= 1.3.0, < 2.0)
  114. railties (= 4.0.1)
  115. sprockets-rails (~> 2.0.0)
  116. rails_12factor (0.0.2)
  117. rails_serve_static_assets
  118. rails_stdout_logging
  119. rails_serve_static_assets (0.0.1)
  120. rails_stdout_logging (0.0.3)
  121. railties (4.0.1)
  122. actionpack (= 4.0.1)
  123. activesupport (= 4.0.1)
  124. rake (>= 0.8.7)
  125. thor (>= 0.18.1, < 2.0)
  126. rake (10.1.0)
  127. rdoc (3.12.2)
  128. json (~> 1.4)
  129. rspec-core (2.13.1)
  130. rspec-expectations (2.13.0)
  131. diff-lcs (>= 1.1.3, < 2.0)
  132. rspec-mocks (2.13.1)
  133. rspec-rails (2.13.1)
  134. actionpack (>= 3.0)
  135. activesupport (>= 3.0)
  136. railties (>= 3.0)
  137. rspec-core (~> 2.13.0)
  138. rspec-expectations (~> 2.13.0)
  139. rspec-mocks (~> 2.13.0)
  140. rubyzip (0.9.9)
  141. sass (3.2.12)
  142. sass-rails (4.0.1)
  143. railties (>= 4.0.0, < 5.0)
  144. sass (>= 3.1.10)
  145. sprockets-rails (~> 2.0.0)
  146. sdoc (0.3.20)
  147. json (>= 1.1.3)
  148. rdoc (~> 3.10)
  149. selenium-webdriver (2.35.1)
  150. childprocess (>= 0.2.5)
  151. multi_json (~> 1.0)
  152. rubyzip (< 1.0.0)
  153. websocket (~> 1.0.4)
  154. sprockets (2.10.1)
  155. hike (~> 1.2)
  156. multi_json (~> 1.0)
  157. rack (~> 1.0)
  158. tilt (~> 1.1, != 1.3.0)
  159. sprockets-rails (2.0.1)
  160. actionpack (>= 3.0)
  161. activesupport (>= 3.0)
  162. sprockets (~> 2.8)
  163. sqlite3 (1.3.7-x86-mingw32)
  164. thor (0.18.1)
  165. thread_safe (0.1.3)
  166. atomic
  167. tilt (1.4.1)
  168. treetop (1.4.15)
  169. polyglot
  170. polyglot (>= 0.3.1)
  171. turbolinks (1.1.1)
  172. coffee-rails
  173. tzinfo (0.3.38)
  174. uglifier (2.1.1)
  175. execjs (>= 0.3.0)
  176. multi_json (~> 1.0, >= 1.0.2)
  177. websocket (1.0.7)
  178. xpath (2.0.0)
  179. nokogiri (~> 1.3)
  180.  
  181. PLATFORMS
  182. x86-mingw32
  183.  
  184. DEPENDENCIES
  185. capybara (= 2.1.0)
  186. coffee-rails (= 4.0.1)
  187. jbuilder (= 1.0.2)
  188. jquery-rails (= 3.0.4)
  189. pg (= 0.15.1)
  190. rails (= 4.0.1)
  191. rails_12factor (= 0.0.2)
  192. rspec-rails (= 2.13.1)
  193. sass-rails (= 4.0.1)
  194. sdoc (= 0.3.20)
  195. selenium-webdriver (= 2.35.1)
  196. sqlite3 (= 1.3.7)
  197. turbolinks (= 1.1.1)
  198. uglifier (= 2.1.1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement