Remove some redundant files that no longer make sense in the jruby-gradle world

This commit is contained in:
R. Tyler Croy 2014-11-01 18:01:22 -07:00
parent 5739610d91
commit 106194fe6f
5 changed files with 0 additions and 92 deletions

View File

@ -1,9 +0,0 @@
source "https://rubygems.org"
gemspec
gem 'coveralls', require: false
group :topology do
gem "redis"
end

View File

@ -1,46 +0,0 @@
PATH
remote: .
specs:
redstorm (0.7.0.beta1)
rake
GEM
remote: https://rubygems.org/
specs:
colorize (0.5.8)
coveralls (0.6.7)
colorize
multi_json (~> 1.3)
rest-client
simplecov (>= 0.7)
thor
diff-lcs (1.2.4)
mime-types (1.23)
multi_json (1.7.7)
rake (10.0.4)
redis (3.0.4)
rest-client (1.6.7)
mime-types (>= 1.16)
rspec (2.13.0)
rspec-core (~> 2.13.0)
rspec-expectations (~> 2.13.0)
rspec-mocks (~> 2.13.0)
rspec-core (2.13.1)
rspec-expectations (2.13.0)
diff-lcs (>= 1.1.3, < 2.0)
rspec-mocks (2.13.1)
simplecov (0.7.1)
multi_json (~> 1.0)
simplecov-html (~> 0.7.1)
simplecov-html (0.7.1)
thor (0.18.1)
PLATFORMS
java
ruby
DEPENDENCIES
coveralls
redis
redstorm!
rspec (~> 2.13)

View File

@ -1,11 +0,0 @@
require 'rspec/core/rake_task'
desc "run specs"
RSpec::Core::RakeTask.new(:spec) do
system("ruby -v")
module RedStorm; SPECS_CONTEXT = true; end
end
task :default => :spec
load 'lib/tasks/red_storm.rake'

View File

@ -1 +0,0 @@
# TODO

View File

@ -1,25 +0,0 @@
libdir = File.expand_path('../lib/', __FILE__)
$:.unshift libdir unless $:.include?(libdir)
require 'red_storm/version'
Gem::Specification.new do |s|
s.name = 'redstorm'
s.version = RedStorm::VERSION
s.authors = ['Colin Surprenant']
s.email = ['colin.surprenant@gmail.com']
s.homepage = 'https://github.com/colinsurprenant/redstorm'
s.summary = 'JRuby on Storm'
s.description = 'JRuby integration & DSL for the Storm distributed realtime computation system'
s.license = "Apache 2.0"
s.rubyforge_project = 'redstorm'
s.files = Dir.glob("{lib/**/*}") + Dir.glob("{ivy/*.xml}") + Dir.glob("{examples/**/*}") + Dir.glob("{src/**/*.java}") + Dir.glob("{bin/**/*}") + %w(redstorm.gemspec Rakefile README.md CHANGELOG.md LICENSE.md)
s.require_paths = ['lib']
s.bindir = 'bin'
s.executables = ['redstorm']
s.add_development_dependency 'rspec', '~> 2.13'
s.add_runtime_dependency 'rake'
end