Sha256: 70e550cc9137241bbed21c2b6dec85c93da47730ac35de8231b5251319706806
Contents?: true
Size: 1.27 KB
Versions: 3
Compression:
Stored size: 1.27 KB
Contents
source 'https://rubygems.org' DM_URI = 'http://github.com/datamapper' DM_VERSION = '~> 1.2' RONIN_URI = 'http://github.com/ronin-ruby' gemspec gem 'jruby-openssl', '~> 0.7', :platforms => :jruby # Ronin dependencies: # gem 'ronin-support', '~> <%= Ronin::Support::VERSION %>', :git => "#{RONIN_URI}/ronin-support.git" # gem 'ronin', '~> <%= Ronin::VERSION %>', :git => "#{RONIN_URI}/ronin.git" <%- unless @generators.empty? -%> # gem 'ronin-gen', '~> <%= Ronin::Gen::VERSION %>', :git => "#{RONIN_URI}/ronin-gen.git" <%- end -%> group :development do gem 'rake', '~> 0.8' gem 'kramdown', '~> 0.12' gem 'rubygems-tasks', '~> 0.1' gem 'rspec', '~> 2.4' end # # To enable additional DataMapper adapters for development work or for # testing purposes, simple set the ADAPTER or ADAPTERS environment # variable: # # export ADAPTER="postgres" # bundle install # # ./bin/ronin --database postgres://ronin@localhost/ronin # require 'set' DM_ADAPTERS = Set['postgres', 'mysql', 'oracle', 'sqlserver'] 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" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ronin-gen-1.2.0 | data/ronin/gen/library/Gemfile.erb |
ronin-gen-1.2.0.rc2 | data/ronin/gen/library/Gemfile.erb |
ronin-gen-1.2.0.rc1 | data/ronin/gen/library/Gemfile.erb |