blastr 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/History.txt +6 -0
  2. data/README.rdoc +8 -4
  3. data/Rakefile +3 -3
  4. data/lib/blastr.rb +1 -1
  5. metadata +13 -3
data/History.txt CHANGED
@@ -1,3 +1,9 @@
1
+ == 0.0.5 2009-01-17
2
+
3
+ * Improved instructions in README.rdoc
4
+ * Git is now an explicit dependency in the gem, hopefully streamlining the
5
+ installation process.
6
+
1
7
  == 0.0.4 2009-01-17
2
8
 
3
9
  * Git fixes.
data/README.rdoc CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  == DESCRIPTION:
6
6
 
7
- FIX (describe your package)
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
- FIX (code sample of usage)
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
- * FIX (list of requirements)
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
- * FIX (sudo gem install, anything else)
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
- # p.extra_deps = [
12
- # ['activesupport','>= 2.0.2'],
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
@@ -2,7 +2,7 @@ $:.unshift(File.dirname(__FILE__)) unless
2
2
  $:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
3
3
 
4
4
  module Blastr
5
- VERSION = '0.0.4'
5
+ VERSION = '0.0.5'
6
6
 
7
7
  require 'blastr/git.rb'
8
8
  require 'blastr/svn.rb'
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
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: FIX (describe your package)
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: FIX (describe your package)
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