rug 0.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.
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ .DS_STORE
2
+ .bundle
3
+ *.gem
4
+ .bundle
5
+ Gemfile.lock
6
+ /rdoc
7
+ /doc
8
+ /pkg
9
+ *.tmproj
10
+ *.log
11
+ /log
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in rug.gemspec
4
+ gemspec
data/README.markdown ADDED
@@ -0,0 +1,18 @@
1
+ # RUG - RUby Git
2
+
3
+ A helper that makes managing remote git repositories a snap.
4
+
5
+ Think of RUG as a layer you place over Git to turn your ugly, scratched up, bare-Git floor into a beautiful, easy to use RUG.
6
+
7
+ RUG runs as a daemon on your Git server and as a command line application on your clients allowing you to create remote repositories and manage git scripts automatically.
8
+
9
+ RUG makes creating remote repos as simple as `rug create repo_name on server_name`.
10
+
11
+ RUG even allows you to automatically embed your Git scripts in the repo itself. No more jumping through hoops to make sure your scripts are maintained with your project; with RUG you just store your scripts in the `git_scripts` directory and they're automatically updated and run.
12
+
13
+ Instead of running `git command parameters` you run the exact same command but using RUG so `rug command parameters`. RUG handles any pre-command work, runs the git command, then handles any post-command work; there's nothing extra you have to do.
14
+
15
+ ## Status
16
+
17
+ **Alpha**
18
+ Beginning development.
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
data/lib/rug.rb ADDED
@@ -0,0 +1,5 @@
1
+ require "rug/version"
2
+
3
+ module RUG
4
+
5
+ end
@@ -0,0 +1,3 @@
1
+ module RUG
2
+ VERSION = "0.0.1"
3
+ end
data/rugs.gemspec ADDED
@@ -0,0 +1,23 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "rug/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "rug"
7
+ s.version = RUG::VERSION
8
+ s.authors = ["Mike Bethany"]
9
+ s.email = ["mikbe.tk@gmail.com"]
10
+ s.homepage = "http://mikbe.tk"
11
+ s.summary = %q{Place holder gem}
12
+ s.description = %q{Nothing to see here, move along.}
13
+
14
+ s.files = `git ls-files`.split("\n")
15
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
16
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
17
+ s.require_paths = ["lib"]
18
+
19
+ # specify any dependencies here; for example:
20
+ # s.add_development_dependency "rspec"
21
+ # s.add_runtime_dependency "rest-client"
22
+
23
+ end
metadata ADDED
@@ -0,0 +1,52 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rug
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Mike Bethany
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2011-09-22 00:00:00.000000000Z
13
+ dependencies: []
14
+ description: Nothing to see here, move along.
15
+ email:
16
+ - mikbe.tk@gmail.com
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - .gitignore
22
+ - Gemfile
23
+ - README.markdown
24
+ - Rakefile
25
+ - lib/rug.rb
26
+ - lib/rug/version.rb
27
+ - rugs.gemspec
28
+ homepage: http://mikbe.tk
29
+ licenses: []
30
+ post_install_message:
31
+ rdoc_options: []
32
+ require_paths:
33
+ - lib
34
+ required_ruby_version: !ruby/object:Gem::Requirement
35
+ none: false
36
+ requirements:
37
+ - - ! '>='
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ required_rubygems_version: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ requirements: []
47
+ rubyforge_project:
48
+ rubygems_version: 1.8.10
49
+ signing_key:
50
+ specification_version: 3
51
+ summary: Place holder gem
52
+ test_files: []