repo-fixture 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4ab1242b730e36cda5acc34c41384546058ce03f
4
- data.tar.gz: 4d1bb0ce70eb1a541023a56848317f7d00bc6162
3
+ metadata.gz: dd568f7364aa01bdad9414c8dc9848c9da4dfdbc
4
+ data.tar.gz: 9c7b1f21bb054c7286f2f5f6307b450f329b7927
5
5
  SHA512:
6
- metadata.gz: ab1cbad9f3af721fcf77ddf93d6238492298bed6e0d1e6220b32eefe1cd9c93a6b1de91405a071587764fd77681a4c8947883c42fabb1539e1fae79e2c5340ac
7
- data.tar.gz: 77509df96d653ffba83baec0491fa609ad03b0bda97d6687ae9a822c9cc188fa8bc4d3fb89b88a5b319840ecc96f33f76daaaee15efc4d23ec26f0e3d88d6df8
6
+ metadata.gz: 61229bde788934f097aa1eb124157129ce7137015be1eca4ebd0a0f6311c0d7332ff561fd945a476c6f0abc5aeae888e9366c08a7c0ad6ebbdcdac686701cab5
7
+ data.tar.gz: ce135e5844b568c082cb9ed5c6f5e8e8084326cba8b90c0aea1a8f3f366362afe2fa8281c8cef7774df3a5f364d075f1da40ca11ead2382b3f053fa29f4ddb59
@@ -1,3 +1,7 @@
1
1
  == 1.0.0
2
2
 
3
3
  * Birthday!
4
+
5
+ == 1.0.1
6
+
7
+ * Configure fake git username and email.
@@ -11,6 +11,8 @@ module RepoFixture
11
11
 
12
12
  def initialize(repo)
13
13
  @repo = repo
14
+ repo.git('config --global user.email "fake@example.com"')
15
+ repo.git('config --global user.name "Fake Person"')
14
16
  end
15
17
 
16
18
  # Copies files into the repo.
@@ -1,5 +1,5 @@
1
1
  # encoding: UTF-8
2
2
 
3
3
  module RepoFixture
4
- VERSION = '1.0.0'
4
+ VERSION = '1.0.1'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: repo-fixture
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cameron Dutro
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-09 00:00:00.000000000 Z
11
+ date: 2015-01-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tmp-repo
@@ -45,21 +45,21 @@ executables: []
45
45
  extensions: []
46
46
  extra_rdoc_files: []
47
47
  files:
48
- - Gemfile
49
- - History.txt
50
- - README.md
51
- - Rakefile
52
- - lib/repo-fixture.rb
53
48
  - lib/repo-fixture/fixture.rb
54
49
  - lib/repo-fixture/version.rb
55
50
  - lib/repo-fixture/zip_strategy.rb
56
- - repo-fixture.gemspec
51
+ - lib/repo-fixture.rb
57
52
  - spec/fixture_files/moar_test.coffee
58
53
  - spec/fixture_files/test.rb
59
54
  - spec/fixture_spec.rb
60
55
  - spec/repo-fixture_spec.rb
61
56
  - spec/spec_helper.rb
62
57
  - spec/zip_strategy_spec.rb
58
+ - Gemfile
59
+ - History.txt
60
+ - README.md
61
+ - Rakefile
62
+ - repo-fixture.gemspec
63
63
  homepage: http://github.com/camertron
64
64
  licenses: []
65
65
  metadata: {}
@@ -79,8 +79,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
79
79
  version: '0'
80
80
  requirements: []
81
81
  rubyforge_project:
82
- rubygems_version: 2.2.2
82
+ rubygems_version: 2.0.14
83
83
  signing_key:
84
84
  specification_version: 4
85
85
  summary: Build and package up git repositories as test fixtures.
86
86
  test_files: []
87
+ has_rdoc: true