Skip to content

Commit

Permalink
Use Ruby 1.9 Symbol Hash syntax in Gemfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
postmodern committed Apr 3, 2013
1 parent 59bd185 commit 0360537
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ platforms :jruby do
end

# Ronin dependencies
gem 'ronin-support', '~> 0.6', :git => "#{RONIN_URI}/ronin-support.git",
:branch => '0.6.0'
gem 'ronin', '~> 1.6', :git => "#{RONIN_URI}/ronin.git",
:branch => '1.6.0'
gem 'ronin-gen', '~> 1.3', :git => "#{RONIN_URI}/ronin-gen.git",
:branch => '1.3.0'
# gem 'ronin-asm', '~> 0.1', :git => "#{RONIN_URI}/ronin-asm.git"
# gem 'ronin-sql', '~> 1.0', :git => "#{RONIN_URI}/ronin-sql.git"
gem 'ronin-support', '~> 0.6', git: "#{RONIN_URI}/ronin-support.git",
branch: '0.6.0'
gem 'ronin', '~> 1.6', git: "#{RONIN_URI}/ronin.git",
branch: '1.6.0'
gem 'ronin-gen', '~> 1.3', git: "#{RONIN_URI}/ronin-gen.git",
branch: '1.3.0'
# gem 'ronin-asm', '~> 0.1', git: "#{RONIN_URI}/ronin-asm.git"
# gem 'ronin-sql', '~> 1.0', git: "#{RONIN_URI}/ronin-sql.git"

group :development do
gem 'rake', '~> 10.0'
Expand Down Expand Up @@ -49,5 +49,5 @@ adapters = (ENV['ADAPTER'] || ENV['ADAPTERS']).to_s
adapters = Set.new(adapters.to_s.tr(',',' ').split)

(DM_ADAPTERS & adapters).each do |adapter|
gem "dm-#{adapter}-adapter", DM_VERSION #, :git => "#{DM_URI}/dm-#{adapter}-adapter.git"
gem "dm-#{adapter}-adapter", DM_VERSION #, git: "#{DM_URI}/dm-#{adapter}-adapter.git"
end

0 comments on commit 0360537

Please sign in to comment.