Skip to content

Commit

Permalink
Installed rspec
Browse files Browse the repository at this point in the history
  • Loading branch information
Tammer Saleh committed Oct 20, 2011
1 parent 6d0eb7f commit 3346274
Show file tree
Hide file tree
Showing 9 changed files with 124 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Gemfile
@@ -0,0 +1,2 @@
source :rubygems
gemspec
25 changes: 25 additions & 0 deletions Gemfile.lock
@@ -0,0 +1,25 @@
PATH
remote: .
specs:
youtrack (0.0.1)

GEM
remote: http://rubygems.org/
specs:
diff-lcs (1.1.3)
rspec (2.7.0)
rspec-core (~> 2.7.0)
rspec-expectations (~> 2.7.0)
rspec-mocks (~> 2.7.0)
rspec-core (2.7.1)
rspec-expectations (2.7.0)
diff-lcs (~> 1.1.2)
rspec-mocks (2.7.0)

PLATFORMS
ruby

DEPENDENCIES
bundler (>= 1.0.0)
rspec (~> 2.0)
youtrack!
Empty file removed README
Empty file.
8 changes: 8 additions & 0 deletions Rakefile
@@ -0,0 +1,8 @@
require 'bundler'
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec)
Bundler::GemHelper.install_tasks

task :default => :spec

16 changes: 16 additions & 0 deletions bin/autospec
@@ -0,0 +1,16 @@
#!/usr/bin/env ruby
#
# This file was generated by Bundler.
#
# The application 'autospec' is installed as part of a gem, and
# this file is here to facilitate running it.
#

require 'pathname'
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
Pathname.new(__FILE__).realpath)

require 'rubygems'
require 'bundler/setup'

load Gem.bin_path('rspec-core', 'autospec')
16 changes: 16 additions & 0 deletions bin/htmldiff
@@ -0,0 +1,16 @@
#!/usr/bin/env ruby
#
# This file was generated by Bundler.
#
# The application 'htmldiff' is installed as part of a gem, and
# this file is here to facilitate running it.
#

require 'pathname'
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
Pathname.new(__FILE__).realpath)

require 'rubygems'
require 'bundler/setup'

load Gem.bin_path('diff-lcs', 'htmldiff')
16 changes: 16 additions & 0 deletions bin/ldiff
@@ -0,0 +1,16 @@
#!/usr/bin/env ruby
#
# This file was generated by Bundler.
#
# The application 'ldiff' is installed as part of a gem, and
# this file is here to facilitate running it.
#

require 'pathname'
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
Pathname.new(__FILE__).realpath)

require 'rubygems'
require 'bundler/setup'

load Gem.bin_path('diff-lcs', 'ldiff')
16 changes: 16 additions & 0 deletions bin/rspec
@@ -0,0 +1,16 @@
#!/usr/bin/env ruby
#
# This file was generated by Bundler.
#
# The application 'rspec' is installed as part of a gem, and
# this file is here to facilitate running it.
#

require 'pathname'
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
Pathname.new(__FILE__).realpath)

require 'rubygems'
require 'bundler/setup'

load Gem.bin_path('rspec-core', 'rspec')
25 changes: 25 additions & 0 deletions youtrack.gemspec
@@ -0,0 +1,25 @@
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/youtrack/version", __FILE__)

Gem::Specification.new do |s|
s.name = "youtrack"
s.version = YouTrack::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Tammer Saleh"]
s.email = ["tsaleh@gmail.com"]
s.homepage = "http://www.jetbrains.com/youtrack/"
s.summary = "YouTrack Ruby Client"
s.description = "Use this to interact with YouTrack"

s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "ey_youtrack"

# s.add_dependency "rest-client"
# s.add_dependency "nokogiri"
s.add_development_dependency "bundler", ">= 1.0.0"
s.add_development_dependency "rspec", "~> 2.0"

s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
s.require_path = 'lib'
end

0 comments on commit 3346274

Please sign in to comment.