Created
September 14, 2011 00:44
-
-
Save klauern/1215579 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ bundle config | |
| Settings are listed in order of priority. The top value will be used. | |
| bin | |
| Set for your local app (/Users/klauer/Programming/Ruby/mantisrb/.bundle/config): "bin" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| source "http://rubygems.org" | |
| # Specify your gem's dependencies in mantisrb.gemspec | |
| gemspec |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PATH | |
| remote: . | |
| specs: | |
| mantisrb (0.0.1) | |
| builder (~> 2.1.2) | |
| bundler | |
| log4r | |
| nokogiri | |
| nokogiri | |
| savon | |
| GEM | |
| remote: http://rubygems.org/ | |
| specs: | |
| akami (1.0.0) | |
| gyoku (>= 0.4.0) | |
| builder (2.1.2) | |
| coderay (0.9.8) | |
| ffi (1.0.9) | |
| growl (1.0.3) | |
| guard (0.6.3) | |
| thor (~> 0.14.6) | |
| guard-minitest (0.4.0) | |
| guard (~> 0.4) | |
| guard-rake (0.0.1) | |
| guard | |
| rake | |
| gyoku (0.4.4) | |
| builder (>= 2.1.2) | |
| httpi (0.9.5) | |
| rack | |
| log4r (1.1.9) | |
| method_source (0.6.5) | |
| ruby_parser (>= 2.0.5) | |
| minitest (2.6.0) | |
| multi_json (1.0.3) | |
| nokogiri (1.5.0) | |
| nori (1.0.2) | |
| pry (0.9.5) | |
| coderay (>= 0.9.8) | |
| method_source (>= 0.6.5) | |
| ruby_parser (>= 2.0.5) | |
| slop (~> 2.1.0) | |
| rack (1.3.2) | |
| rake (0.9.2) | |
| rb-fchange (0.0.5) | |
| ffi | |
| rb-fsevent (0.4.3.1) | |
| rb-notifu (0.0.4) | |
| rdiscount (1.6.8) | |
| rr (1.0.4) | |
| ruby_parser (2.3.0) | |
| sexp_processor (~> 3.0) | |
| savon (0.9.7) | |
| akami (~> 1.0) | |
| builder (>= 2.1.2) | |
| gyoku (>= 0.4.0) | |
| httpi (~> 0.9) | |
| nokogiri (>= 1.4.0) | |
| nori (~> 1.0) | |
| wasabi (~> 2.0) | |
| sexp_processor (3.0.6) | |
| simplecov (0.5.3) | |
| multi_json (~> 1.0.3) | |
| simplecov-html (~> 0.5.3) | |
| simplecov-html (0.5.3) | |
| slop (2.1.0) | |
| thor (0.14.6) | |
| wasabi (2.0.0) | |
| nokogiri (>= 1.4.0) | |
| yard (0.7.2) | |
| PLATFORMS | |
| ruby | |
| DEPENDENCIES | |
| growl | |
| guard | |
| guard-minitest | |
| guard-rake | |
| mantisrb! | |
| minitest (>= 2.5.0) | |
| pry (>= 0.9.5) | |
| rake | |
| rb-fchange | |
| rb-fsevent | |
| rb-notifu | |
| rdiscount | |
| rr | |
| simplecov (>= 0.5.2) | |
| yard |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- encoding: utf-8 -*- | |
| $:.push File.expand_path("../lib", __FILE__) | |
| require "mantisrb/version" | |
| Gem::Specification.new do |s| | |
| s.name = "mantisrb" | |
| s.version = Mantisrb::VERSION | |
| s.authors = ["Nick Klauer"] | |
| s.email = ["klauer@gmail.com"] | |
| s.homepage = "http://github.com/klauern/mantisrb" | |
| s.summary = %q{Mantis BT utility for working with Mantis through the Mantis Connect(http://www.futureware.biz/mantisconnect/) SOAP API. yeah, SOAP...not my call} | |
| s.description = %q{This utility provides a Ruby interface for working with a remote Mantis (http://www.mantisbt.org) issue tracker through the Mantis Connect SOAP API.} | |
| s.rubyforge_project = "mantisrb" | |
| 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"] | |
| s.add_runtime_dependency "nokogiri" | |
| s.add_runtime_dependency "bundler" | |
| s.add_runtime_dependency "builder", "~> 2.1.2" | |
| s.add_runtime_dependency "savon" | |
| s.add_runtime_dependency "nokogiri" | |
| s.add_runtime_dependency "log4r" | |
| s.add_development_dependency "minitest", ">= 2.5.0" | |
| s.add_development_dependency "rake" | |
| s.add_development_dependency "guard" | |
| s.add_development_dependency "rb-fchange" | |
| s.add_development_dependency "rb-notifu" | |
| s.add_development_dependency "guard-minitest" | |
| s.add_development_dependency "guard-rake" | |
| s.add_development_dependency "growl" | |
| s.add_development_dependency "rb-fsevent" | |
| s.add_development_dependency "yard" | |
| s.add_development_dependency "rdiscount" | |
| s.add_development_dependency "pry", ">= 0.9.5" | |
| s.add_development_dependency "simplecov", '>= 0.5.2' | |
| s.add_development_dependency "rr" | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment