File tree 2 files changed +7
-7
lines changed 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change
1
+ $LOAD_PATH. unshift File . expand_path ( '../lib' , __FILE__ )
2
+ require 'git/version'
3
+
1
4
Gem ::Specification . new do |s |
2
- s . authors = [ 'Scott Chacon' ]
3
- s . date = '2016-02-25'
5
+ s . author = 'Scott Chacon and others'
4
6
s . email = 'schacon@gmail.com'
5
- s . homepage = 'http://github.com/schacon /ruby-git'
7
+ s . homepage = 'http://github.com/ruby-git /ruby-git'
6
8
s . license = 'MIT'
7
9
s . name = 'git'
8
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.'
9
- s . version = '1.3.0'
11
+ s . version = Git :: VERSION
10
12
11
13
s . require_paths = [ 'lib' ]
12
14
s . required_ruby_version = '>= 1.9'
13
- s . required_rubygems_version = Gem ::Requirement . new ( " >= 0" ) if s . respond_to? :required_rubygems_version=
15
+ s . required_rubygems_version = Gem ::Requirement . new ( ' >= 0' ) if s . respond_to? ( :required_rubygems_version= )
14
16
s . requirements = [ 'git 1.6.0.0, or greater' ]
15
17
16
18
s . add_development_dependency 'rake'
Original file line number Diff line number Diff line change 1
1
module Git
2
-
3
2
# The current gem version
4
3
# @return [String] the current gem version.
5
4
VERSION = '1.3.0'
6
-
7
5
end
You can’t perform that action at this time.
0 commit comments