gitswitch 0.1.0 → 0.1.1
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 +2 -0
- data/VERSION +1 -1
- data/gitswitch.gemspec +57 -0
- metadata +5 -4
data/README.rdoc
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Easily switch your current git user info. Handy for work and personal repositories. Also might come in handy for switching between users while pair programming.
|
|
4
4
|
|
|
5
|
+
Would you rather type "git config user.email 'me@work.com'", etc. or type "gitswitch -r work"? If you answered the latter, check out this gem.
|
|
6
|
+
|
|
5
7
|
== Install
|
|
6
8
|
|
|
7
9
|
gem install gitswitch
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1
|
data/gitswitch.gemspec
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{gitswitch}
|
|
8
|
+
s.version = "0.1.1"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Joe Alba"]
|
|
12
|
+
s.date = %q{2010-09-04}
|
|
13
|
+
s.default_executable = %q{gitswitch}
|
|
14
|
+
s.description = %q{Do you write code for your employer and for yourself? Want to easily change the e-mail address associated with your commits for work and home repos? This gem might help you out.}
|
|
15
|
+
s.email = %q{joe@joealba.com}
|
|
16
|
+
s.executables = ["gitswitch"]
|
|
17
|
+
s.extra_rdoc_files = [
|
|
18
|
+
"LICENSE",
|
|
19
|
+
"README.rdoc"
|
|
20
|
+
]
|
|
21
|
+
s.files = [
|
|
22
|
+
".document",
|
|
23
|
+
".gitignore",
|
|
24
|
+
"LICENSE",
|
|
25
|
+
"README.rdoc",
|
|
26
|
+
"Rakefile",
|
|
27
|
+
"VERSION",
|
|
28
|
+
"bin/gitswitch",
|
|
29
|
+
"gitswitch.gemspec",
|
|
30
|
+
"lib/gitswitch.rb",
|
|
31
|
+
"test/helper.rb",
|
|
32
|
+
"test/test_gitswitch.rb"
|
|
33
|
+
]
|
|
34
|
+
s.homepage = %q{http://github.com/joealba/gitswitch}
|
|
35
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
36
|
+
s.require_paths = ["lib"]
|
|
37
|
+
s.rubygems_version = %q{1.3.7}
|
|
38
|
+
s.summary = %q{Easy git user switching}
|
|
39
|
+
s.test_files = [
|
|
40
|
+
"test/helper.rb",
|
|
41
|
+
"test/test_gitswitch.rb"
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
if s.respond_to? :specification_version then
|
|
45
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
46
|
+
s.specification_version = 3
|
|
47
|
+
|
|
48
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
49
|
+
s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
|
50
|
+
else
|
|
51
|
+
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
|
52
|
+
end
|
|
53
|
+
else
|
|
54
|
+
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gitswitch
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 25
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.1.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Joe Alba
|
|
@@ -48,10 +48,11 @@ files:
|
|
|
48
48
|
- README.rdoc
|
|
49
49
|
- Rakefile
|
|
50
50
|
- VERSION
|
|
51
|
+
- bin/gitswitch
|
|
52
|
+
- gitswitch.gemspec
|
|
51
53
|
- lib/gitswitch.rb
|
|
52
54
|
- test/helper.rb
|
|
53
55
|
- test/test_gitswitch.rb
|
|
54
|
-
- bin/gitswitch
|
|
55
56
|
has_rdoc: true
|
|
56
57
|
homepage: http://github.com/joealba/gitswitch
|
|
57
58
|
licenses: []
|