1234567890_ 1.0 → 1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: caaead6861653d4a2115131234f4d483eb9a9f1b
4
+ data.tar.gz: 882450418242c3b683f1aa80a1fec15f106a6a5a
5
+ SHA512:
6
+ metadata.gz: 2fa30508d04a6a8d7490fc13fcf778ffe1a2c88e156fc18f2e5572134a957f63b4bd089b137fc80de8f0002c2e00e95cf7b74cf5e1bbab55e0239a9f83c4de1f
7
+ data.tar.gz: 16f7fb925e61539eeaa23c62ef000ce7021e945b909ea1fbad5e6d3133f5171e1bd9815c69de26d6029c19c5e7a5fdfd052c755e358fa9a82882b03620d0de44
data/.gitignore ADDED
@@ -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
@@ -0,0 +1,22 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "1234567890_"
7
+ spec.version = "1.1"
8
+ spec.authors = ["Yusuke Endoh"]
9
+ spec.email = ["mame@tsg.ne.jp"]
10
+ spec.description = %q{1234567890 allows you to write Ruby script by using only numbers.}
11
+ spec.summary = %q{1234567890 allows you to write Ruby script by using only numbers.}
12
+ spec.homepage = ""
13
+ spec.license = "MIT"
14
+
15
+ spec.files = `git ls-files`.split($/)
16
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
17
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
18
+ spec.require_paths = ["lib"]
19
+
20
+ spec.add_development_dependency "bundler", "~> 1.3"
21
+ spec.add_development_dependency "rake"
22
+ end
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in 1234567890.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2010,2013 Yusuke Endoh
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.
@@ -1,36 +1,22 @@
1
- = 1234567890
2
-
3
- == DESCRIPTION:
1
+ # 1234567890
4
2
 
5
3
  1234567890 allows you to write Ruby script by using only numbers.
6
4
 
7
- == FEATURES/PROBLEMS:
5
+ ## Installation
8
6
 
7
+ $ gem install 1234567890
9
8
 
10
- == SYNOPSIS:
9
+ ## Usage
11
10
 
12
- The following scr1pt is a ``Hello, world!'' program which can be executed
13
- by Ruby interpreter:
11
+ The following scr1pt is a ``Hello, world!'' program which can be executed
12
+ by Ruby interpreter:
14
13
 
15
14
  require "1234567890"
16
15
  12375227084728963689345802900599797529983544843167693630265673133962913229034848394579236452760532103006111995248931164161057058
17
16
 
18
- You can make a scr1pt by scr1pt:
17
+ You can make a scr1pt by scr1pt:
19
18
 
20
19
  require "1234567890"
21
20
  puts scr1pt('puts"Hello, world!"')
22
21
 
23
- == REQUIREMENTS:
24
-
25
- none
26
-
27
22
  NOTE: This library uses ObjectSpace; JRuby works but needs -X+O option.
28
-
29
- == INSTALL:
30
-
31
- * gem install 1234567890_
32
-
33
- == LICENSE:
34
-
35
- Copyright:: Yusuke Endoh <mame@tsg.ne.jp>
36
- License:: Ruby's
data/Rakefile CHANGED
@@ -1,14 +1 @@
1
- # -*- ruby -*-
2
-
3
- require 'rubygems'
4
- require 'hoe'
5
- require './lib/1234567890.rb'
6
-
7
- VERSION = "1.0"
8
-
9
- Hoe.spec '1234567890_' do |p|
10
- developer('Yusuke Endoh', 'mame@tsg.ne.jp')
11
- self.rubyforge_name = '1234567890_'
12
- end
13
-
14
- # vim: syntax=Ruby
1
+ require "bundler/gem_tasks"
metadata CHANGED
@@ -1,100 +1,80 @@
1
- --- !ruby/object:Gem::Specification
2
- name: 1234567890_
3
- version: !ruby/object:Gem::Version
4
- prerelease: false
5
- segments:
6
- - 1
7
- - 0
8
- version: "1.0"
1
+ --- !ruby/object:Gem::Specification
2
+ name: '1234567890_'
3
+ version: !ruby/object:Gem::Version
4
+ version: '1.1'
9
5
  platform: ruby
10
- authors:
6
+ authors:
11
7
  - Yusuke Endoh
12
8
  autorequire:
13
9
  bindir: bin
14
10
  cert_chain: []
15
-
16
- date: 2010-08-17 00:00:00 +09:00
17
- default_executable:
18
- dependencies:
19
- - !ruby/object:Gem::Dependency
20
- name: rubyforge
21
- prerelease: false
22
- requirement: &id001 !ruby/object:Gem::Requirement
23
- none: false
24
- requirements:
25
- - - ">="
26
- - !ruby/object:Gem::Version
27
- segments:
28
- - 2
29
- - 0
30
- - 4
31
- version: 2.0.4
11
+ date: 2013-06-24 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.3'
32
20
  type: :development
33
- version_requirements: *id001
34
- - !ruby/object:Gem::Dependency
35
- name: hoe
36
21
  prerelease: false
37
- requirement: &id002 !ruby/object:Gem::Requirement
38
- none: false
39
- requirements:
40
- - - ">="
41
- - !ruby/object:Gem::Version
42
- segments:
43
- - 2
44
- - 6
45
- - 1
46
- version: 2.6.1
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
47
34
  type: :development
48
- version_requirements: *id002
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
49
41
  description: 1234567890 allows you to write Ruby script by using only numbers.
50
- email:
42
+ email:
51
43
  - mame@tsg.ne.jp
52
44
  executables: []
53
-
54
45
  extensions: []
55
-
56
- extra_rdoc_files:
57
- - History.txt
58
- - Manifest.txt
59
- - README.txt
60
- files:
61
- - History.txt
46
+ extra_rdoc_files: []
47
+ files:
48
+ - .gitignore
49
+ - 1234567890.gemspec
50
+ - Gemfile
51
+ - LICENSE.txt
62
52
  - Manifest.txt
63
- - README.txt
53
+ - README.md
64
54
  - Rakefile
65
55
  - lib/1234567890.rb
66
- has_rdoc: true
67
- homepage:
68
- licenses: []
69
-
56
+ homepage: ''
57
+ licenses:
58
+ - MIT
59
+ metadata: {}
70
60
  post_install_message:
71
- rdoc_options:
72
- - --main
73
- - README.txt
74
- require_paths:
61
+ rdoc_options: []
62
+ require_paths:
75
63
  - lib
76
- required_ruby_version: !ruby/object:Gem::Requirement
77
- none: false
78
- requirements:
79
- - - ">="
80
- - !ruby/object:Gem::Version
81
- segments:
82
- - 0
83
- version: "0"
84
- required_rubygems_version: !ruby/object:Gem::Requirement
85
- none: false
86
- requirements:
87
- - - ">="
88
- - !ruby/object:Gem::Version
89
- segments:
90
- - 0
91
- version: "0"
64
+ required_ruby_version: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ required_rubygems_version: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - '>='
72
+ - !ruby/object:Gem::Version
73
+ version: '0'
92
74
  requirements: []
93
-
94
- rubyforge_project: 1234567890_
95
- rubygems_version: 1.3.7
75
+ rubyforge_project:
76
+ rubygems_version: 2.0.3
96
77
  signing_key:
97
- specification_version: 3
78
+ specification_version: 4
98
79
  summary: 1234567890 allows you to write Ruby script by using only numbers.
99
80
  test_files: []
100
-
data/History.txt DELETED
@@ -1,6 +0,0 @@
1
- === 1.0.0 / 2010-08-17
2
-
3
- * 1 major enhancement
4
-
5
- * Birthday!
6
-