visage-app 0.9.6 → 1.0.0
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/Gemfile +1 -1
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/visage-app.gemspec +5 -2
- metadata +11 -9
data/Gemfile
CHANGED
data/Rakefile
CHANGED
|
@@ -25,7 +25,7 @@ begin
|
|
|
25
25
|
gemspec.add_dependency "sinatra", "~> 1.1.3"
|
|
26
26
|
gemspec.add_dependency "tilt", "~> 1.2.2"
|
|
27
27
|
gemspec.add_dependency "haml", "~> 3.0.13"
|
|
28
|
-
gemspec.add_dependency "errand", "
|
|
28
|
+
gemspec.add_dependency "errand", "= 0.7.3"
|
|
29
29
|
gemspec.add_dependency "yajl-ruby", "~> 0.8.1"
|
|
30
30
|
end
|
|
31
31
|
rescue LoadError
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
1.0.0
|
data/visage-app.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{visage-app}
|
|
8
|
-
s.version = "0.9.
|
|
8
|
+
s.version = "0.9.6"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Lindsay Holmwood"]
|
|
12
|
-
s.date = %q{2011-
|
|
12
|
+
s.date = %q{2011-05-11}
|
|
13
13
|
s.default_executable = %q{visage-app}
|
|
14
14
|
s.description = %q{Visage is a web interface for viewing collectd statistics. It also provides a JSON interface onto collectd's RRD data, giving you an easy way to mash up the data.}
|
|
15
15
|
s.email = %q{lindsay@holmwood.id.au}
|
|
@@ -20,6 +20,7 @@ Gem::Specification.new do |s|
|
|
|
20
20
|
s.files = [
|
|
21
21
|
"AUTHORS",
|
|
22
22
|
"Gemfile",
|
|
23
|
+
"Gemfile.lock",
|
|
23
24
|
"LICENCE",
|
|
24
25
|
"README.md",
|
|
25
26
|
"Rakefile",
|
|
@@ -29,6 +30,7 @@ Gem::Specification.new do |s|
|
|
|
29
30
|
"features/cli.feature",
|
|
30
31
|
"features/data/config/with_no_profiles/.stub",
|
|
31
32
|
"features/json.feature",
|
|
33
|
+
"features/meta.feature",
|
|
32
34
|
"features/profiles.feature",
|
|
33
35
|
"features/step_definitions/form_steps.rb",
|
|
34
36
|
"features/step_definitions/json_steps.rb",
|
|
@@ -62,6 +64,7 @@ Gem::Specification.new do |s|
|
|
|
62
64
|
"lib/visage-app/public/javascripts/mootools-1.2.3-core.js",
|
|
63
65
|
"lib/visage-app/public/javascripts/mootools-1.2.5.1-more.js",
|
|
64
66
|
"lib/visage-app/public/stylesheets/screen.css",
|
|
67
|
+
"lib/visage-app/types.rb",
|
|
65
68
|
"lib/visage-app/views/builder.haml",
|
|
66
69
|
"lib/visage-app/views/layout.haml",
|
|
67
70
|
"lib/visage-app/views/profile.haml",
|
metadata
CHANGED
|
@@ -3,10 +3,10 @@ name: visage-app
|
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease: false
|
|
5
5
|
segments:
|
|
6
|
+
- 1
|
|
6
7
|
- 0
|
|
7
|
-
-
|
|
8
|
-
|
|
9
|
-
version: 0.9.6
|
|
8
|
+
- 0
|
|
9
|
+
version: 1.0.0
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Lindsay Holmwood
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2011-
|
|
17
|
+
date: 2011-06-11 00:00:00 +10:00
|
|
18
18
|
default_executable: visage-app
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
@@ -57,11 +57,13 @@ dependencies:
|
|
|
57
57
|
name: errand
|
|
58
58
|
requirement: &id004 !ruby/object:Gem::Requirement
|
|
59
59
|
requirements:
|
|
60
|
-
- - "
|
|
60
|
+
- - "="
|
|
61
61
|
- !ruby/object:Gem::Version
|
|
62
62
|
segments:
|
|
63
63
|
- 0
|
|
64
|
-
|
|
64
|
+
- 7
|
|
65
|
+
- 3
|
|
66
|
+
version: 0.7.3
|
|
65
67
|
prerelease: false
|
|
66
68
|
type: :runtime
|
|
67
69
|
version_requirements: *id004
|
|
@@ -195,13 +197,13 @@ dependencies:
|
|
|
195
197
|
name: errand
|
|
196
198
|
requirement: &id015 !ruby/object:Gem::Requirement
|
|
197
199
|
requirements:
|
|
198
|
-
- -
|
|
200
|
+
- - "="
|
|
199
201
|
- !ruby/object:Gem::Version
|
|
200
202
|
segments:
|
|
201
203
|
- 0
|
|
202
204
|
- 7
|
|
203
|
-
-
|
|
204
|
-
version: 0.7.
|
|
205
|
+
- 3
|
|
206
|
+
version: 0.7.3
|
|
205
207
|
prerelease: false
|
|
206
208
|
type: :runtime
|
|
207
209
|
version_requirements: *id015
|