rag 1.0.7 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,27 +0,0 @@
1
- require "spec_helper"
2
- require "fileutils"
3
- require "tmpdir"
4
-
5
- describe Rag::Project do
6
- before :all do
7
- @curdir = Dir.pwd
8
- @tmpdir = Dir.mktmpdir
9
- Dir.chdir(@tmpdir)
10
- end
11
-
12
- after :all do
13
- FileUtils.rm_r @tmpdir
14
- Dir.chdir(@curdir)
15
- end
16
-
17
- describe ".create" do
18
- before :all do
19
- Rag::Project.create "guten", template: 'default', author: 'Test', email: 'test@test.com'
20
- end
21
-
22
- it "runs ok" do
23
- end
24
-
25
- end
26
-
27
- end
data/version.rb DELETED
@@ -1,9 +0,0 @@
1
- class Rag
2
- module VERSION
3
- MAJOR = 1
4
- MINOR = 0
5
- PATCH = 7
6
-
7
- IS = [MAJOR, MINOR, PATCH].join(".")
8
- end
9
- end