blastr 0.0.4 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +6 -0
- data/README.rdoc +8 -4
- data/Rakefile +3 -3
- data/lib/blastr.rb +1 -1
- metadata +13 -3
data/History.txt
CHANGED
data/README.rdoc
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
== DESCRIPTION:
|
6
6
|
|
7
|
-
|
7
|
+
Blastr observes a version control repository for commits and makes audible announcements out of the commit messages. It currently supports Subversion and Git on Linux and OS X, possibly on other UNIX-like operating systems as well.
|
8
8
|
|
9
9
|
== FEATURES/PROBLEMS:
|
10
10
|
|
@@ -12,15 +12,19 @@ FIX (describe your package)
|
|
12
12
|
|
13
13
|
== SYNOPSIS:
|
14
14
|
|
15
|
-
|
15
|
+
sudo gem install blastr
|
16
|
+
blastr http://svn.acme.com/foo/trunk
|
17
|
+
blastr http://svn.acme.com/foo/trunk
|
18
|
+
blastr git://github.com/lkoskela/blastr.git
|
16
19
|
|
17
20
|
== REQUIREMENTS:
|
18
21
|
|
19
|
-
|
22
|
+
Blastr depends on the "git" gem (>= 1.0.5) and the "svn" command line client
|
23
|
+
being in the user's PATH.
|
20
24
|
|
21
25
|
== INSTALL:
|
22
26
|
|
23
|
-
|
27
|
+
sudo gem install blastr
|
24
28
|
|
25
29
|
== LICENSE:
|
26
30
|
|
data/Rakefile
CHANGED
@@ -8,9 +8,9 @@ $hoe = Hoe.new('blastr', Blastr::VERSION) do |p|
|
|
8
8
|
p.changes = p.paragraphs_of("History.txt", 0..1).join("\n\n")
|
9
9
|
#p.post_install_message = 'PostInstall.txt' # TODO remove if post-install message not required
|
10
10
|
p.rubyforge_name = p.name
|
11
|
-
|
12
|
-
|
13
|
-
|
11
|
+
p.extra_deps = [
|
12
|
+
['git','>= 1.0.5'],
|
13
|
+
]
|
14
14
|
p.extra_dev_deps = [
|
15
15
|
['newgem', ">= #{::Newgem::VERSION}"]
|
16
16
|
]
|
data/lib/blastr.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: blastr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lasse Koskela
|
@@ -12,6 +12,16 @@ cert_chain: []
|
|
12
12
|
date: 2009-01-17 00:00:00 +02:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: git
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 1.0.5
|
24
|
+
version:
|
15
25
|
- !ruby/object:Gem::Dependency
|
16
26
|
name: newgem
|
17
27
|
type: :development
|
@@ -32,7 +42,7 @@ dependencies:
|
|
32
42
|
- !ruby/object:Gem::Version
|
33
43
|
version: 1.8.0
|
34
44
|
version:
|
35
|
-
description:
|
45
|
+
description: Blastr observes a version control repository for commits and makes audible announcements out of the commit messages. It currently supports Subversion and Git on Linux and OS X, possibly on other UNIX-like operating systems as well.
|
36
46
|
email:
|
37
47
|
- lasse.koskela@gmail.com
|
38
48
|
executables:
|
@@ -87,7 +97,7 @@ rubyforge_project: blastr
|
|
87
97
|
rubygems_version: 1.2.0
|
88
98
|
signing_key:
|
89
99
|
specification_version: 2
|
90
|
-
summary:
|
100
|
+
summary: Blastr observes a version control repository for commits and makes audible announcements out of the commit messages
|
91
101
|
test_files:
|
92
102
|
- test/test_blastr.rb
|
93
103
|
- test/test_helper.rb
|