summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorBoris Verkhovskiy <boris.verk@gmail.com>2024-04-07 03:39:54 -0700
committerBoris Verkhovskiy <boris.verk@gmail.com>2024-04-08 21:07:30 -0700
commit1baca665b842c6b346e524aaa14b75479e294db9 (patch)
tree5c24c26605979a288d5c17329c3dd92af3c23f13
parenta2b4f54dc673935785807ab0ffeef120032adbab (diff)
Remove Travis-CI
-rw-r--r--.travis.yml3
-rw-r--r--Gemfile5
-rw-r--r--Gemfile.lock15
-rw-r--r--Rakefile23
4 files changed, 0 insertions, 46 deletions
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index ab89cb23..00000000
--- a/.travis.yml
+++ /dev/null
@@ -1,3 +0,0 @@
-language: ruby
-rvm:
- - 2.2
diff --git a/Gemfile b/Gemfile
deleted file mode 100644
index c30a6497..00000000
--- a/Gemfile
+++ /dev/null
@@ -1,5 +0,0 @@
-source 'http://rubygems.org'
-group :test do
- gem 'rake'
- gem 'charlock_holmes'
-end
diff --git a/Gemfile.lock b/Gemfile.lock
deleted file mode 100644
index ba15ad75..00000000
--- a/Gemfile.lock
+++ /dev/null
@@ -1,15 +0,0 @@
-GEM
- remote: http://rubygems.org/
- specs:
- charlock_holmes (0.7.3)
- rake (12.0.0)
-
-PLATFORMS
- ruby
-
-DEPENDENCIES
- charlock_holmes
- rake
-
-BUNDLED WITH
- 1.13.7
diff --git a/Rakefile b/Rakefile
deleted file mode 100644
index 6a31bd72..00000000
--- a/Rakefile
+++ /dev/null
@@ -1,23 +0,0 @@
-task default: %w[encoding yaml return_code]
-$failure = 0
-task :encoding do
- begin
- ruby 'tests/encoding.rb'
- rescue Exception => msg
- puts msg
- $failure += 1
- end
-end
-task :yaml do
- begin
- ruby 'tests/yaml.rb'
- rescue Exception => msg
- puts msg
- $failure += 1
- end
-end
-task :return_code do
- if $failure != 0
- raise "Failed #{$failure} tests!!"
- end
-end