summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorMiklos Fazekas <mfazekas@szemafor.com>2016-03-17 08:15:39 +0100
committerMiklos Fazekas <mfazekas@szemafor.com>2016-03-19 17:11:40 +0100
commit0db9be958cace34000d09131abe5e72d7a0b7abe (patch)
tree97360b692c3a31f44e6309458edc6d26861b58fd /Gemfile
parent4f5aaa61b8ab0b94b1654e6889d94491841b545d (diff)
downloadnet-ssh-0db9be958cace34000d09131abe5e72d7a0b7abe.tar.gz
use bcrypt_pbkdf gem, add Gemfile, 4.0.0.alpha1
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile17
1 files changed, 17 insertions, 0 deletions
diff --git a/Gemfile b/Gemfile
new file mode 100644
index 0000000..f83eecd
--- /dev/null
+++ b/Gemfile
@@ -0,0 +1,17 @@
+source 'https://rubygems.org'
+
+# Note: this is run at package time not install time so if you are
+# running on jruby, you need to install jruby-pageant manually.
+gem 'jruby-pageant', ">=1.1.1" if RUBY_PLATFORM == "java"
+
+gem 'rbnacl-libsodium', ">=1.0.2"
+gem 'rbnacl', ">=3.1.2"
+gem 'bcrypt_pbkdf', '1.0.0.alpha1' unless RUBY_PLATFORM == "java"
+
+
+group :development do
+ gem 'rake'
+ gem 'test-unit', ">= 0.8.5"
+ gem 'mocha'
+ gem 'jeweler'
+end