autobahn 0.1

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.
Files changed (2) hide show
  1. data/bin/autobahn +12 -0
  2. metadata +58 -0
data/bin/autobahn ADDED
@@ -0,0 +1,12 @@
1
+ #!/usr/bin/env ruby
2
+ path = File.join(File.dirname(__FILE__), 'commands.rb')
3
+
4
+ unless File.exists?(path)
5
+ repo = ENV['AUTOBAHN_REPOSITORY'] || File.expand_path("~/.autobahn/repository")
6
+ unless File.exists?(repo)
7
+ system 'git', 'clone', 'git://github.com/veridit/autobahn.git', repo
8
+ end
9
+ path = File.join(repo, 'bin', 'commands.rb')
10
+ end
11
+
12
+ exec('ruby', path, *ARGV)
metadata ADDED
@@ -0,0 +1,58 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: autobahn
3
+ version: !ruby/object:Gem::Version
4
+ version: "0.1"
5
+ platform: ruby
6
+ authors:
7
+ - Matias Hermanrud Fjeld
8
+ - "J\xC3\xB8rgen Hermanrud Fjeld"
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2010-03-25 00:00:00 +01:00
14
+ default_executable:
15
+ dependencies: []
16
+
17
+ description:
18
+ email:
19
+ - matias@veridit.no
20
+ - "J\xC3\xB8rgen Hermanrud Fjeld"
21
+ executables:
22
+ - autobahn
23
+ extensions: []
24
+
25
+ extra_rdoc_files: []
26
+
27
+ files: []
28
+
29
+ has_rdoc: true
30
+ homepage: http://www.github.com/veridit/autobahn
31
+ licenses: []
32
+
33
+ post_install_message:
34
+ rdoc_options: []
35
+
36
+ require_paths:
37
+ - lib
38
+ required_ruby_version: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: "0"
43
+ version:
44
+ required_rubygems_version: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: "0"
49
+ version:
50
+ requirements: []
51
+
52
+ rubyforge_project:
53
+ rubygems_version: 1.3.5
54
+ signing_key:
55
+ specification_version: 3
56
+ summary: Enterprise Ruby on Rails
57
+ test_files: []
58
+