You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Rakefile
+21-18Lines changed: 21 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -1,25 +1,30 @@
1
1
require'rubygems'
2
+
require'bundler'
3
+
begin
4
+
Bundler.setup(:default,:development)
5
+
rescueBundler::BundlerError=>e
6
+
$stderr.putse.message
7
+
$stderr.puts"Run `bundle install` to install missing gems"
8
+
exite.status_code
9
+
end
10
+
2
11
require'rake'
3
12
4
-
begin
5
-
require'jeweler'
6
-
Jeweler::Tasks.newdo |gem|
7
-
gem.name="ruby-plsql-spec"
8
-
gem.summary="Oracle PL/SQL unit testing framework using Ruby and RSpec"
9
-
gem.description=<<-EOS
13
+
require'jeweler'
14
+
Jeweler::Tasks.newdo |gem|
15
+
gem.name="ruby-plsql-spec"
16
+
gem.summary="Oracle PL/SQL unit testing framework using Ruby and RSpec"
17
+
gem.description=<<-EOS
10
18
ruby-plsql-spec is Oracle PL/SQL unit testing framework which is built using Ruby programming language, ruby-plsql library and RSpec testing framework.
0 commit comments