rubinius-bundler-canary 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 6222c60bcf64b2eb1c2ef58fb7c8509f7b3beb5e
4
+ data.tar.gz: da71f426bb7f290b1b18b095ff64b6a493903685
5
+ SHA512:
6
+ metadata.gz: d46863834b7189a18eb238f67973e1d304f504851d3ec825bbc7cd46d133655e5c0c69cd74ab572ba67c0b9827aa01d1911d3fc57a70366f01e413ee8e277628
7
+ data.tar.gz: e73401a06f15afb255200e2e9fd00456117d84789aedd619be4d052b7d4fde8868ddb005f6abfb78e71ecca43738af62cd0e8cf7f2fa89ba439b75234aecef55
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,8 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem 'rake'
4
+ gem 'rubinius-bundler-canary', '~> 1.0'
5
+
6
+ platforms :rbx do
7
+ gem 'rubysl'
8
+ end
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Brian Shirai
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,18 @@
1
+ # Bundler Canary
2
+
3
+ This repository contains a Gemfile to assist troubleshooting issues with
4
+ Bundler and RubySL. The Gemfile includes:
5
+
6
+ ```ruby
7
+ platforms :rbx do
8
+ gem 'rubysl'
9
+ end
10
+ ```
11
+
12
+ ## Contributing
13
+
14
+ 1. Fork it
15
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
16
+ 3. Commit your changes (`git commit -am 'Added some feature'`)
17
+ 4. Push to the branch (`git push origin my-new-feature`)
18
+ 5. Create new Pull Request
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/canary"
4
+
5
+ Bundler::Canary.alive?
@@ -0,0 +1,10 @@
1
+ require "bundler/canary/version"
2
+
3
+ module Bundler
4
+ module Canary
5
+ def self.alive?
6
+ puts "Yes"
7
+ exit 0
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,5 @@
1
+ module Bundler
2
+ module Canary
3
+ VERSION = "1.0.0"
4
+ end
5
+ end
@@ -0,0 +1,21 @@
1
+ # coding: utf-8
2
+ require './lib/bundler/canary/version'
3
+
4
+ Gem::Specification.new do |spec|
5
+ spec.name = "rubinius-bundler-canary"
6
+ spec.version = Bundler::Canary::VERSION
7
+ spec.authors = ["Brian Shirai"]
8
+ spec.email = ["brixen@gmail.com"]
9
+ spec.summary = %q{A utility to test Rubinius runs Bundler.}
10
+ spec.description = %q{A simple repository and gem to help test and troubleshoot issues with Rubinius running Bundler.}
11
+ spec.homepage = "https://github.com/rubinius/bundler-canary"
12
+ spec.license = "BSD"
13
+
14
+ spec.files = `git ls-files`.split($/)
15
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
16
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
17
+ spec.require_paths = ["lib"]
18
+
19
+ spec.add_development_dependency "bundler", "~> 1.5"
20
+ spec.add_development_dependency "rake"
21
+ end
metadata ADDED
@@ -0,0 +1,82 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rubinius-bundler-canary
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Brian Shirai
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-12-28 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ prerelease: false
15
+ name: bundler
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - "~>"
19
+ - !ruby/object:Gem::Version
20
+ version: '1.5'
21
+ type: :development
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.5'
27
+ - !ruby/object:Gem::Dependency
28
+ prerelease: false
29
+ name: rake
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: '0'
35
+ type: :development
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: A simple repository and gem to help test and troubleshoot issues with
42
+ Rubinius running Bundler.
43
+ email:
44
+ - brixen@gmail.com
45
+ executables:
46
+ - rubinius-bundler-canary
47
+ extensions: []
48
+ extra_rdoc_files: []
49
+ files:
50
+ - ".gitignore"
51
+ - Gemfile
52
+ - LICENSE.txt
53
+ - README.md
54
+ - bin/rubinius-bundler-canary
55
+ - lib/bundler/canary.rb
56
+ - lib/bundler/canary/version.rb
57
+ - rubinius-bundler-canary.gemspec
58
+ homepage: https://github.com/rubinius/bundler-canary
59
+ licenses:
60
+ - BSD
61
+ metadata: {}
62
+ post_install_message:
63
+ rdoc_options: []
64
+ require_paths:
65
+ - lib
66
+ required_ruby_version: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - ">="
69
+ - !ruby/object:Gem::Version
70
+ version: '0'
71
+ required_rubygems_version: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ requirements: []
77
+ rubyforge_project:
78
+ rubygems_version: 2.1.10
79
+ signing_key:
80
+ specification_version: 4
81
+ summary: A utility to test Rubinius runs Bundler.
82
+ test_files: []