Merge branch 'master' of github.com:gitlabhq/gitlabhq
This commit is contained in:
commit
8136048875
5 changed files with 23 additions and 0 deletions
4
Gemfile
4
Gemfile
|
@ -208,6 +208,10 @@ group :development, :test do
|
||||||
|
|
||||||
gem 'spork', '~> 1.0rc'
|
gem 'spork', '~> 1.0rc'
|
||||||
gem 'jasmine', '2.0.0.rc5'
|
gem 'jasmine', '2.0.0.rc5'
|
||||||
|
|
||||||
|
gem "spring", '1.1.1'
|
||||||
|
gem "spring-commands-rspec", '1.0.1'
|
||||||
|
gem "spring-commands-spinach", '1.0.0'
|
||||||
end
|
end
|
||||||
|
|
||||||
group :test do
|
group :test do
|
||||||
|
|
|
@ -470,6 +470,11 @@ GEM
|
||||||
railties (>= 3)
|
railties (>= 3)
|
||||||
spinach (>= 0.4)
|
spinach (>= 0.4)
|
||||||
spork (1.0.0rc4)
|
spork (1.0.0rc4)
|
||||||
|
spring (1.1.1)
|
||||||
|
spring-commands-rspec (1.0.1)
|
||||||
|
spring (>= 0.9.1)
|
||||||
|
spring-commands-spinach (1.0.0)
|
||||||
|
spring (>= 0.9.1)
|
||||||
sprockets (2.10.1)
|
sprockets (2.10.1)
|
||||||
hike (~> 1.2)
|
hike (~> 1.2)
|
||||||
multi_json (~> 1.0)
|
multi_json (~> 1.0)
|
||||||
|
@ -637,6 +642,9 @@ DEPENDENCIES
|
||||||
slim
|
slim
|
||||||
spinach-rails
|
spinach-rails
|
||||||
spork (~> 1.0rc)
|
spork (~> 1.0rc)
|
||||||
|
spring (= 1.1.1)
|
||||||
|
spring-commands-rspec (= 1.0.1)
|
||||||
|
spring-commands-spinach (= 1.0.0)
|
||||||
stamp
|
stamp
|
||||||
state_machine
|
state_machine
|
||||||
test_after_commit
|
test_after_commit
|
||||||
|
|
3
bin/bundle
Normal file
3
bin/bundle
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
#!/usr/bin/env ruby
|
||||||
|
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
|
||||||
|
load Gem.bin_path('bundler', 'bundle')
|
4
bin/rails
Normal file
4
bin/rails
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
#!/usr/bin/env ruby
|
||||||
|
APP_PATH = File.expand_path('../../config/application', __FILE__)
|
||||||
|
require_relative '../config/boot'
|
||||||
|
require 'rails/commands'
|
4
bin/rake
Normal file
4
bin/rake
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
#!/usr/bin/env ruby
|
||||||
|
require_relative '../config/boot'
|
||||||
|
require 'rake'
|
||||||
|
Rake.application.run
|
Loading…
Reference in a new issue