refuge 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/bin/refuge +11 -0
  2. data/lib/refuge/sandbox.rb +20 -0
  3. metadata +68 -0
data/bin/refuge ADDED
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/ruby
2
+
3
+ module Refuge
4
+
5
+ def self.main
6
+ puts 'Refuge!'
7
+ end
8
+
9
+ end
10
+
11
+ Refuge::main
@@ -0,0 +1,20 @@
1
+ module Refuge
2
+
3
+ class Sandbox
4
+
5
+ def self.create ( a_path )
6
+ self.new a_path
7
+ end
8
+
9
+ def self.exists? ( a_path )
10
+ end
11
+
12
+ attr_reader :path
13
+
14
+ def initialize ( a_path )
15
+ @path = a_path
16
+ end
17
+
18
+ end
19
+
20
+ end
metadata ADDED
@@ -0,0 +1,68 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: refuge
3
+ version: !ruby/object:Gem::Version
4
+ hash: 29
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 1
10
+ version: 0.0.1
11
+ platform: ruby
12
+ authors:
13
+ - Christopher Nicholson-Sauls
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2010-08-17 00:00:00 -05:00
19
+ default_executable:
20
+ dependencies: []
21
+
22
+ description: A tool for creating and managing sandboxed D Progamming Language projects, including automated builds and package based tool/library availability.
23
+ email: ibisbasenji@gmail.com
24
+ executables:
25
+ - refuge
26
+ extensions: []
27
+
28
+ extra_rdoc_files: []
29
+
30
+ files:
31
+ - bin/refuge
32
+ - lib/refuge/sandbox.rb
33
+ has_rdoc: true
34
+ homepage: http://refuge.invironz.com/
35
+ licenses: []
36
+
37
+ post_install_message:
38
+ rdoc_options: []
39
+
40
+ require_paths:
41
+ - lib
42
+ required_ruby_version: !ruby/object:Gem::Requirement
43
+ none: false
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ hash: 3
48
+ segments:
49
+ - 0
50
+ version: "0"
51
+ required_rubygems_version: !ruby/object:Gem::Requirement
52
+ none: false
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ hash: 3
57
+ segments:
58
+ - 0
59
+ version: "0"
60
+ requirements: []
61
+
62
+ rubyforge_project:
63
+ rubygems_version: 1.3.7
64
+ signing_key:
65
+ specification_version: 3
66
+ summary: sandboxing tool for the D Programming Language
67
+ test_files: []
68
+