active_cmis 0.1.0 → 0.1.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/README.md +0 -2
- data/Rakefile +2 -0
- data/VERSION +1 -1
- metadata +29 -3
data/README.md
CHANGED
|
@@ -14,8 +14,6 @@ ActiveCMIS is Ruby library aimed at easing the interaction with various CMIS pro
|
|
|
14
14
|
## Installation ##
|
|
15
15
|
If you haven't installed Nokogiri yet it will be installed automatically, you will need a C compiler and the development files for libxml2.
|
|
16
16
|
|
|
17
|
-
If you don't have Yardoc or bluecloth installed you won't be able to build the documentation and will need to add `--no-rdoc --no-ri` to the next command (or install yard and bluecloth first).
|
|
18
|
-
|
|
19
17
|
> gem install active_cmis
|
|
20
18
|
## Usage ##
|
|
21
19
|
require 'active_cmis'
|
data/Rakefile
CHANGED
|
@@ -23,6 +23,8 @@ begin
|
|
|
23
23
|
gemspec.authors = ["Joeri Samson"]
|
|
24
24
|
|
|
25
25
|
gemspec.add_runtime_dependency 'nokogiri', '>= 1.4.1'
|
|
26
|
+
gemspec.add_runtime_dependency 'yard', '>= 0.5.0'
|
|
27
|
+
gemspec.add_runtime_dependency 'bluecloth'
|
|
26
28
|
|
|
27
29
|
gemspec.has_rdoc = 'yard'
|
|
28
30
|
gemspec.extra_rdoc_files = ['TODO']
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 1
|
|
8
|
-
-
|
|
9
|
-
version: 0.1.
|
|
8
|
+
- 1
|
|
9
|
+
version: 0.1.1
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Joeri Samson
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2010-04-
|
|
17
|
+
date: 2010-04-12 00:00:00 +02:00
|
|
18
18
|
default_executable:
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
@@ -31,6 +31,32 @@ dependencies:
|
|
|
31
31
|
version: 1.4.1
|
|
32
32
|
type: :runtime
|
|
33
33
|
version_requirements: *id001
|
|
34
|
+
- !ruby/object:Gem::Dependency
|
|
35
|
+
name: yard
|
|
36
|
+
prerelease: false
|
|
37
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
|
38
|
+
requirements:
|
|
39
|
+
- - ">="
|
|
40
|
+
- !ruby/object:Gem::Version
|
|
41
|
+
segments:
|
|
42
|
+
- 0
|
|
43
|
+
- 5
|
|
44
|
+
- 0
|
|
45
|
+
version: 0.5.0
|
|
46
|
+
type: :runtime
|
|
47
|
+
version_requirements: *id002
|
|
48
|
+
- !ruby/object:Gem::Dependency
|
|
49
|
+
name: bluecloth
|
|
50
|
+
prerelease: false
|
|
51
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
|
52
|
+
requirements:
|
|
53
|
+
- - ">="
|
|
54
|
+
- !ruby/object:Gem::Version
|
|
55
|
+
segments:
|
|
56
|
+
- 0
|
|
57
|
+
version: "0"
|
|
58
|
+
type: :runtime
|
|
59
|
+
version_requirements: *id003
|
|
34
60
|
description: A CMIS library implementing both reading and updating capabilities through the AtomPub/REST binding to CMIS.
|
|
35
61
|
email: joeri@xaop.com
|
|
36
62
|
executables: []
|