geminstaller 0.4.4 → 0.4.5
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +3 -0
- data/lib/geminstaller/hoe_extensions.rb +4 -0
- data/lib/geminstaller.rb +1 -1
- data/website/src/code/index.page +16 -2
- data/website/src/index.page +2 -0
- metadata +5 -14
data/History.txt
CHANGED
data/lib/geminstaller.rb
CHANGED
data/website/src/code/index.page
CHANGED
@@ -53,7 +53,7 @@ Yeah, it's too manual. Notes for improvement below.
|
|
53
53
|
|
54
54
|
* Add section and entries for new release to History.txt
|
55
55
|
* Add same history info to history section on homepage.
|
56
|
-
* Update version in geminstaller.rb
|
56
|
+
* Update version in geminstaller.rb (if it was not done immediately after last publish, which it should have been)
|
57
57
|
* rake update_manifest
|
58
58
|
* Run tests:
|
59
59
|
** CI should be green for all versions
|
@@ -64,9 +64,23 @@ Yeah, it's too manual. Notes for improvement below.
|
|
64
64
|
* rake clean package
|
65
65
|
* Upload gem to rubyforge
|
66
66
|
* rake publish_website
|
67
|
+
* Bump the version in geminstaller.rb to the expected next release version.
|
67
68
|
|
68
69
|
Here's the improvements I need to make to the release process:
|
69
70
|
|
70
71
|
* Avoid duplication of history file to display on home page
|
71
72
|
* Make CI automatically build and tag a gem/package with next version + revision: x.y.z.<svn revision>
|
72
|
-
* Rake task to automatically tag and release latest build from CI and tag
|
73
|
+
* Rake task to automatically tag and release latest build from CI and tag
|
74
|
+
|
75
|
+
<span id="rubygems_upgrade_process"/>
|
76
|
+
h1. Rubygems Upgrade Process
|
77
|
+
|
78
|
+
Process to test against new rubygems release.
|
79
|
+
|
80
|
+
<pre>
|
81
|
+
svn export http://rubygems.rubyforge.org/svn/tags/REL_X_Y_Z spec/fixture/rubygems_dist/rubygems-X.Y.Z
|
82
|
+
</pre>
|
83
|
+
|
84
|
+
* add spec/fixture/rubygems_dist/rubytems-X.Y.Z
|
85
|
+
* checkin
|
86
|
+
* Add project for that release on CI
|
data/website/src/index.page
CHANGED
@@ -46,6 +46,8 @@ Please "report any others that you find":http://thewoolleyweb.lighthouseapp.com/
|
|
46
46
|
|
47
47
|
h2(#history). History
|
48
48
|
|
49
|
+
* 0.4.5
|
50
|
+
** Re-release without Hoe as a dependency, since it snuck itself in as a dependency in 0.4.4
|
49
51
|
* 0.4.4
|
50
52
|
** Compatibility with RubyGems 1.3.0
|
51
53
|
* 0.4.3
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: geminstaller
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chad Woolley
|
@@ -9,19 +9,10 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-09-
|
12
|
+
date: 2008-09-28 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
|
-
dependencies:
|
15
|
-
|
16
|
-
name: hoe
|
17
|
-
type: :development
|
18
|
-
version_requirement:
|
19
|
-
version_requirements: !ruby/object:Gem::Requirement
|
20
|
-
requirements:
|
21
|
-
- - ">="
|
22
|
-
- !ruby/object:Gem::Version
|
23
|
-
version: 1.7.0
|
24
|
-
version:
|
14
|
+
dependencies: []
|
15
|
+
|
25
16
|
description: "Automated Gem installation, activation, and much more! == FEATURES: GemInstaller provides automated installation, loading and activation of RubyGems. It uses a simple YAML config file to: * Automatically install the correct versions of all required gems wherever your app runs. * Automatically ensure installed gems and versions are consistent across multiple applications, machines, platforms, and environments * Automatically activate correct versions of gems on the ruby load path when your app runs ('require_gem'/'gem') * Automatically reinstall missing dependency gems (built in to RubyGems > 1.0) * Automatically detect correct platform to install for multi-platform gems (built in to RubyGems > 1.0) * Print YAML for \"rogue gems\" which are not specified in the current config, to easily bootstrap your config file, or find gems that were manually installed without GemInstaller. * Allow for common configs to be reused across projects or environments by supporting multiple config files, including common config file snippets, and defaults with overrides. * Allow for dynamic selection of gems, versions, and platforms to be used based on environment vars or any other logic. * Avoid the \"works on demo, breaks on production\" syndrome * Solve world hunger, prevent the global energy crisis, and wash your socks. == SYNOPSYS:"
|
26
17
|
email: thewoolleyman@gmail.com
|
27
18
|
executables:
|
@@ -133,7 +124,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
133
124
|
requirements: []
|
134
125
|
|
135
126
|
rubyforge_project: geminstaller
|
136
|
-
rubygems_version: 1.
|
127
|
+
rubygems_version: 1.3.0
|
137
128
|
signing_key:
|
138
129
|
specification_version: 2
|
139
130
|
summary: Automated Gem installation, activation, and much more!
|