Skip to content
This repository has been archived by the owner on Nov 2, 2018. It is now read-only.

Commit

Permalink
update testing for jenkins
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Garvin committed Oct 4, 2012
1 parent 9932409 commit 17c290b
Show file tree
Hide file tree
Showing 10 changed files with 40 additions and 6 deletions.
2 changes: 2 additions & 0 deletions Gemfile
@@ -0,0 +1,2 @@
source 'http://rubygems.org'
gemspec
26 changes: 26 additions & 0 deletions Gemfile.lock
@@ -0,0 +1,26 @@
PATH
remote: .
specs:
feedbacker (0.1.5)

GEM
remote: http://rubygems.org/
specs:
activesupport (3.2.2)
i18n (~> 0.6)
multi_json (~> 1.0)
i18n (0.6.1)
json (1.6.5)
multi_json (1.3.6)
rake (0.9.2.2)
rdoc (3.12)
json (~> 1.4)

PLATFORMS
ruby

DEPENDENCIES
activesupport
feedbacker!
rake (>= 0.9.2)
rdoc (>= 3.12)
2 changes: 1 addition & 1 deletion Rakefile
@@ -1,6 +1,6 @@
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
require 'rdoc/task'

desc 'Default: run unit tests.'
task :default => :test
Expand Down
5 changes: 5 additions & 0 deletions feedbacker.gemspec
Expand Up @@ -9,6 +9,11 @@ Gem::Specification.new do |s|
s.homepage = "https://github.com/wwidea/feedbacker"
s.summary = %q{Sitewide Feedback form pinned to sidewall as verticle tab.}
s.description = %q{Feedbacker provides a pull out tab on the side of every page on a site for users to send feedback to the site.}

s.add_development_dependency('rake','>= 0.9.2')
s.add_development_dependency('rdoc','>= 3.12')
s.add_development_dependency('activesupport')

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- test/*`.split("\n")
s.require_paths = ["lib"]
Expand Down
1 change: 0 additions & 1 deletion init.rb

This file was deleted.

1 change: 0 additions & 1 deletion install.rb

This file was deleted.

2 changes: 1 addition & 1 deletion test/feedbacker_test.rb
Expand Up @@ -3,6 +3,6 @@
class FeedbackerTest < ActiveSupport::TestCase
# Replace this with your real tests.
test "the truth" do
assert true
assert false
end
end
3 changes: 3 additions & 0 deletions test/jenkins.bash
@@ -0,0 +1,3 @@
#!/bin/bash
bundle install
bundle exec rake test
3 changes: 2 additions & 1 deletion test/test_helper.rb
@@ -1,3 +1,4 @@
require 'rubygems'
require 'active_support'
require 'active_support/test_case'
require 'active_support/test_case'
require 'test/unit'
1 change: 0 additions & 1 deletion uninstall.rb

This file was deleted.

0 comments on commit 17c290b

Please sign in to comment.