stickler 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/HISTORY.rdoc +9 -0
- data/{README → README.rdoc} +3 -1
- data/lib/stickler/source.rb +0 -1
- data/lib/stickler/version.rb +1 -1
- data/tasks/config.rb +3 -3
- data/tasks/distribution.rake +7 -0
- metadata +9 -9
- data/HISTORY +0 -4
data/HISTORY.rdoc
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
= stickler Changelog
|
2
|
+
|
3
|
+
=== Version 0.1.1
|
4
|
+
* 1 minor bugfix
|
5
|
+
* remove unnecessary require 'progressbar'
|
6
|
+
|
7
|
+
=== Version 0.1.0
|
8
|
+
* {Managing a Gem Repository with Stickler}[http://copiousfreetime.org/articles/2008/10/09/managing-a-gem-repository-with-stickler.html]
|
9
|
+
* Initial public release
|
data/{README → README.rdoc}
RENAMED
@@ -3,10 +3,11 @@
|
|
3
3
|
* Homepage[http://copiousfreetime.rubyforge.org/stickler/]
|
4
4
|
* {Rubyforge Project}[http://rubyforge.org/projects/copiousfreetime/]
|
5
5
|
* email jeremy at hinegardner dot org
|
6
|
+
* {Managing a Gem Repository with Stickler}[http://copiousfreetime.org/articles/2008/10/09/managing-a-gem-repository-with-stickler.html]
|
6
7
|
|
7
8
|
== DESCRIPTION
|
8
9
|
|
9
|
-
Stickler is a tool to organize and maintain an internal gem
|
10
|
+
Stickler is a tool to organize and maintain an internal gem repository.
|
10
11
|
|
11
12
|
At times it is useful to have complete control over the availability of the gems
|
12
13
|
for you testing, staging and production environments. In these cases you
|
@@ -17,6 +18,7 @@ Configure stickler with the the names and versions of the gems you require for
|
|
17
18
|
your deployment and it will organize and setup everything that is necessary for
|
18
19
|
a standard web server to function as your internal gem distribution server.
|
19
20
|
|
21
|
+
|
20
22
|
== INSTALLATION
|
21
23
|
|
22
24
|
Install as a gem:
|
data/lib/stickler/source.rb
CHANGED
data/lib/stickler/version.rb
CHANGED
data/tasks/config.rb
CHANGED
@@ -12,11 +12,11 @@ Configuration.for('project') {
|
|
12
12
|
author "Jeremy Hinegardner"
|
13
13
|
email "jeremy at copiousfreetime dot org"
|
14
14
|
homepage "http://copiousfreetime.rubyforge.org/stickler"
|
15
|
-
description Utils.section_of("README", "description")
|
15
|
+
description Utils.section_of("README.rdoc", "description")
|
16
16
|
summary description.split(".").first
|
17
|
-
history "HISTORY"
|
17
|
+
history "HISTORY.rdoc"
|
18
18
|
license FileList["LICENSE", "COPYING"]
|
19
|
-
readme "README"
|
19
|
+
readme "README.rdoc"
|
20
20
|
}
|
21
21
|
|
22
22
|
#-----------------------------------------------------------------------
|
data/tasks/distribution.rake
CHANGED
@@ -34,5 +34,12 @@ if pkg_config = Configuration.for_if_exist?("packaging") then
|
|
34
34
|
desc "reinstall gem"
|
35
35
|
task :reinstall => [:uninstall, :repackage, :install]
|
36
36
|
|
37
|
+
desc "distribute copiously"
|
38
|
+
task :copious => [:package] do
|
39
|
+
Rake::SshFilePublisher.new('jeremy@copiousfreetime.org',
|
40
|
+
'/var/www/vhosts/www.copiousfreetime.org/htdocs/gems/gems',
|
41
|
+
'pkg',"#{Stickler::GEM_SPEC.full_name}.gem").upload
|
42
|
+
sh "ssh jeremy@copiousfreetime.org rake -f /var/www/vhosts/www.copiousfreetime.org/htdocs/gems/Rakefile"
|
43
|
+
end
|
37
44
|
end
|
38
45
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stickler
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jeremy Hinegardner
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-10-
|
12
|
+
date: 2008-10-12 00:00:00 -06:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -72,15 +72,15 @@ dependencies:
|
|
72
72
|
- !ruby/object:Gem::Version
|
73
73
|
version: "0.0"
|
74
74
|
version:
|
75
|
-
description: Stickler is a tool to organize and maintain an internal gem
|
75
|
+
description: Stickler is a tool to organize and maintain an internal gem repository. At times it is useful to have complete control over the availability of the gems for you testing, staging and production environments. In these cases you probably do not want to accidentally type 'gem update' and get a new untested version of a gem installed on your machines. This is where Stickler helps. Configure stickler with the the names and versions of the gems you require for your deployment and it will organize and setup everything that is necessary for a standard web server to function as your internal gem distribution server.
|
76
76
|
email: jeremy at copiousfreetime dot org
|
77
77
|
executables:
|
78
78
|
- stickler
|
79
79
|
extensions: []
|
80
80
|
|
81
81
|
extra_rdoc_files:
|
82
|
-
- README
|
83
|
-
- HISTORY
|
82
|
+
- README.rdoc
|
83
|
+
- HISTORY.rdoc
|
84
84
|
- LICENSE
|
85
85
|
- COPYING
|
86
86
|
- lib/stickler/cli.rb
|
@@ -111,8 +111,8 @@ files:
|
|
111
111
|
- spec/spec_helper.rb
|
112
112
|
- spec/version_spec.rb
|
113
113
|
- data/stickler.yml
|
114
|
-
- README
|
115
|
-
- HISTORY
|
114
|
+
- README.rdoc
|
115
|
+
- HISTORY.rdoc
|
116
116
|
- LICENSE
|
117
117
|
- COPYING
|
118
118
|
- tasks/announce.rake
|
@@ -130,7 +130,7 @@ rdoc_options:
|
|
130
130
|
- --line-numbers
|
131
131
|
- --inline-source
|
132
132
|
- --main
|
133
|
-
- README
|
133
|
+
- README.rdoc
|
134
134
|
require_paths:
|
135
135
|
- lib
|
136
136
|
required_ruby_version: !ruby/object:Gem::Requirement
|
@@ -151,6 +151,6 @@ rubyforge_project: copiousfreetime
|
|
151
151
|
rubygems_version: 1.2.0
|
152
152
|
signing_key:
|
153
153
|
specification_version: 2
|
154
|
-
summary: Stickler is a tool to organize and maintain an internal gem
|
154
|
+
summary: Stickler is a tool to organize and maintain an internal gem repository
|
155
155
|
test_files: []
|
156
156
|
|
data/HISTORY
DELETED