git-cleaner 0.0.4 → 0.0.5
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/README.rdoc +27 -0
- data/VERSION +1 -1
- data/git-cleaner.gemspec +1 -1
- data/lib/git-cleaner.rb +9 -1
- data/lib/git-cleaner/railtie.rb +7 -2
- metadata +3 -3
data/README.rdoc
CHANGED
@@ -2,6 +2,33 @@
|
|
2
2
|
|
3
3
|
Removes all of the old branches that have been merged into master.
|
4
4
|
|
5
|
+
== Installation
|
6
|
+
|
7
|
+
Rails 2
|
8
|
+
-------
|
9
|
+
|
10
|
+
Add the gem to config/development.rb
|
11
|
+
|
12
|
+
config.gem 'git-cleaner', :lib => false
|
13
|
+
|
14
|
+
And add the following to the end of Rakefile
|
15
|
+
|
16
|
+
begin
|
17
|
+
require 'git-cleaner'
|
18
|
+
GitCleaner.load_tasks if defined?(GitCleaner)
|
19
|
+
rescue LoadError => loaderror
|
20
|
+
$stderr.puts %{Couldn't load git-cleaner}
|
21
|
+
end
|
22
|
+
|
23
|
+
Rails 3
|
24
|
+
-------
|
25
|
+
|
26
|
+
Add the gem to the development group of your Gemfile
|
27
|
+
|
28
|
+
gem 'git-cleaner', :require => false
|
29
|
+
|
30
|
+
That's it!
|
31
|
+
|
5
32
|
== Contributing to git-cleaner
|
6
33
|
|
7
34
|
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.5
|
data/git-cleaner.gemspec
CHANGED
data/lib/git-cleaner.rb
CHANGED
data/lib/git-cleaner/railtie.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: git-cleaner
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 21
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 5
|
10
|
+
version: 0.0.5
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Vokhmin Alexey V
|