buildar 1.4.0.10 → 1.4.0.13

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/README.md +0 -2
  2. data/VERSION +1 -1
  3. data/lib/buildar/tasks.rb +3 -3
  4. metadata +2 -2
data/README.md CHANGED
@@ -179,8 +179,6 @@ You'll need to keep your gemspec file in synch with the version_file. Here's [h
179
179
  s.files = File.readlines(manifest_file).map { |f| f.chomp }
180
180
  ```
181
181
 
182
- Note, this also shows how to maintain a MANIFEST.txt file outside of your gemspec file.
183
-
184
182
  Integrate with git
185
183
  ------------------
186
184
  Enable git integration with `b.use_git = true`. This empowers `tag` and `bump`:
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.4.0.10
1
+ 1.4.0.13
data/lib/buildar/tasks.rb CHANGED
@@ -55,10 +55,9 @@ task :build => [:test, :bump_build] do
55
55
  end
56
56
  end
57
57
 
58
- # build, uninstall, install
58
+ # build, install
59
59
  #
60
60
  task :install => [:build] do
61
- sh "gem uninstall #{proj.name}"
62
61
  sh "gem install #{proj.gemfile}"
63
62
  end
64
63
 
@@ -89,7 +88,8 @@ task :tag => [:test] do
89
88
  if proj.use_git
90
89
  tagname = "v#{proj.available_version}"
91
90
  message = ENV['message'] || "auto-tagged #{tagname} by Rake"
92
- sh "git tag -a '#{tagname}' -m '#{message}'"
91
+ message.gsub!("'", "\'")
92
+ sh %Q{git tag -a "#{tagname}" -m "#{message}"}
93
93
  sh "git push origin --tags"
94
94
  end
95
95
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: buildar
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0.10
4
+ version: 1.4.0.13
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-07-08 00:00:00.000000000 Z
12
+ date: 2013-07-10 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake