rdaux 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/lib/rdaux/version.rb +1 -1
- data/rdaux.gemspec +36 -1
- metadata +1 -5
- data/.gitignore +0 -18
- data/Gemfile +0 -9
- data/Gemfile.lock +0 -47
- data/Rakefile +0 -1
data/lib/rdaux/version.rb
CHANGED
data/rdaux.gemspec
CHANGED
|
@@ -16,7 +16,42 @@ supports ASCII art with help of ditaa}
|
|
|
16
16
|
spec.homepage = ""
|
|
17
17
|
spec.license = "MIT"
|
|
18
18
|
|
|
19
|
-
spec.files =
|
|
19
|
+
spec.files = [
|
|
20
|
+
'LICENSE.txt',
|
|
21
|
+
'README.md',
|
|
22
|
+
'bin/rdaux',
|
|
23
|
+
'lib/rdaux.rb',
|
|
24
|
+
'lib/rdaux/cli.rb',
|
|
25
|
+
'lib/rdaux/container.rb',
|
|
26
|
+
'lib/rdaux/logging_listener.rb',
|
|
27
|
+
'lib/rdaux/notifier.rb',
|
|
28
|
+
'lib/rdaux/renderer.rb',
|
|
29
|
+
'lib/rdaux/version.rb',
|
|
30
|
+
'lib/rdaux/web/application.rb',
|
|
31
|
+
'lib/rdaux/web/server.rb',
|
|
32
|
+
'lib/rdaux/web/site.rb',
|
|
33
|
+
'lib/rdaux/web/site/generator.rb',
|
|
34
|
+
'lib/rdaux/web/views/docs.erb',
|
|
35
|
+
'lib/rdaux/web/views/nav.erb',
|
|
36
|
+
'lib/rdaux/web/views/site.erb',
|
|
37
|
+
'public/css/bootstrap-responsive.css',
|
|
38
|
+
'public/css/bootstrap-responsive.min.css',
|
|
39
|
+
'public/css/bootstrap.css',
|
|
40
|
+
'public/css/bootstrap.min.css',
|
|
41
|
+
'public/css/pygments.css',
|
|
42
|
+
'public/img/ditaa/.gitignore',
|
|
43
|
+
'public/img/glyphicons-halflings-white.png',
|
|
44
|
+
'public/img/glyphicons-halflings.png',
|
|
45
|
+
'public/js/bootstrap.js',
|
|
46
|
+
'public/js/bootstrap.min.js',
|
|
47
|
+
'public/js/html5shiv.min.js',
|
|
48
|
+
'public/js/jquery.min.js',
|
|
49
|
+
'rdaux.gemspec',
|
|
50
|
+
'vendor/ditaa/COPYING',
|
|
51
|
+
'vendor/ditaa/HISTORY',
|
|
52
|
+
'vendor/ditaa/ditaa0_9.jar'
|
|
53
|
+
]
|
|
54
|
+
|
|
20
55
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
21
56
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
22
57
|
spec.require_paths = ["lib"]
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rdaux
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -169,12 +169,8 @@ executables:
|
|
|
169
169
|
extensions: []
|
|
170
170
|
extra_rdoc_files: []
|
|
171
171
|
files:
|
|
172
|
-
- .gitignore
|
|
173
|
-
- Gemfile
|
|
174
|
-
- Gemfile.lock
|
|
175
172
|
- LICENSE.txt
|
|
176
173
|
- README.md
|
|
177
|
-
- Rakefile
|
|
178
174
|
- bin/rdaux
|
|
179
175
|
- lib/rdaux.rb
|
|
180
176
|
- lib/rdaux/cli.rb
|
data/.gitignore
DELETED
data/Gemfile
DELETED
data/Gemfile.lock
DELETED
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
PATH
|
|
2
|
-
remote: .
|
|
3
|
-
specs:
|
|
4
|
-
rdaux (0.1.0)
|
|
5
|
-
avalanche-cli (= 0.1.0)
|
|
6
|
-
posix-spawn (= 0.3.6)
|
|
7
|
-
pygments.rb (= 0.5.1)
|
|
8
|
-
redcarpet (= 3.0.0)
|
|
9
|
-
sinatra (= 1.3.3)
|
|
10
|
-
tilt (= 1.4.1)
|
|
11
|
-
unicorn (= 4.6.2)
|
|
12
|
-
|
|
13
|
-
GEM
|
|
14
|
-
remote: https://rubygems.org/
|
|
15
|
-
specs:
|
|
16
|
-
avalanche-cli (0.1.0)
|
|
17
|
-
kgio (2.8.0)
|
|
18
|
-
minitest (5.0.6)
|
|
19
|
-
posix-spawn (0.3.6)
|
|
20
|
-
pygments.rb (0.5.1)
|
|
21
|
-
posix-spawn (~> 0.3.6)
|
|
22
|
-
yajl-ruby (~> 1.1.0)
|
|
23
|
-
rack (1.5.2)
|
|
24
|
-
rack-protection (1.5.0)
|
|
25
|
-
rack
|
|
26
|
-
raindrops (0.11.0)
|
|
27
|
-
rake (10.1.0)
|
|
28
|
-
redcarpet (3.0.0)
|
|
29
|
-
sinatra (1.3.3)
|
|
30
|
-
rack (~> 1.3, >= 1.3.6)
|
|
31
|
-
rack-protection (~> 1.2)
|
|
32
|
-
tilt (~> 1.3, >= 1.3.3)
|
|
33
|
-
tilt (1.4.1)
|
|
34
|
-
unicorn (4.6.2)
|
|
35
|
-
kgio (~> 2.6)
|
|
36
|
-
rack
|
|
37
|
-
raindrops (~> 0.7)
|
|
38
|
-
yajl-ruby (1.1.0)
|
|
39
|
-
|
|
40
|
-
PLATFORMS
|
|
41
|
-
ruby
|
|
42
|
-
|
|
43
|
-
DEPENDENCIES
|
|
44
|
-
bundler (~> 1.3)
|
|
45
|
-
minitest
|
|
46
|
-
rake
|
|
47
|
-
rdaux!
|
data/Rakefile
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
require "bundler/gem_tasks"
|