Skip to content
This repository has been archived by the owner on Jul 23, 2023. It is now read-only.

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
johnbintz committed Oct 17, 2011
0 parents commit 6fb661f
Show file tree
Hide file tree
Showing 8 changed files with 5,769 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
@@ -0,0 +1,4 @@
*.gem
.bundle
Gemfile.lock
pkg/*
4 changes: 4 additions & 0 deletions Gemfile
@@ -0,0 +1,4 @@
source "http://rubygems.org"

# Specify your gem's dependencies in jasmine-spec-extras.gemspec
gemspec
2 changes: 2 additions & 0 deletions Rakefile
@@ -0,0 +1,2 @@
require "bundler/gem_tasks"

22 changes: 22 additions & 0 deletions jasmine-spec-extras.gemspec
@@ -0,0 +1,22 @@
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
s.name = "jasmine-spec-extras"
s.version = '0.0.1'
s.authors = ["John Bintz"]
s.email = ["john@coswellproductions.com"]
s.homepage = ""
s.summary = %q{Bundle together oft-used Jasmine helper files in a clean way.}
s.description = %q{Bundle together oft-used Jasmine helper files in a clean way.}

s.rubyforge_project = "jasmine-spec-extras"

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]

# specify any dependencies here; for example:
# s.add_development_dependency "rspec"
# s.add_runtime_dependency "rest-client"
end
Empty file added lib/jasmine-spec-extras.rb
Empty file.
Empty file added lib/jasmine/ext/spec_extras.rb
Empty file.

0 comments on commit 6fb661f

Please sign in to comment.