geminstaller 0.4.4 → 0.4.5

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/History.txt CHANGED
@@ -1,3 +1,6 @@
1
+ == 0.4.5 / 2008-09-26
2
+ * Re-release without Hoe as a dependency, since it snuck itself in as a dependency in 0.4.4
3
+
1
4
  == 0.4.4 / 2008-09-20
2
5
  * Compatibility with RubyGems 1.3.0
3
6
 
@@ -2,4 +2,8 @@ class IndependentHoe < Hoe
2
2
  def extra_deps
3
3
  []
4
4
  end
5
+
6
+ def extra_dev_deps
7
+ []
8
+ end
5
9
  end
data/lib/geminstaller.rb CHANGED
@@ -34,7 +34,7 @@ module GemInstaller
34
34
  end
35
35
 
36
36
  def self.version
37
- "0.4.4"
37
+ "0.4.5"
38
38
  end
39
39
 
40
40
  def self.create_application(args = [], registry = nil)
@@ -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
@@ -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
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-20 00:00:00 -07:00
12
+ date: 2008-09-28 00:00:00 -07:00
13
13
  default_executable:
14
- dependencies:
15
- - !ruby/object:Gem::Dependency
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.2.0.1861
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!