bee_python 0.1.2 → 0.1.3
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 +1 -1
- data/python.yml +3 -3
- metadata +37 -35
data/README
CHANGED
data/python.yml
CHANGED
|
@@ -23,11 +23,11 @@
|
|
|
23
23
|
# 2.6 and 2.7, not checked if property not set)
|
|
24
24
|
py_version: ~
|
|
25
25
|
# list of directories with Python source files to check
|
|
26
|
-
py_chk_src: [
|
|
26
|
+
py_chk_src: ["src", "test"]
|
|
27
27
|
# list of Python files to check
|
|
28
28
|
py_chk_files: ""
|
|
29
29
|
# directories to include in Python path while checking
|
|
30
|
-
py_chk_path: [
|
|
30
|
+
py_chk_path: ["src", "test"]
|
|
31
31
|
# tells if Python source check is lenient
|
|
32
32
|
py_chk_len: false
|
|
33
33
|
# Pylint options
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
# Pylint configuration file
|
|
36
36
|
py_chk_cfg: "pylint.cfg"
|
|
37
37
|
# list of directories with Python source files to document
|
|
38
|
-
py_doc_src: [
|
|
38
|
+
py_doc_src: ["src", "test"]
|
|
39
39
|
# directory where to generate source documentation
|
|
40
40
|
py_doc_dir: "#{py_build_dir}/epydoc"
|
|
41
41
|
# Python documentation option
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bee_python
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 29
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 3
|
|
10
|
+
version: 0.1.3
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Michel Casabianca
|
|
@@ -15,7 +15,8 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date:
|
|
18
|
+
date: 2013-09-07 00:00:00 +02:00
|
|
19
|
+
default_executable:
|
|
19
20
|
dependencies:
|
|
20
21
|
- !ruby/object:Gem::Dependency
|
|
21
22
|
name: bee
|
|
@@ -44,49 +45,50 @@ extra_rdoc_files:
|
|
|
44
45
|
- LICENSE
|
|
45
46
|
files:
|
|
46
47
|
- lib/bee_task_python.rb
|
|
47
|
-
- egg/
|
|
48
|
-
- egg/
|
|
49
|
-
- egg/
|
|
48
|
+
- egg/egg/build.yml
|
|
49
|
+
- egg/egg/ez_setup.py
|
|
50
|
+
- egg/egg/pylint.cfg
|
|
51
|
+
- egg/egg/script.py
|
|
52
|
+
- egg/egg/setup.erb
|
|
53
|
+
- egg/egg/test.py
|
|
54
|
+
- egg/egg.yml
|
|
55
|
+
- egg/http/build.erb
|
|
56
|
+
- egg/http/libhttp.py
|
|
57
|
+
- egg/http/pylint.cfg
|
|
58
|
+
- egg/http/server.py
|
|
59
|
+
- egg/http/test.erb
|
|
60
|
+
- egg/http.yml
|
|
61
|
+
- egg/mysql/mysql.py
|
|
62
|
+
- egg/mysql.yml
|
|
50
63
|
- egg/project/build.erb
|
|
64
|
+
- egg/project/pylint.cfg
|
|
51
65
|
- egg/project/script.py
|
|
52
|
-
- egg/
|
|
66
|
+
- egg/project/test.py
|
|
67
|
+
- egg/project.yml
|
|
68
|
+
- egg/script/build.erb
|
|
69
|
+
- egg/script/pylint.cfg
|
|
70
|
+
- egg/script/script.py
|
|
71
|
+
- egg/script.yml
|
|
53
72
|
- egg/soap/build.erb
|
|
54
73
|
- egg/soap/client.py
|
|
74
|
+
- egg/soap/pylint.cfg
|
|
55
75
|
- egg/soap/server.py
|
|
56
|
-
- egg/
|
|
57
|
-
- egg/egg.yml
|
|
58
|
-
- egg/project.yml
|
|
76
|
+
- egg/soap.yml
|
|
59
77
|
- egg/source/source.py
|
|
60
|
-
- egg/
|
|
78
|
+
- egg/source.yml
|
|
79
|
+
- egg/test/test.py
|
|
80
|
+
- egg/test.yml
|
|
61
81
|
- egg/xmlrpc/build.erb
|
|
62
82
|
- egg/xmlrpc/client.py
|
|
83
|
+
- egg/xmlrpc/pylint.cfg
|
|
63
84
|
- egg/xmlrpc/server.py
|
|
64
|
-
- egg/
|
|
65
|
-
- egg/http/pylint.cfg
|
|
66
|
-
- egg/http/build.erb
|
|
67
|
-
- egg/http/server.py
|
|
68
|
-
- egg/http/libhttp.py
|
|
69
|
-
- egg/soap.yml
|
|
70
|
-
- egg/script/pylint.cfg
|
|
71
|
-
- egg/script/build.erb
|
|
72
|
-
- egg/script/script.py
|
|
73
|
-
- egg/source.yml
|
|
74
|
-
- egg/mysql/mysql.py
|
|
75
|
-
- egg/script.yml
|
|
76
|
-
- egg/test.yml
|
|
77
|
-
- egg/mysql.yml
|
|
78
|
-
- egg/http.yml
|
|
79
|
-
- egg/egg/build.yml
|
|
80
|
-
- egg/egg/test.py
|
|
81
|
-
- egg/egg/setup.erb
|
|
82
|
-
- egg/egg/pylint.cfg
|
|
83
|
-
- egg/egg/ez_setup.py
|
|
84
|
-
- egg/egg/script.py
|
|
85
|
-
- tools/test/suite.py
|
|
85
|
+
- egg/xmlrpc.yml
|
|
86
86
|
- tools/compile/compile.py
|
|
87
|
+
- tools/test/suite.py
|
|
87
88
|
- python.yml
|
|
88
89
|
- README
|
|
89
90
|
- LICENSE
|
|
91
|
+
has_rdoc: true
|
|
90
92
|
homepage: http://bee.rubyforge.org
|
|
91
93
|
licenses: []
|
|
92
94
|
|
|
@@ -116,7 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
116
118
|
requirements: []
|
|
117
119
|
|
|
118
120
|
rubyforge_project: none
|
|
119
|
-
rubygems_version: 1.
|
|
121
|
+
rubygems_version: 1.4.2
|
|
120
122
|
signing_key:
|
|
121
123
|
specification_version: 3
|
|
122
124
|
summary: Bee package to manage Python projects
|