winton-externals 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/README.markdown CHANGED
@@ -16,12 +16,12 @@ Configuration
16
16
  Create *config/externals.yml*:
17
17
 
18
18
  <pre>
19
- pa_stats:
20
- repo: git@github.com:br/pa_stats.git
21
- path: vendor/gems
22
19
  acts_as_archive:
23
- repo: git@github.com:winton/acts_as_archive.git
20
+ repo: git://github.com/winton/acts_as_archive.git
24
21
  path: vendor/plugins
22
+ rails:
23
+ repo: git://github.com/rails/rails.git
24
+ path: vendor
25
25
  </pre>
26
26
 
27
27
  Freeze or unfreeze
data/Rakefile CHANGED
@@ -17,8 +17,8 @@ spec = Gem::Specification.new do |s|
17
17
  s.name = GEM_NAME
18
18
  s.platform = Gem::Platform::RUBY
19
19
  s.require_path = "lib"
20
- s.summary = "Work on git externals without affecting others"
21
- s.version = "1.0.0"
20
+ s.summary = "Quickly freeze and unfreeze external git dependencies"
21
+ s.version = "1.0.1"
22
22
  end
23
23
 
24
24
  desc "Package gem"
data/externals.gemspec CHANGED
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{externals}
5
- s.version = "1.0.0"
5
+ s.version = "1.0.1"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Winton Welsh"]
9
- s.date = %q{2009-04-27}
9
+ s.date = %q{2009-05-20}
10
10
  s.default_executable = %q{externals}
11
11
  s.email = %q{mail@wintoni.us}
12
12
  s.executables = ["externals"]
@@ -15,7 +15,7 @@ Gem::Specification.new do |s|
15
15
  s.homepage = %q{http://github.com/winton/externals}
16
16
  s.require_paths = ["lib"]
17
17
  s.rubygems_version = %q{1.3.1}
18
- s.summary = %q{Work on git externals without affecting others}
18
+ s.summary = %q{Quickly freeze and unfreeze external git dependencies}
19
19
 
20
20
  if s.respond_to? :specification_version then
21
21
  current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
@@ -94,10 +94,6 @@ module Externals
94
94
  # Remove snapshot
95
95
  FileUtils.rm_f("#{@name}.git.tgz")
96
96
  end
97
- # Reset repository to snapshot
98
- Dir.chdir(repo_path) do
99
- `git reset --hard` unless $TESTING
100
- end
101
97
  else
102
98
  # Clone fresh repo if no snapshot found
103
99
  install
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: winton-externals
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
  - Winton Welsh
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-04-27 00:00:00 -07:00
12
+ date: 2009-05-20 00:00:00 -07:00
13
13
  default_executable: externals
14
14
  dependencies: []
15
15
 
@@ -66,6 +66,6 @@ rubyforge_project:
66
66
  rubygems_version: 1.2.0
67
67
  signing_key:
68
68
  specification_version: 2
69
- summary: Work on git externals without affecting others
69
+ summary: Quickly freeze and unfreeze external git dependencies
70
70
  test_files: []
71
71