Skip to content

Commit

Permalink
[Bundler] Add Gemfile.lock to source control and update Bundler on re…
Browse files Browse the repository at this point in the history
…lease
  • Loading branch information
fabiopelosin committed May 30, 2013
1 parent 3ff7805 commit 236a546
Show file tree
Hide file tree
Showing 3 changed files with 108 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,5 @@ tmp
spec/fixtures/vcr
.yardoc
.rbx/
Gemfile.lock
coverage/
.coveralls.yml
105 changes: 105 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
GIT
remote: https://github.com/alloy/kicker.git
revision: 6430787ebf8b9305acc2d2f89ae5cf01d2cd5488
branch: 3.0.0
specs:
kicker (3.0.0pre1)
listen
terminal-notifier

GIT
remote: https://github.com/irrationalfab/PrettyBacon.git
revision: c42de649708149bbfb5fb5beefa65440855cf876
branch: master
specs:
prettybacon (0.0.1)
bacon (~> 1.2)

PATH
remote: .
specs:
cocoapods-core (0.20.2)
activesupport (~> 3.2.13)
json (~> 1.8.0)
nap (~> 0.5.1)
rake (~> 10.0.0)

GEM
remote: http://rubygems.org/
specs:
activesupport (3.2.13)
i18n (= 0.6.1)
multi_json (~> 1.0)
awesome_print (1.1.0)
bacon (1.2.0)
coderay (1.0.9)
colorize (0.5.8)
coveralls (0.6.7)
colorize
multi_json (~> 1.3)
rest-client
simplecov (>= 0.7)
thor
ffi (1.8.1)
github-markup (0.7.5)
i18n (0.6.1)
json (1.8.0)
listen (1.1.4)
rb-fsevent (>= 0.9.3)
rb-inotify (>= 0.9)
rb-kqueue (>= 0.2)
metaclass (0.0.1)
method_source (0.8.1)
mime-types (1.23)
mocha (0.11.4)
metaclass (~> 0.0.1)
mocha-on-bacon (0.2.1)
mocha (>= 0.9.8)
multi_json (1.7.4)
nap (0.5.1)
posix-spawn (0.3.6)
pry (0.9.12.2)
coderay (~> 1.0.5)
method_source (~> 0.8)
slop (~> 3.4)
pygments.rb (0.5.0)
posix-spawn (~> 0.3.6)
yajl-ruby (~> 1.1.0)
rake (10.0.4)
rb-fsevent (0.9.3)
rb-inotify (0.9.0)
ffi (>= 0.5.0)
rb-kqueue (0.2.0)
ffi (>= 0.5.0)
redcarpet (2.3.0)
rest-client (1.6.7)
mime-types (>= 1.16)
simplecov (0.7.1)
multi_json (~> 1.0)
simplecov-html (~> 0.7.1)
simplecov-html (0.7.1)
slop (3.4.5)
terminal-notifier (1.4.2)
thor (0.18.1)
yajl-ruby (1.1.0)
yard (0.8.6.1)

PLATFORMS
ruby

DEPENDENCIES
awesome_print
bacon
cocoapods-core!
coveralls
github-markup
kicker!
mocha (~> 0.11.4)
mocha-on-bacon
prettybacon!
pry
pygments.rb
rake
rb-fsevent
redcarpet
yard
3 changes: 3 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ namespace :gem do
# Ensure that the branches are up to date with the remote
sh "git pull"

puts "* Updating Bundler"
silent_sh('bundle update')

puts "* Running specs"
silent_sh('rake spec:all')

Expand Down

0 comments on commit 236a546

Please sign in to comment.