Skip to content

Commit

Permalink
Begin work on 0.0.19. Also removed redis dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
ispyhumanfly committed Sep 5, 2018
1 parent c503cd9 commit 2514ace
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 30 deletions.
1 change: 0 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ source "http://rubygems.org"
gemspec

gem "rake"
gem "redis"
gem "json"
gem "eventmachine"
gem "highline"
Expand Down
45 changes: 21 additions & 24 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
iniquity (0.0.18)
iniquity (0.0.19)
ansi
eventmachine
git
Expand All @@ -10,7 +10,6 @@ PATH
inifile
json
rake
redis
rspec
rubyzip
socksify
Expand All @@ -28,18 +27,18 @@ GEM
descendants_tracker (0.0.4)
thread_safe (~> 0.3, >= 0.3.1)
diff-lcs (1.3)
eventmachine (1.2.5)
eventmachine (1.2.7)
faraday (0.12.2)
multipart-post (>= 1.2, < 3)
git (1.3.0)
git (1.5.0)
github_api (0.18.2)
addressable (~> 2.4)
descendants_tracker (~> 0.0.4)
faraday (~> 0.8)
hashie (~> 3.5, >= 3.5.2)
oauth2 (~> 1.0)
hashie (3.5.7)
highline (1.7.10)
hashie (3.6.0)
highline (2.0.0)
inifile (3.0.0)
json (2.1.0)
jwt (1.5.6)
Expand All @@ -52,24 +51,23 @@ GEM
multi_json (~> 1.3)
multi_xml (~> 0.5)
rack (>= 1.2, < 3)
public_suffix (3.0.2)
rack (2.0.4)
rake (12.3.0)
redis (4.0.1)
rspec (3.7.0)
rspec-core (~> 3.7.0)
rspec-expectations (~> 3.7.0)
rspec-mocks (~> 3.7.0)
rspec-core (3.7.1)
rspec-support (~> 3.7.0)
rspec-expectations (3.7.0)
public_suffix (3.0.3)
rack (2.0.5)
rake (12.3.1)
rspec (3.8.0)
rspec-core (~> 3.8.0)
rspec-expectations (~> 3.8.0)
rspec-mocks (~> 3.8.0)
rspec-core (3.8.0)
rspec-support (~> 3.8.0)
rspec-expectations (3.8.1)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.7.0)
rspec-mocks (3.7.0)
rspec-support (~> 3.8.0)
rspec-mocks (3.8.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.7.0)
rspec-support (3.7.1)
rubyzip (1.2.1)
rspec-support (~> 3.8.0)
rspec-support (3.8.0)
rubyzip (1.2.2)
socksify (1.7.1)
sqlite3 (1.3.13)
thin (1.7.2)
Expand All @@ -92,7 +90,6 @@ DEPENDENCIES
iniquity!
json
rake
redis
rspec
rubyzip
socksify
Expand All @@ -101,4 +98,4 @@ DEPENDENCIES
zip

BUNDLED WITH
1.15.4
1.16.1
2 changes: 1 addition & 1 deletion bin/iniquity
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class Telnet < EM::Connection
# Save xterm icon and window title on stack.
# send_data "\x1b[22;0"

send_data "\n #{ANSI::Code.white}Iniquity BBS :: #{ANSI::Code.red }Build 0.0.18 - #{ANSI::Code.blue_on_white}Telnet Connection!\n"
send_data "\n #{ANSI::Code.white}Iniquity BBS :: #{ANSI::Code.red }Build 0.0.19 - #{ANSI::Code.blue_on_white}Telnet Connection!\n"

artwork = File.join(File.dirname(File.expand_path(__FILE__)), "../artwork/we-iniq3.ans")

Expand Down
2 changes: 1 addition & 1 deletion bin/iqpkg
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ IO.readlines(artwork).each do |line|
puts line.force_encoding(Encoding::IBM437).encode(Encoding::UTF_8)
end

puts "\niqpkg - The Iniquity BBS Modules Utility.\n"
puts "\niqpkg - The Iniquity BBS Package Manager.\n"

if File.exists?(SYSTEM + "/iniquity.ini")
CONFIG = IniFile.load(SYSTEM+ "/iniquity.ini")
Expand Down
2 changes: 1 addition & 1 deletion bin/iqterm
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# . ¸$Aa . !a a! . . .. %s .s
# . ¸¸' . . '$$Aa.aA$$' . . `!$%a.a%#$
#==============================================================================
# t h e i n i q u i t y p a c k a g e m a n a g e r
# t h e i n i q u i t y t e r m i n a l c l i e n t
#==============================================================================

trap("INT") {exit}
Expand Down
3 changes: 1 addition & 2 deletions iniquity.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Gem::Specification.new do |s|
s.name = "iniquity"
s.version = "0.0.18"
s.version = "0.0.19"
s.summary = "Iniquity BBS"
s.description = "A re-imagining of the iconic BBS software."
s.authors = ["Dan Stephenson"]
Expand All @@ -15,7 +15,6 @@ Gem::Specification.new do |s|
s.metadata = { "issue_tracker" => "https://github.com/iniquitybbs/iniquity/issues" }
s.license = "MIT"
s.add_dependency("rake")
s.add_dependency("redis")
s.add_dependency("json")
s.add_dependency("eventmachine")
s.add_dependency("highline")
Expand Down

0 comments on commit 2514ace

Please sign in to comment.