nucleon 0.1.18 → 0.1.19

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.
Files changed (6) hide show
  1. checksums.yaml +4 -4
  2. data/.gitmodules +3 -0
  3. data/Rakefile +16 -3
  4. data/VERSION +1 -1
  5. data/nucleon.gemspec +3 -2
  6. metadata +3 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e6ff2bf95744a81c9916f21a28eb90416b4b9ad3
4
- data.tar.gz: 8c89a55877a8b95c3519b064743c59a8b2968197
3
+ metadata.gz: b1235f5a25a31be0dc6c8291d2b81a2acf7f53a8
4
+ data.tar.gz: 12b4bfce18a0dee640ee3192def3394c8ce404fe
5
5
  SHA512:
6
- metadata.gz: f4144efb99538641e30a6a0c0b98ef44b3351c14c7f02c8a61b97d70096f15468dc129800ecbe69a65e17b09f7316642fc933b2d2296b71d6df2ec824dede45f
7
- data.tar.gz: 9187470522bed1c022163fd7cb9105a436cfad7bf26978d4f87101d22055e9ebd271d6b333557642d07f624896d5280f977ddec74b97104e0e42570023ea8af3
6
+ metadata.gz: 23d165b074de631f79469f11ba947ccead4fd1cfce9b6219edec419db9abf9506167c498044a9bd2e606b2c5c6c08195eb94a6afe47641f29010caf4336ebd81
7
+ data.tar.gz: 90e7d32a20a4d4fd697733e9c6a5194572836e1281d18f8927935649671438beec83c31d43d4cfdfc566ee4223eee15341a6ee4ecb3f0c399888fc7154db8187
@@ -0,0 +1,3 @@
1
+ [submodule "rdoc/template"]
2
+ path = rdoc/template
3
+ url = https://github.com/coralnexus/rdoc-darkfish-template.git
data/Rakefile CHANGED
@@ -69,16 +69,29 @@ task :default => :spec
69
69
  version = Nucleon.VERSION
70
70
  doc_title = "nucleon #{version}"
71
71
 
72
+ class RDoc::Options
73
+ def template_dir_for(template)
74
+ File.join(File.dirname(__FILE__), 'rdoc', 'template')
75
+ end
76
+ end
77
+
72
78
  Rake::RDocTask.new do |rdoc|
73
- rdoc.rdoc_dir = 'rdoc'
79
+ rdoc.rdoc_dir = File.join('rdoc', 'site', version)
80
+
74
81
  rdoc.title = doc_title
75
- rdoc.rdoc_files.include('README*')
82
+ rdoc.main = 'README.rdoc'
83
+
84
+ rdoc.options << '--line-numbers'
85
+ rdoc.options << '--all'
86
+ rdoc.options << '-w' << '2'
87
+
88
+ rdoc.rdoc_files.include('*.rdoc')
76
89
  rdoc.rdoc_files.include('lib/**/*.rb')
77
90
  end
78
91
 
79
92
  #---
80
93
 
81
94
  YARD::Rake::YardocTask.new do |ydoc|
82
- ydoc.files = [ 'README*', 'lib/**/*.rb' ]
95
+ ydoc.files = [ '*.rdoc', 'lib/**/*.rb' ]
83
96
  ydoc.options = [ "--output-dir yardoc", "--title '#{doc_title}'" ]
84
97
  end
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.18
1
+ 0.1.19
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "nucleon"
8
- s.version = "0.1.18"
8
+ s.version = "0.1.19"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Adrian Webb"]
12
- s.date = "2014-05-16"
12
+ s.date = "2014-05-21"
13
13
  s.description = "\nA framework that provides a simple foundation for building Ruby applications that are:\n\n* Highly configurable (with both distributed and persistent configurations)\n* Extremely pluggable and extendable\n* Easily parallel\n\nNote: This framework is still very early in development!\n"
14
14
  s.email = "adrian.webb@coralnexus.com"
15
15
  s.executables = ["nucleon"]
@@ -19,6 +19,7 @@ Gem::Specification.new do |s|
19
19
  ]
20
20
  s.files = [
21
21
  ".document",
22
+ ".gitmodules",
22
23
  "ARCHITECTURE.rdoc",
23
24
  "Gemfile",
24
25
  "Gemfile.lock",
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nucleon
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.18
4
+ version: 0.1.19
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adrian Webb
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-05-16 00:00:00.000000000 Z
11
+ date: 2014-05-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: log4r
@@ -280,6 +280,7 @@ extra_rdoc_files:
280
280
  - README.rdoc
281
281
  files:
282
282
  - .document
283
+ - .gitmodules
283
284
  - ARCHITECTURE.rdoc
284
285
  - Gemfile
285
286
  - Gemfile.lock