File tree 4 files changed +7
-6
lines changed 4 files changed +7
-6
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 1
- 1.2.8
1
+ 1.2.9
Original file line number Diff line number Diff line change 1
1
require 'date'
2
2
3
- require "#{ File . expand_path ( File . dirname ( __FILE__ ) ) } /lib/git/version"
4
-
5
3
Gem ::Specification . new do |s |
6
4
s . authors = [ 'Scott Chacon' ]
7
- s . date = Date . today . to_s
5
+ s . date = '2015-01-07'
8
6
s . email = 'schacon@gmail.com'
9
7
s . homepage = 'http://github.com/schacon/ruby-git'
10
8
s . license = 'MIT'
11
9
s . name = 'git'
12
10
s . summary = 'Ruby/Git is a Ruby library that can be used to create, read and manipulate Git repositories by wrapping system calls to the git binary.'
13
- s . version = Git :: VERSION
11
+ s . version = '1.2.9'
14
12
15
13
s . required_rubygems_version = Gem ::Requirement . new ( ">= 0" ) if s . respond_to? :required_rubygems_version=
16
14
s . require_paths = [ 'lib' ]
@@ -24,7 +22,10 @@ Gem::Specification.new do |s|
24
22
s . rdoc_options = [ '--charset=UTF-8' ]
25
23
26
24
s . files = [
25
+ 'CHANGELOG' ,
27
26
'LICENSE' ,
27
+ 'README.md' ,
28
+ 'VERSION' ,
28
29
'lib/git.rb' ,
29
30
'lib/git/author.rb' ,
30
31
'lib/git/base.rb' ,
Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ module Git
2
2
3
3
# The current gem version
4
4
# @return [String] the current gem version.
5
- VERSION = '1.2.8 '
5
+ VERSION = '1.2.9 '
6
6
7
7
end
You can’t perform that action at this time.
0 commit comments