]> source.dussan.org Git - redmine.git/commitdiff
add missing awesome_nested_set 2.1.6 files (#6579)
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 26 Mar 2014 11:46:31 +0000 (11:46 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 26 Mar 2014 11:46:31 +0000 (11:46 +0000)
https://github.com/collectiveidea/awesome_nested_set/commit/64cc8bc8cf93e8859a21bcf25c36675080e42ce6

git-svn-id: http://svn.redmine.org/redmine/trunk@13013 e93f8b46-1217-0410-a6f0-8f06a7374b81

lib/plugins/awesome_nested_set/.gitignore [new file with mode: 0644]
lib/plugins/awesome_nested_set/Gemfile [new file with mode: 0644]
lib/plugins/awesome_nested_set/gemfiles/Gemfile.rails-3.0.rb [new file with mode: 0644]
lib/plugins/awesome_nested_set/gemfiles/Gemfile.rails-3.1.rb [new file with mode: 0644]
lib/plugins/awesome_nested_set/gemfiles/Gemfile.rails-3.2.rb [new file with mode: 0644]

diff --git a/lib/plugins/awesome_nested_set/.gitignore b/lib/plugins/awesome_nested_set/.gitignore
new file mode 100644 (file)
index 0000000..3736901
--- /dev/null
@@ -0,0 +1,8 @@
+awesome_nested_set.sqlite3.db
+spec/debug.log
+rdoc
+coverage
+pkg
+*.gem
+Gemfile.lock
+gemfiles/Gemfile*.lock
\ No newline at end of file
diff --git a/lib/plugins/awesome_nested_set/Gemfile b/lib/plugins/awesome_nested_set/Gemfile
new file mode 100644 (file)
index 0000000..c644eb1
--- /dev/null
@@ -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'
diff --git a/lib/plugins/awesome_nested_set/gemfiles/Gemfile.rails-3.0.rb b/lib/plugins/awesome_nested_set/gemfiles/Gemfile.rails-3.0.rb
new file mode 100644 (file)
index 0000000..9109812
--- /dev/null
@@ -0,0 +1,4 @@
+MYSQL2_VERSION = '~> 0.2.18'
+RAILS_VERSION = '~> 3.0.17'
+
+eval File.read(File.expand_path('../../Gemfile', __FILE__))
diff --git a/lib/plugins/awesome_nested_set/gemfiles/Gemfile.rails-3.1.rb b/lib/plugins/awesome_nested_set/gemfiles/Gemfile.rails-3.1.rb
new file mode 100644 (file)
index 0000000..fbbb15c
--- /dev/null
@@ -0,0 +1,4 @@
+MYSQL2_VERSION = '>= 0.3'
+RAILS_VERSION = '~> 3.1.0'
+
+eval File.read(File.expand_path('../../Gemfile', __FILE__))
diff --git a/lib/plugins/awesome_nested_set/gemfiles/Gemfile.rails-3.2.rb b/lib/plugins/awesome_nested_set/gemfiles/Gemfile.rails-3.2.rb
new file mode 100644 (file)
index 0000000..03d1173
--- /dev/null
@@ -0,0 +1,4 @@
+MYSQL2_VERSION = '>= 0.3'
+RAILS_VERSION = '~> 3.2.0'
+
+eval File.read(File.expand_path('../../Gemfile', __FILE__))