meta_project 0.4.14 → 0.4.15
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +6 -0
- data/README +15 -16
- data/Rakefile +1 -1
- metadata +2 -2
data/CHANGES
CHANGED
data/README
CHANGED
@@ -1,28 +1,18 @@
|
|
1
|
-
= MetaProject 0.4.
|
1
|
+
= MetaProject 0.4.15
|
2
2
|
|
3
|
-
MetaProject
|
3
|
+
MetaProject is a library that allows interaction with various project hosting servers, issue trackers, SCMs and SCM browsers through a common API.
|
4
4
|
|
5
5
|
MetaProject also includes is a Quick Release System (QRS) for [RubyForge, SourceForge and other SourceForge clones] (commonly referred to as XForge throughout the documentation) as well as RAA and Freshmeat. QRS support for other hosts is in the pipe.
|
6
6
|
|
7
7
|
== Feature overview
|
8
8
|
|
9
|
-
===
|
10
|
-
|
11
|
-
* Obtain preconfigured RSCM:http://rscm.rubyforge.org objects.
|
12
|
-
|
13
|
-
=== SCM browser related
|
14
|
-
|
15
|
-
* Obtain preconfigured SCM browser proxy objects that can generate various links with a simple API.
|
16
|
-
|
17
|
-
* Treat files in the SCM browser just as stdlib Pathname object (only a subset is provided)
|
18
|
-
|
19
|
-
=== QRS related
|
9
|
+
=== QRS (Quick Release System) related
|
20
10
|
|
21
11
|
* QRS: Create/Upload new releases (with multiple files if desired).
|
22
12
|
|
23
13
|
* Rake integration (use the QRS from Rake scripts).
|
24
14
|
|
25
|
-
* Publish
|
15
|
+
* Publish news items for XForge project.
|
26
16
|
|
27
17
|
* Publish on RAA (SOAP under the hood)
|
28
18
|
|
@@ -44,6 +34,16 @@ MetaProject also includes is a Quick Release System (QRS) for [RubyForge, Source
|
|
44
34
|
|
45
35
|
* Query home page URLs for a project.
|
46
36
|
|
37
|
+
=== RSCM related
|
38
|
+
|
39
|
+
* Obtain preconfigured RSCM:http://rscm.rubyforge.org objects.
|
40
|
+
|
41
|
+
=== SCM browser related
|
42
|
+
|
43
|
+
* Obtain preconfigured SCM browser proxy objects that can generate various links with a simple API.
|
44
|
+
|
45
|
+
* Treat files in the SCM browser just as stdlib Pathname object (only a subset of the Pathname API is provided)
|
46
|
+
|
47
47
|
== Screen Scraping
|
48
48
|
|
49
49
|
MetaProject uses <a href="http://www.catb.org/~esr/jargon/html/S/screen-scraping.html">screen scraping</a> heavily. This is a last-resort technique which is only used when there is no other approach (XML-RPC/SOAP/REST) to retrieve data more reliably. As a result, some of the functionality might break if the HTML of the hosts MetaProject scrapes data from changes. If you think MetaProject is misbehaving because of changed HTML on some external system that MetaProject interacts with, please file a bug report in MetaProject's bug tracker on RubyForge.
|
@@ -78,8 +78,7 @@ If you're writing an application that interacts with MetaProject, please refer t
|
|
78
78
|
|
79
79
|
=== I don't have a CHANGES file that MetaProject's Rake tasks understands. How do I disable it?
|
80
80
|
When using the Rake tasks Rake::XForge::Release and Rake::XForge::NewsPublisher, you can omit parsing
|
81
|
-
of the CHANGES file by
|
82
|
-
and +release_changes+ to the task. Example:
|
81
|
+
of the CHANGES file by specifying +release_notes+ and +release_changes+ to the task. Example:
|
83
82
|
|
84
83
|
task :release_files => [:gem] do
|
85
84
|
release_files = FileList[
|
data/Rakefile
CHANGED
@@ -24,7 +24,7 @@ require 'rake/rdoctask'
|
|
24
24
|
#
|
25
25
|
# REMEMBER TO KEEP PKG_VERSION IN SYNC WITH THE CHANGES FILE!
|
26
26
|
PKG_NAME = "meta_project"
|
27
|
-
PKG_VERSION = "0.4.
|
27
|
+
PKG_VERSION = "0.4.15"
|
28
28
|
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
|
29
29
|
PKG_FILES = FileList[
|
30
30
|
'[A-Z]*',
|
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.11
|
|
3
3
|
specification_version: 1
|
4
4
|
name: meta_project
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.4.
|
7
|
-
date: 2006-
|
6
|
+
version: 0.4.15
|
7
|
+
date: 2006-05-03 00:00:00 -05:00
|
8
8
|
summary: Ruby library for interacting with project hosting servers, scms and issue trackers.
|
9
9
|
require_paths:
|
10
10
|
- lib
|