winci-updater 0.0.1 → 0.0.2
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/{README.txt → README.md} +10 -14
- data/lib/winci-updater/version.rb +1 -1
- data/winci-updater.gemspec +1 -1
- metadata +7 -7
data/{README.txt → README.md}
RENAMED
@@ -18,21 +18,20 @@ It introduces Agile technologies into provisioning process by keeping it integra
|
|
18
18
|
|
19
19
|
WinCI-updater is written in Ruby and uses 'ruby-git' project to automate interaction with Git executable.
|
20
20
|
|
21
|
-
WinCI-updater is intended to be
|
21
|
+
WinCI-updater is intended to be used in conjunction with WinCI-server, which is another gem containing functionality necessary
|
22
22
|
to setup Jenkins CI and enabling to create installation bundle used in provisioning process.
|
23
23
|
|
24
|
-
|
25
24
|
Why This Project
|
26
25
|
=======
|
27
26
|
|
28
27
|
I needed an automatic update process that would keep changes made by end-users on client and at the same time would keep everything up to date with the Continuous Integration Server,
|
29
|
-
even if the updates would come so frequent as a few times a day as in Agile
|
30
|
-
from the server, extracted locally and replaced with the old one, each time a new update appear, seem to be
|
31
|
-
- application bundle ofen weights more than a few megabytes, but corporate computers have usually limited internet connection and so downloading this bundle a few times a day from the server located outside LAN is not efficient
|
32
|
-
- extracted app bundle can weight a few hundred of megabytes and so moving/deleting this whole bunch a few times a day only to get small update, slows down corporate computers and also defragments the disks to slow it even more
|
28
|
+
even if the updates would come so frequent as a few times a day as in Agile development. Using standard update process where a whole application is being downloaded
|
29
|
+
from the server, extracted locally and replaced with the old one, each time a new update appear, seem to be inappropriate for corporate environments because:
|
33
30
|
|
34
|
-
|
31
|
+
* application bundle often weights more than a few megabytes, but corporate computers have usually limited internet connection and so downloading this bundle a few times a day from the server located outside LAN is not efficient
|
32
|
+
* extracted app bundle's size can exceed a few hundred of megabytes and so moving/deleting this whole bunch a few times a day only to get small update, slows down corporate computers and also defragments the disks to slow it even more
|
35
33
|
|
34
|
+
The solution is to incorporate into provisioning a VCS or DVCS such like Git and this project is realization of this solution.
|
36
35
|
|
37
36
|
Usage
|
38
37
|
=====
|
@@ -40,7 +39,6 @@ Usage
|
|
40
39
|
First download and run WinCI-server.
|
41
40
|
Then take a look at test suite (Cucumber stories and RSpec examples in features and spec directories) for examples of usage.
|
42
41
|
|
43
|
-
|
44
42
|
Developer Instructions
|
45
43
|
======================
|
46
44
|
|
@@ -53,22 +51,20 @@ The dependencies for the gem and for developing the gem are managed by Bundler.
|
|
53
51
|
The test suite is run with:
|
54
52
|
|
55
53
|
bundle exec rake
|
56
|
-
|
57
54
|
|
58
55
|
TODO list
|
59
56
|
=========
|
60
57
|
|
61
|
-
*
|
62
|
-
*
|
63
|
-
*
|
64
|
-
|
58
|
+
* Integrate with Gerrit Jenkins plugin
|
59
|
+
* Integrate with build-publisher Jenkins plugin
|
60
|
+
* Incorporate Grit gem for possible enhancements
|
65
61
|
|
66
62
|
License
|
67
63
|
=======
|
68
64
|
|
69
65
|
(The MIT License)
|
70
66
|
|
71
|
-
Copyright (c) 2011 Kamil Sobieraj,
|
67
|
+
Copyright (c) 2011 Kamil Sobieraj, ksobej@gmail.com
|
72
68
|
|
73
69
|
Permission is hereby granted, free of charge, to any person obtaining
|
74
70
|
a copy of this software and associated documentation files (the
|
data/winci-updater.gemspec
CHANGED
@@ -24,5 +24,5 @@ Gem::Specification.new do |s|
|
|
24
24
|
s.add_development_dependency("cucumber", ["~> 0.10.2"])
|
25
25
|
s.add_development_dependency("rspec", ["~> 2.5.0"])
|
26
26
|
s.add_development_dependency("jenkins-war", ["~> 1.401"])
|
27
|
-
s.add_development_dependency("winci", ["~> 0.0.
|
27
|
+
s.add_development_dependency("winci", ["~> 0.0.3"])
|
28
28
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: winci-updater
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 27
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 2
|
10
|
+
version: 0.0.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Kamil Sobieraj
|
@@ -105,12 +105,12 @@ dependencies:
|
|
105
105
|
requirements:
|
106
106
|
- - ~>
|
107
107
|
- !ruby/object:Gem::Version
|
108
|
-
hash:
|
108
|
+
hash: 25
|
109
109
|
segments:
|
110
110
|
- 0
|
111
111
|
- 0
|
112
|
-
-
|
113
|
-
version: 0.0.
|
112
|
+
- 3
|
113
|
+
version: 0.0.3
|
114
114
|
type: :development
|
115
115
|
version_requirements: *id006
|
116
116
|
description: Introduces Agile technologies into provisioning process by keeping it integrated with Continuous Integration Server. To do so it incorporates Git DVCS into the process.
|
@@ -126,7 +126,7 @@ files:
|
|
126
126
|
- .gitignore
|
127
127
|
- Gemfile
|
128
128
|
- History.txt
|
129
|
-
- README.
|
129
|
+
- README.md
|
130
130
|
- Rakefile
|
131
131
|
- features/development.feature
|
132
132
|
- features/fixtures/files.git/HEAD
|