Skip to content

Commit ea4afbb

Browse files
committed
name change
1 parent caf5463 commit ea4afbb

File tree

49 files changed

+518
-51
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+518
-51
lines changed

.sass-cache/fdbdb50f6d8d85a61aac5e340663ed13574e189b/app.scssc renamed to .sass-cache/33eab569ea115a301888e7460a1dee650ab991ce/app.scssc

70 KB
Binary file not shown.

.sass-cache/fdbdb50f6d8d85a61aac5e340663ed13574e189b/rickshaw.min.scssc renamed to .sass-cache/33eab569ea115a301888e7460a1dee650ab991ce/rickshaw.min.scssc

106 KB
Binary file not shown.

.sass-cache/d75457cd181d56b2ad1bcb936829434e1800dfb9/_grids.scssc renamed to .sass-cache/81036b2f422099261a6b2fb01e059323c59e49f8/_grids.scssc

92.5 KB
Binary file not shown.

.sass-cache/13517e8b21402bd14f46dcdc81b20b9e7de85f2d/_zen.scssc renamed to .sass-cache/b6ff1840b148837aff82d529d4a83eadb0e47a3d/_zen.scssc

898 Bytes
Binary file not shown.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# systube
1+
# Sysopia
22
A dashboard to visualize a small/medium system status

Rakefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ require "rspec"
55
require "git"
66
require "rspec/core/rake_task"
77
require "sinatra/activerecord/rake"
8-
require_relative "lib/systube"
8+
require_relative "lib/sysopia"
99

1010
task default: :spec
1111

@@ -38,16 +38,16 @@ end
3838

3939
desc "prepares everything for tests"
4040
task :testup do
41-
system("rake db:migrate SYSTUBE_ENV=test")
42-
system("rake seed SYSTUBE_ENV=test")
41+
system("rake db:migrate SYSOPIA_ENV=test")
42+
system("rake seed SYSOPIA_ENV=test")
4343
end
4444

4545
desc "create release on github"
4646
task(:release) do
4747
require "git"
4848
begin
4949
g = Git.open(File.dirname(__FILE__))
50-
new_tag = SysTube.version
50+
new_tag = Sysopia.version
5151
g.add_tag("v.#{new_tag}")
5252
g.add(all: true)
5353
g.commit("Releasing version #{new_tag}")
@@ -64,5 +64,5 @@ end
6464

6565
desc "open an irb session preloaded with this library"
6666
task :console do
67-
sh "irb -I lib -I extra -r systube.rb"
67+
sh "irb -I lib -I extra -r sysopia.rb"
6868
end

application.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
require "sass"
1111
require "childprocess"
1212

13-
require_relative "lib/systube"
13+
require_relative "lib/sysopia"
1414
require_relative "routes"
1515
require_relative "helpers"
1616

@@ -19,7 +19,7 @@
1919
helpers Sinatra::RedirectWithFlash
2020

2121
use Rack::MethodOverride
22-
use Rack::Session::Cookie, secret: SysTube.conf.session_secret
22+
use Rack::Session::Cookie, secret: Sysopia.conf.session_secret
2323
use Rack::Timeout
2424
Rack::Timeout.timeout = 9_000_000
2525

bundle_bin/byebug

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env ruby
2+
#
3+
# This file was generated by Bundler.
4+
#
5+
# The application 'byebug' is installed as part of a gem, and
6+
# this file is here to facilitate running it.
7+
#
8+
9+
require 'pathname'
10+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11+
Pathname.new(__FILE__).realpath)
12+
13+
require 'rubygems'
14+
require 'bundler/setup'
15+
16+
load Gem.bin_path('byebug', 'byebug')

bundle_bin/cdiff

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env ruby
2+
#
3+
# This file was generated by Bundler.
4+
#
5+
# The application 'cdiff' is installed as part of a gem, and
6+
# this file is here to facilitate running it.
7+
#
8+
9+
require 'pathname'
10+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11+
Pathname.new(__FILE__).realpath)
12+
13+
require 'rubygems'
14+
require 'bundler/setup'
15+
16+
load Gem.bin_path('term-ansicolor', 'cdiff')

bundle_bin/colortab

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env ruby
2+
#
3+
# This file was generated by Bundler.
4+
#
5+
# The application 'colortab' is installed as part of a gem, and
6+
# this file is here to facilitate running it.
7+
#
8+
9+
require 'pathname'
10+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11+
Pathname.new(__FILE__).realpath)
12+
13+
require 'rubygems'
14+
require 'bundler/setup'
15+
16+
load Gem.bin_path('term-ansicolor', 'colortab')

0 commit comments

Comments
 (0)