add missing awesome_nested_set 2.1.6 files (#6579)
64cc8bc8cf
git-svn-id: http://svn.redmine.org/redmine/trunk@13013 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
92cac9011e
commit
971dbfecc0
|
@ -0,0 +1,8 @@
|
||||||
|
awesome_nested_set.sqlite3.db
|
||||||
|
spec/debug.log
|
||||||
|
rdoc
|
||||||
|
coverage
|
||||||
|
pkg
|
||||||
|
*.gem
|
||||||
|
Gemfile.lock
|
||||||
|
gemfiles/Gemfile*.lock
|
|
@ -0,0 +1,31 @@
|
||||||
|
gem 'combustion', :github => 'pat/combustion'
|
||||||
|
|
||||||
|
source 'https://rubygems.org'
|
||||||
|
|
||||||
|
gemspec :path => File.expand_path('../', __FILE__)
|
||||||
|
|
||||||
|
platforms :jruby do
|
||||||
|
gem 'activerecord-jdbcsqlite3-adapter'
|
||||||
|
gem 'activerecord-jdbcmysql-adapter'
|
||||||
|
gem 'activerecord-jdbcpostgresql-adapter'
|
||||||
|
gem 'jruby-openssl'
|
||||||
|
end
|
||||||
|
|
||||||
|
platforms :ruby do
|
||||||
|
gem 'sqlite3'
|
||||||
|
gem 'mysql2', (MYSQL2_VERSION if defined? MYSQL2_VERSION)
|
||||||
|
gem 'pg'
|
||||||
|
end
|
||||||
|
|
||||||
|
RAILS_VERSION = nil unless defined? RAILS_VERSION
|
||||||
|
gem 'railties', RAILS_VERSION
|
||||||
|
gem 'activerecord', RAILS_VERSION
|
||||||
|
gem 'actionpack', RAILS_VERSION
|
||||||
|
|
||||||
|
# Add Oracle Adapters
|
||||||
|
# gem 'ruby-oci8'
|
||||||
|
# gem 'activerecord-oracle_enhanced-adapter'
|
||||||
|
|
||||||
|
# Debuggers
|
||||||
|
# gem 'pry'
|
||||||
|
# gem 'pry-nav'
|
|
@ -0,0 +1,4 @@
|
||||||
|
MYSQL2_VERSION = '~> 0.2.18'
|
||||||
|
RAILS_VERSION = '~> 3.0.17'
|
||||||
|
|
||||||
|
eval File.read(File.expand_path('../../Gemfile', __FILE__))
|
|
@ -0,0 +1,4 @@
|
||||||
|
MYSQL2_VERSION = '>= 0.3'
|
||||||
|
RAILS_VERSION = '~> 3.1.0'
|
||||||
|
|
||||||
|
eval File.read(File.expand_path('../../Gemfile', __FILE__))
|
|
@ -0,0 +1,4 @@
|
||||||
|
MYSQL2_VERSION = '>= 0.3'
|
||||||
|
RAILS_VERSION = '~> 3.2.0'
|
||||||
|
|
||||||
|
eval File.read(File.expand_path('../../Gemfile', __FILE__))
|
Loading…
Reference in New Issue