edward-crazy_ivan 0.2.0 → 0.2.1
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/Rakefile +29 -0
- data/VERSION +1 -1
- data/crazy_ivan.gemspec +1 -1
- metadata +3 -2
data/Rakefile
CHANGED
|
@@ -20,10 +20,39 @@ begin
|
|
|
20
20
|
gem.rubyforge_project = "crazyivan"
|
|
21
21
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
|
22
22
|
end
|
|
23
|
+
Jeweler::RubyforgeTasks.new do |rubyforge|
|
|
24
|
+
rubyforge.doc_task = "rdoc"
|
|
25
|
+
end
|
|
23
26
|
rescue LoadError
|
|
24
27
|
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
|
|
25
28
|
end
|
|
26
29
|
|
|
30
|
+
begin
|
|
31
|
+
require 'rake/contrib/sshpublisher'
|
|
32
|
+
namespace :rubyforge do
|
|
33
|
+
|
|
34
|
+
desc "Release gem and RDoc documentation to RubyForge"
|
|
35
|
+
task :release => ["rubyforge:release:gem", "rubyforge:release:docs"]
|
|
36
|
+
|
|
37
|
+
namespace :release do
|
|
38
|
+
desc "Publish RDoc to RubyForge."
|
|
39
|
+
task :docs => [:rdoc] do
|
|
40
|
+
config = YAML.load(
|
|
41
|
+
File.read(File.expand_path('~/.rubyforge/user-config.yml'))
|
|
42
|
+
)
|
|
43
|
+
|
|
44
|
+
host = "#{config['username']}@rubyforge.org"
|
|
45
|
+
remote_dir = "/var/www/gforge-projects/crazyivan/"
|
|
46
|
+
local_dir = 'rdoc'
|
|
47
|
+
|
|
48
|
+
Rake::SshDirPublisher.new(host, remote_dir, local_dir).upload
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
end
|
|
52
|
+
rescue LoadError
|
|
53
|
+
puts "Rake SshDirPublisher is unavailable or your rubyforge environment is not configured."
|
|
54
|
+
end
|
|
55
|
+
|
|
27
56
|
require 'rake/testtask'
|
|
28
57
|
Rake::TestTask.new(:test) do |test|
|
|
29
58
|
test.libs << 'lib' << 'test'
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.1
|
data/crazy_ivan.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: edward-crazy_ivan
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Edward Ocampo-Gooding
|
|
@@ -157,6 +157,7 @@ files:
|
|
|
157
157
|
- vendor/json-1.1.7/tools/server.rb
|
|
158
158
|
has_rdoc: false
|
|
159
159
|
homepage: http://github.com/edward/crazy_ivan
|
|
160
|
+
licenses:
|
|
160
161
|
post_install_message:
|
|
161
162
|
rdoc_options:
|
|
162
163
|
- --charset=UTF-8
|
|
@@ -177,7 +178,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
177
178
|
requirements: []
|
|
178
179
|
|
|
179
180
|
rubyforge_project: crazyivan
|
|
180
|
-
rubygems_version: 1.
|
|
181
|
+
rubygems_version: 1.3.5
|
|
181
182
|
signing_key:
|
|
182
183
|
specification_version: 3
|
|
183
184
|
summary: Crazy Ivan (CI) is simplest possible continuous integration tool.
|