a1521hk_minitest_practice 0.1.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: 7ec9a57dd3a80d0b98aca66da9e427ea597c213d
4
+ data.tar.gz: 493213be245d4ca14fc1c6f5bc2937df6c5ff5d8
5
+ SHA512:
6
+ metadata.gz: 1ac2745696e35db353d8e10e131c03f71c08ba8fc9b24fd5c01b4f1b634de8ba307ae6963a0de96378a4638c1557299fabf601658cb1c67327fb7e4afbf0a7e1
7
+ data.tar.gz: e0a8b01cb514a8bf54964ef82b8f58e533cd661839541c524cc95101827c8ff1aa1d4a10087588e2db1109a3c0a4399a77c4e30a1cf1f16f63b009f762e3c529
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.2
4
+ before_install: gem install bundler -v 1.10.3
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/Gemfile ADDED
@@ -0,0 +1,12 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in a1521hk_minitest_practice.gemspec
4
+ gemspec
5
+
6
+ group :development do
7
+ gem 'guard-minitest'
8
+ gem 'guard'
9
+ gem 'guard-bundler'
10
+ gem 'guard-livereload'
11
+ end
12
+
@@ -0,0 +1,35 @@
1
+ # A sample Guardfile
2
+ # More info at https://github.com/guard/guard#readme
3
+
4
+ ## Uncomment and set this to only include directories you want to watch
5
+ # directories %w(app lib config test spec features) \
6
+ # .select{|d| Dir.exists?(d) ? d : UI.warning("Directory #{d} does not exist")}
7
+
8
+ ## Note: if you are using the `directories` clause above and you are not
9
+ ## watching the project directory ('.'), then you will want to move
10
+ ## the Guardfile to a watched dir and symlink it back, e.g.
11
+ #
12
+ # $ mkdir config
13
+ # $ mv Guardfile config/
14
+ # $ ln -s config/Guardfile .
15
+ #
16
+ # and, you'll have to watch "config/Guardfile" instead of "Guardfile"
17
+
18
+ guard :minitest do
19
+ watch(%r{^test/(.*)\/?test_(.*)\.rb$})
20
+ watch(%r{^lib/(.*/)?([^/]+)\.rb$}) { |m| "test/#{m[1]}#{m[2]}_test.rb" }
21
+ watch(%r{^test/test_helper\.rb$}) { 'test' }
22
+ end
23
+
24
+ guard :bundler do
25
+ require 'guard/bundler'
26
+ require 'guard/bundler/verify'
27
+ helper = Guard::Bundler::Verify.new
28
+
29
+ files = ['Gemfile']
30
+ files += Dir['*.gemspec'] if files.any? { |f| helper.uses_gemspec?(f) }
31
+
32
+ # Assume files are symlinked from somewhere
33
+ files.each { |file| watch(helper.real_path(file)) }
34
+ end
35
+
@@ -0,0 +1,36 @@
1
+ # A1521hkMinitestPractice
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/a1521hk_minitest_practice`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'a1521hk_minitest_practice'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install a1521hk_minitest_practice
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake false` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment. Run `bundle exec a1521hk_minitest_practice` to use the gem in this directory, ignoring other installed copies of this gem.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/a1521hk_minitest_practice. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
36
+
@@ -0,0 +1,10 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ Rake::TestTask.new(:test) do |t|
5
+ t.libs << "test"
6
+ t.libs << "lib"
7
+ t.test_files = FileList['test/**/*_test.rb']
8
+ end
9
+
10
+ task :default => :test
@@ -0,0 +1,31 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'a1521hk_minitest_practice/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "a1521hk_minitest_practice"
8
+ spec.version = A1521hkMinitestPractice::VERSION
9
+ spec.authors = ["Hiroshi Kamatsuka"]
10
+ spec.email = ["a1521hk@aiit.act.jp"]
11
+
12
+ spec.summary = %q{minitest}
13
+ spec.description = %q{minitest}
14
+ spec.homepage = "http://rubygems.org/gems/a1521hk_minitest_practice"
15
+
16
+ # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
17
+ # delete this section to allow pushing this gem to any host.
18
+ # if spec.respond_to?(:metadata)
19
+ # spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
20
+ # else
21
+ # raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
22
+ # end
23
+
24
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
25
+ spec.bindir = "exe"
26
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
27
+ spec.require_paths = ["lib"]
28
+
29
+ spec.add_development_dependency "bundler", "~> 1.10"
30
+ spec.add_development_dependency "rake", "~> 10.0"
31
+ end
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "a1521hk_minitest_practice"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "a1521hk_minitest_practice"
@@ -0,0 +1,50 @@
1
+ require "a1521hk_minitest_practice/version"
2
+
3
+ module A1521hkMinitestPractice
4
+ class Main
5
+ def odd?(n)
6
+ if n % 2 == 1
7
+ return true
8
+ else
9
+ return false
10
+ end
11
+ end
12
+
13
+ def check_number?(n)
14
+ if n.to_s.length == 4 and n % 2 == 0
15
+ return true
16
+ else
17
+ return false
18
+ end
19
+ end
20
+
21
+ def enough_length?(s)
22
+ if s.length >= 3 and s.length <= 8
23
+ return true
24
+ else
25
+ return false
26
+ end
27
+ end
28
+
29
+ def devide(x,y)
30
+ return x / y
31
+ end
32
+
33
+ def fizz_buzz(n)
34
+ str = ""
35
+ if n % 3 == 0
36
+ str = "Fizz"
37
+ end
38
+ if n % 5 == 0
39
+ str = str + "Buzz"
40
+ end
41
+ return str
42
+ end
43
+
44
+ def hello
45
+ p "Hello"
46
+ end
47
+
48
+ end
49
+ end
50
+
@@ -0,0 +1,3 @@
1
+ module A1521hkMinitestPractice
2
+ VERSION = "0.1.0"
3
+ end
metadata ADDED
@@ -0,0 +1,85 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: a1521hk_minitest_practice
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Hiroshi Kamatsuka
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-07-18 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.10'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.10'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ description: minitest
42
+ email:
43
+ - a1521hk@aiit.act.jp
44
+ executables:
45
+ - a1521hk_minitest_practice
46
+ extensions: []
47
+ extra_rdoc_files: []
48
+ files:
49
+ - ".gitignore"
50
+ - ".travis.yml"
51
+ - CODE_OF_CONDUCT.md
52
+ - Gemfile
53
+ - Guardfile
54
+ - README.md
55
+ - Rakefile
56
+ - a1521hk_minitest_practice.gemspec
57
+ - bin/console
58
+ - bin/setup
59
+ - exe/a1521hk_minitest_practice
60
+ - lib/a1521hk_minitest_practice.rb
61
+ - lib/a1521hk_minitest_practice/version.rb
62
+ homepage: http://rubygems.org/gems/a1521hk_minitest_practice
63
+ licenses: []
64
+ metadata: {}
65
+ post_install_message:
66
+ rdoc_options: []
67
+ require_paths:
68
+ - lib
69
+ required_ruby_version: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - ">="
72
+ - !ruby/object:Gem::Version
73
+ version: '0'
74
+ required_rubygems_version: !ruby/object:Gem::Requirement
75
+ requirements:
76
+ - - ">="
77
+ - !ruby/object:Gem::Version
78
+ version: '0'
79
+ requirements: []
80
+ rubyforge_project:
81
+ rubygems_version: 2.4.5
82
+ signing_key:
83
+ specification_version: 4
84
+ summary: minitest
85
+ test_files: []