ACORD 0.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: 98c885b70a382e4af19b347419fe82eec94c3957
4
+ data.tar.gz: 5d9fd35abbbe0df74cc532cc32676abe71581fce
5
+ SHA512:
6
+ metadata.gz: 0cff660d09cd1d415b3b12ddb327f76374493b2feaa9074b28b52a5fa3f81e7bb715a16b044b6beec60b67e5954a46347d8ac1e55d7076f81d8d0090ef3acf94
7
+ data.tar.gz: 3fc0696f0383ddea626edb95df69260af2159b294b60632d18daedab6436c41ec1db8fe20a0e6984f735657daf61c649000b6560d14f246cd8d9cf766dbf98a4
@@ -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/
@@ -0,0 +1,18 @@
1
+ lib = File.expand_path('../lib', __FILE__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require 'ACORD/version'
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = 'ACORD'
7
+ s.version = ACORD::VERSION
8
+ s.summary = "A Ruby toolbox for implementing the specifications of the Association for Cooperative Operations Research and Development."
9
+ s.description = "A Ruby toolbox for implementing the specifications of the Association for Cooperative Operations Research and Development."
10
+ s.authors = ["P.S.V.R"]
11
+ s.email = 'pmq2001@gmail.com'
12
+ s.homepage = 'https://github.com/pmq20/ACORD'
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
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
+ ACORD
2
+ =====
3
+
4
+ A Ruby toolbox for implementing the specifications of the Association for Cooperative Operations Research and Development.
@@ -0,0 +1,9 @@
1
+ lib = File.expand_path('../lib', __FILE__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require 'ACORD/version'
4
+
5
+ module ACORD
6
+ def self.hi
7
+ puts "Hello world!"
8
+ end
9
+ end
File without changes
metadata ADDED
@@ -0,0 +1,53 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ACORD
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - P.S.V.R
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-12-07 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: A Ruby toolbox for implementing the specifications of the Association
14
+ for Cooperative Operations Research and Development.
15
+ email: pmq2001@gmail.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - .gitignore
21
+ - ACORD.gemspec
22
+ - Gemfile
23
+ - LICENSE
24
+ - README.md
25
+ - lib/ACORD.rb
26
+ - test/test_helper.rb
27
+ homepage: https://github.com/pmq20/ACORD
28
+ licenses:
29
+ - MIT
30
+ metadata: {}
31
+ post_install_message:
32
+ rdoc_options: []
33
+ require_paths:
34
+ - lib
35
+ required_ruby_version: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - '>='
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ required_rubygems_version: !ruby/object:Gem::Requirement
41
+ requirements:
42
+ - - '>='
43
+ - !ruby/object:Gem::Version
44
+ version: '0'
45
+ requirements: []
46
+ rubyforge_project:
47
+ rubygems_version: 2.1.11
48
+ signing_key:
49
+ specification_version: 4
50
+ summary: A Ruby toolbox for implementing the specifications of the Association for
51
+ Cooperative Operations Research and Development.
52
+ test_files:
53
+ - test/test_helper.rb