cocot 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c6d11981088f683d5398b64fc35339c81552693c
4
- data.tar.gz: 2ffdc092d790b105ff3576f011cfd95471516ddd
3
+ metadata.gz: 42fea14b2757abf3c5492b459c46e0660bb7dd42
4
+ data.tar.gz: dc9933ad1bbf1f29ee942a16fa1625840b3dd4fb
5
5
  SHA512:
6
- metadata.gz: ecdeae1041490af69e40828cc5bada0034c5148c80a88523469007f3b3b63a4b6eb8f3a2d60cd0b8197f0de682fa68ebc296f0a8a2b510f08dca344423edb25e
7
- data.tar.gz: 9f906a104cc78fc023f1b91b4a25c7c88f5572dc3d97bdd5d42a25d034a77c107abd51e1b244603bdb110c27f9e71de8467927bc8b5592e0eb6d8ecf546e2166
6
+ metadata.gz: d7814d839a6a94893b2cd0bc7d2a6a7f377e99c4fd898fe2662dab762258d79ae81f7b12ff70b63933e8ca3b5817f6d065cff8e1dd5fa63c2e7a21fe7d5a18b8
7
+ data.tar.gz: 75aae19c64ed8ed85b88a4ff89b76702fd266fd1460e3f87af652b7e18a1ef9d30f7127a2e807889cca2185041a03909a3b8c89548a77022611762a90463b647
@@ -1,3 +1,8 @@
1
+ 1.1.1
2
+ -----
3
+
4
+ * Changed :rdoc rake task in Rakefile generated. Documentation now output properly: ignoring cucumber, rspec and minitest code; also ignoring irrelevant folders such as "bin", "data", "doc", "ext" and "share". The only files looked for RDoc on main working directory are "Changelog.md", "License.md" and "ReadMe.md". "ReadMe.md" is now settled as the main content to show when you open "index.html" RDoc generated file.
5
+
1
6
  1.1.0
2
7
  -----
3
8
  * Changed LICENSE.md
@@ -15,7 +15,7 @@ gem 'cucumber'
15
15
  gem 'rake'
16
16
  gem 'rdoc'
17
17
  gem 'bundler'
18
- ;T:
18
+ ;T:
19
19
  require 'rake/testtask'
20
20
  #necessary for cucumber tests
21
21
  require 'cucumber/rake/task'
@@ -48,9 +48,9 @@ end
48
48
 
49
49
  desc 'to generate RDoc documentation'
50
50
  task :rdoc do
51
- system('rdoc --all --tab-width=1 --format=darkfish --op=doc --force-output')
51
+ system('rdoc --all --tab-width=1 --force-output --main="ReadMe.md" --exclude="bin" --exclude="data" --exclude="ext" --exclude="share" --exclude="doc" --exclude="features" --exclude="spec" --exclude="cocot.gemspec" --exclude="Gemfile" --exclude="Gemfile.lock" --exclude="Rakefile"')
52
52
  end
53
- ;T:rakefile_rspec_onlyI"#necessary for rspec tests
53
+ ;T:rakefile_rspec_onlyI"7#necessary for rspec tests
54
54
  require 'rspec/core/rake_task'
55
55
 
56
56
  #################TASKS#######################
@@ -63,9 +63,9 @@ end
63
63
 
64
64
  desc 'to generate RDoc documentation'
65
65
  task :rdoc do
66
- system('rdoc --all --tab-width=1 --format=darkfish --op=doc --force-output')
66
+ system('rdoc --all --tab-width=1 --force-output --main="ReadMe.md" --exclude="bin" --exclude="data" --exclude="ext" --exclude="share" --exclude="doc" --exclude="spec" --exclude="cocot.gemspec" --exclude="Gemfile" --exclude="Gemfile.lock" --exclude="Rakefile"')
67
67
  end
68
- ;T:rakefile_cucumber_onlyI"�#necessary for cucumber tests
68
+ ;T:rakefile_cucumber_onlyI"X#necessary for cucumber tests
69
69
  require 'cucumber/rake/task'
70
70
 
71
71
  #################TASKS#######################
@@ -82,9 +82,9 @@ end
82
82
 
83
83
  desc 'to generate RDoc documentation'
84
84
  task :rdoc do
85
- system('rdoc --all --tab-width=1 --format=darkfish --op=doc --force-output')
85
+ system('rdoc --all --tab-width=1 --force-output --main="ReadMe.md" --exclude="bin" --exclude="data" --exclude="ext" --exclude="share" --exclude="doc" --exclude="features" --exclude="cocot.gemspec" --exclude="Gemfile" --exclude="Gemfile.lock" --exclude="Rakefile"')
86
86
  end
87
- ;T:rakefile_minitest_onlyI"�#necessary for minitest tests
87
+ ;T:rakefile_minitest_onlyI"�#necessary for minitest tests
88
88
  require 'rake/testtask'
89
89
 
90
90
  #################TASKS#######################
@@ -97,12 +97,12 @@ end
97
97
 
98
98
  desc 'to generate RDoc documentation'
99
99
  task :rdoc do
100
- system('rdoc --all --tab-width=1 --format=darkfish --op=doc --force-output')
100
+ system('rdoc --all --tab-width=1 --force-output --main="ReadMe.md" --exclude="bin" --exclude="data" --exclude="ext" --exclude="share" --exclude="doc" --exclude="test" --exclude="cocot.gemspec" --exclude="Gemfile" --exclude="Gemfile.lock" --exclude="Rakefile"')
101
101
  end
102
- ;T:rakefile_cleanI"�#################TASKS#######################
102
+ ;T:rakefile_cleanI"]#################TASKS#######################
103
103
 
104
104
  desc 'to generate RDoc documentation'
105
105
  task :rdoc do
106
- system('rdoc --all --tab-width=1 --format=darkfish --op=doc --force-output')
106
+ system('rdoc --all --tab-width=1 --force-output --main="ReadMe.md" --exclude="bin" --exclude="data" --exclude="ext" --exclude="share" --exclude="doc" --exclude="cocot.gemspec" --exclude="Gemfile" --exclude="Gemfile.lock" --exclude="Rakefile"')
107
107
  end
108
108
  ;T
@@ -76,7 +76,7 @@ end
76
76
 
77
77
  desc 'to generate RDoc documentation'
78
78
  task :rdoc do
79
- system('rdoc --all --tab-width=1 --format=darkfish --op=doc --force-output')
79
+ system('rdoc --all --tab-width=1 --force-output --main="ReadMe.md" --exclude="bin" --exclude="data" --exclude="ext" --exclude="share" --exclude="doc" --exclude="features" --exclude="spec" --exclude="cocot.gemspec" --exclude="Gemfile" --exclude="Gemfile.lock" --exclude="Rakefile"')
80
80
  end
81
81
  STR
82
82
 
@@ -95,7 +95,7 @@ end
95
95
 
96
96
  desc 'to generate RDoc documentation'
97
97
  task :rdoc do
98
- system('rdoc --all --tab-width=1 --format=darkfish --op=doc --force-output')
98
+ system('rdoc --all --tab-width=1 --force-output --main="ReadMe.md" --exclude="bin" --exclude="data" --exclude="ext" --exclude="share" --exclude="doc" --exclude="spec" --exclude="cocot.gemspec" --exclude="Gemfile" --exclude="Gemfile.lock" --exclude="Rakefile"')
99
99
  end
100
100
  STR
101
101
 
@@ -118,7 +118,7 @@ end
118
118
 
119
119
  desc 'to generate RDoc documentation'
120
120
  task :rdoc do
121
- system('rdoc --all --tab-width=1 --format=darkfish --op=doc --force-output')
121
+ system('rdoc --all --tab-width=1 --force-output --main="ReadMe.md" --exclude="bin" --exclude="data" --exclude="ext" --exclude="share" --exclude="doc" --exclude="features" --exclude="cocot.gemspec" --exclude="Gemfile" --exclude="Gemfile.lock" --exclude="Rakefile"')
122
122
  end
123
123
  STR
124
124
 
@@ -137,7 +137,7 @@ end
137
137
 
138
138
  desc 'to generate RDoc documentation'
139
139
  task :rdoc do
140
- system('rdoc --all --tab-width=1 --format=darkfish --op=doc --force-output')
140
+ system('rdoc --all --tab-width=1 --force-output --main="ReadMe.md" --exclude="bin" --exclude="data" --exclude="ext" --exclude="share" --exclude="doc" --exclude="test" --exclude="cocot.gemspec" --exclude="Gemfile" --exclude="Gemfile.lock" --exclude="Rakefile"')
141
141
  end
142
142
  STR
143
143
 
@@ -147,6 +147,6 @@ COCOT::CONTENIDO_DE_ARCHIVOS[:rakefile_clean] = \
147
147
 
148
148
  desc 'to generate RDoc documentation'
149
149
  task :rdoc do
150
- system('rdoc --all --tab-width=1 --format=darkfish --op=doc --force-output')
150
+ system('rdoc --all --tab-width=1 --force-output --main="ReadMe.md" --exclude="bin" --exclude="data" --exclude="ext" --exclude="share" --exclude="doc" --exclude="cocot.gemspec" --exclude="Gemfile" --exclude="Gemfile.lock" --exclude="Rakefile"')
151
151
  end
152
152
  STR
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cocot
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Damián M. González
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-04-12 00:00:00.000000000 Z
11
+ date: 2015-04-13 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Skeleton builder of a new proyect which could be developed with BDD/TDD.
14
14
  This application build the folders and files needed to start developing fast a new