mono 0.0.1

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: 540e04f53e014b861489a57c6b1b3cba771d139c
4
+ data.tar.gz: 28e3dbbce2f103b5e2068956bc6a30fdc0196a6f
5
+ SHA512:
6
+ metadata.gz: e9a8e51bb1796b2115977d2f4c0158e8674b18307c42a96de5ff8ca0b03ff4809b4c9b279b6e7d96b2dedf67efccb7eb2f0e3f0630261cd5984f1670d34a855d
7
+ data.tar.gz: d19b0762004659544ec811cfa349090c99a47f32dbfeb498168ce3436be417fc46be61f578318623a3847016d883c0a50043d98dcd2c29940e0298907c15819a
Binary file
@@ -0,0 +1,18 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ coverage
6
+ InstalledFiles
7
+ lib/bundler/man
8
+ pkg
9
+ rdoc
10
+ spec/reports
11
+ test/tmp
12
+ test/version_tmp
13
+ tmp
14
+
15
+ # YARD artifacts
16
+ .yardoc
17
+ _yardoc
18
+ doc/
data/Gemfile ADDED
@@ -0,0 +1,16 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Declare your gem's dependencies in dashing.gemspec.
4
+ # Bundler will treat runtime dependencies like base dependencies, and
5
+ # development dependencies will be added by default to the :development group.
6
+ gemspec
7
+
8
+ # Declare any dependencies that are still in development here instead of in
9
+ # your gemspec. These might include edge Rails or gems from your path or
10
+ # Git. Remember to move these dependencies to your gemspec before releasing
11
+ # your gem to rubygems.org.
12
+ gem "pry", "~> 0.9.12.4"
13
+
14
+ group :test do
15
+ gem "minitest", "~> 5.1.0"
16
+ end
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2013 ピエスヴィアール(P.S.V.R)
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
6
+ this software and associated documentation files (the "Software"), to deal in
7
+ the Software without restriction, including without limitation the rights to
8
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9
+ the Software, and to permit persons to whom the Software is furnished to do so,
10
+ subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,4 @@
1
+ Mono
2
+ ====
3
+
4
+ Embedding the Mono runtime into your Ruby application.
@@ -0,0 +1,2 @@
1
+ module Mono
2
+ end
@@ -0,0 +1,3 @@
1
+ module Mono
2
+ VERSION='0.0.1'
3
+ end
@@ -0,0 +1,18 @@
1
+ lib = File.expand_path('../lib', __FILE__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require 'mono/version'
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = 'mono'
7
+ s.version = Mono::VERSION
8
+ s.summary = "Embedding the Mono runtime into your Ruby application."
9
+ s.description = "Embedding the Mono runtime into your Ruby application."
10
+ s.authors = ["P.S.V.R"]
11
+ s.email = 'pmq2001@gmail.com'
12
+ s.homepage = 'https://github.com/pmq20/mono'
13
+ s.license = 'MIT'
14
+
15
+ s.files = `git ls-files`.split($/)
16
+ s.test_files = s.files.grep(%r{^(test|spec|features)/})
17
+ s.require_paths = ["lib"]
18
+ end
File without changes
File without changes
metadata ADDED
@@ -0,0 +1,55 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mono
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - P.S.V.R
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-03-06 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Embedding the Mono runtime into your Ruby application.
14
+ email: pmq2001@gmail.com
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - ".DS_Store"
20
+ - ".gitignore"
21
+ - Gemfile
22
+ - LICENSE
23
+ - README.md
24
+ - lib/mono.rb
25
+ - lib/mono/version.rb
26
+ - mono.gemspec
27
+ - spec/spec_helper.rb
28
+ - test/test_helper.rb
29
+ homepage: https://github.com/pmq20/mono
30
+ licenses:
31
+ - MIT
32
+ metadata: {}
33
+ post_install_message:
34
+ rdoc_options: []
35
+ require_paths:
36
+ - lib
37
+ required_ruby_version: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ required_rubygems_version: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ requirements: []
48
+ rubyforge_project:
49
+ rubygems_version: 2.2.2
50
+ signing_key:
51
+ specification_version: 4
52
+ summary: Embedding the Mono runtime into your Ruby application.
53
+ test_files:
54
+ - spec/spec_helper.rb
55
+ - test/test_helper.rb