ona 1.0.0 → 1.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 00cac1d1f46370554c113bd8046a84cd79da23f74531424140ffd1445c927374
4
- data.tar.gz: db80fffc3243a7ad43363d292f27b7d7e855693cd19d1cfca9fe201a236cf251
3
+ metadata.gz: a6e9b250c9f20e93f54249bdadc92dc5add7fc5f7fc240585a763786c36ba3f0
4
+ data.tar.gz: c31b065c2dfc9c9b4692e4af78c906d99aa9367ecbbed39fd301615b0ebb4fd9
5
5
  SHA512:
6
- metadata.gz: 5e59d548206b8e69028e9bb5c337f4cd3043f46e00e2a21a79b5aae8c9cbee64cd2c8cc4068bfcfdf735d407cef5388398bef5fd073249ad1104b84b598778d9
7
- data.tar.gz: '0604507116913163d44be4983b2efa1e09175c965c17c593694b4061799824b8f972344fcc7e591de2f9def4cd9f99725fc3f039e8b784c9371420ef48699b92'
6
+ metadata.gz: 58266d228b224e3fa99ad29308bc69c18f087514c213825bf80938a40849c148f63ad4f03e9e824c2be47ca5178787aba54d8329494adb6b8bdfed59476c7fd7
7
+ data.tar.gz: 60ccfff53a3dc42bfa250d42a23cb078ccdd7d23e4c6a012cfe6c6a8425e65dd32d3b1b98ad6ab0535c58b63b348ed930e9b22c3731199b696be51956aea9af1
data/bin/ona CHANGED
@@ -4,7 +4,7 @@ require 'rubygems'
4
4
  require 'readline'
5
5
  require 'ona'
6
6
 
7
- unless File.exists? 'Onafile'
7
+ unless File.exist? 'Onafile'
8
8
  abort 'Please create a file named:[Onafile] to start the shell.'
9
9
  end
10
10
 
data/ona.gemspec CHANGED
@@ -1,57 +1,21 @@
1
- # Generated by jeweler
2
- # DO NOT EDIT THIS FILE DIRECTLY
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
- # -*- encoding: utf-8 -*-
5
-
6
- Gem::Specification.new do |s|
7
- s.name = "ona"
8
- s.version = "1.0.0"
9
-
10
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
- s.authors = ["kazuyoshi tlacaelel"]
12
- s.date = "2013-12-14"
13
- s.description = "Simple shell for deployment."
14
- s.email = "kazu.dev@gmail.com"
15
- s.executables = ["ona"]
16
- s.extra_rdoc_files = [
17
- "LICENSE",
18
- "README.rdoc"
19
- ]
20
- s.files = [
21
- ".document",
1
+ Gem::Specification.new do |spec|
2
+ spec.name = %q{ona}
3
+ spec.version = "1.0.1"
4
+ spec.date = %q{2023-07-29}
5
+ spec.summary = %q{ona - utility to build shell tools}
6
+ spec.author = 'Kazuyoshi Tlacaelel'
7
+ spec.homepage = 'https://github.com/ktlacaelel/ona'
8
+ spec.email = 'kazu.dev@gmail.com'
9
+ spec.license = 'MIT'
10
+ spec.require_paths = ["lib"]
11
+ spec.bindir = 'bin'
12
+ spec.files = [
22
13
  "Gemfile",
23
14
  "Gemfile.lock",
24
15
  "LICENSE",
25
- "README.rdoc",
26
- "Rakefile",
27
- "VERSION",
28
16
  "bin/ona",
29
17
  "lib/ona.rb",
30
- "ona.gemspec",
31
- "test/helper.rb",
32
- "test/test_ona.rb"
18
+ "ona.gemspec"
33
19
  ]
34
- s.homepage = "http://github.com/ktlacaelel/ona"
35
- s.require_paths = ["lib"]
36
- s.rubygems_version = "1.8.25"
37
- s.summary = "Ona -- Deployment symplified."
38
-
39
- if s.respond_to? :specification_version then
40
- s.specification_version = 3
41
-
42
- if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
43
- s.add_runtime_dependency(%q<rake>, ["= 0.8.7"])
44
- s.add_runtime_dependency(%q<jeweler>, [">= 0"])
45
- s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
46
- else
47
- s.add_dependency(%q<rake>, ["= 0.8.7"])
48
- s.add_dependency(%q<jeweler>, [">= 0"])
49
- s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
50
- end
51
- else
52
- s.add_dependency(%q<rake>, ["= 0.8.7"])
53
- s.add_dependency(%q<jeweler>, [">= 0"])
54
- s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
55
- end
20
+ spec.executables << 'ona'
56
21
  end
57
-
metadata CHANGED
@@ -1,82 +1,33 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ona
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
- - kazuyoshi tlacaelel
8
- autorequire:
7
+ - Kazuyoshi Tlacaelel
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-12-14 00:00:00.000000000 Z
12
- dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: rake
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - '='
18
- - !ruby/object:Gem::Version
19
- version: 0.8.7
20
- type: :runtime
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - '='
25
- - !ruby/object:Gem::Version
26
- version: 0.8.7
27
- - !ruby/object:Gem::Dependency
28
- name: jeweler
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - ">="
32
- - !ruby/object:Gem::Version
33
- version: '0'
34
- type: :runtime
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - ">="
39
- - !ruby/object:Gem::Version
40
- version: '0'
41
- - !ruby/object:Gem::Dependency
42
- name: thoughtbot-shoulda
43
- requirement: !ruby/object:Gem::Requirement
44
- requirements:
45
- - - ">="
46
- - !ruby/object:Gem::Version
47
- version: '0'
48
- type: :development
49
- prerelease: false
50
- version_requirements: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - ">="
53
- - !ruby/object:Gem::Version
54
- version: '0'
55
- description: Simple shell for deployment.
11
+ date: 2023-07-29 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description:
56
14
  email: kazu.dev@gmail.com
57
15
  executables:
58
16
  - ona
59
17
  extensions: []
60
- extra_rdoc_files:
61
- - LICENSE
62
- - README.rdoc
18
+ extra_rdoc_files: []
63
19
  files:
64
- - ".document"
65
20
  - Gemfile
66
21
  - Gemfile.lock
67
22
  - LICENSE
68
- - README.rdoc
69
- - Rakefile
70
- - VERSION
71
23
  - bin/ona
72
24
  - lib/ona.rb
73
25
  - ona.gemspec
74
- - test/helper.rb
75
- - test/test_ona.rb
76
- homepage: http://github.com/ktlacaelel/ona
77
- licenses: []
26
+ homepage: https://github.com/ktlacaelel/ona
27
+ licenses:
28
+ - MIT
78
29
  metadata: {}
79
- post_install_message:
30
+ post_install_message:
80
31
  rdoc_options: []
81
32
  require_paths:
82
33
  - lib
@@ -91,8 +42,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
91
42
  - !ruby/object:Gem::Version
92
43
  version: '0'
93
44
  requirements: []
94
- rubygems_version: 3.0.3
95
- signing_key:
96
- specification_version: 3
97
- summary: Ona -- Deployment symplified.
45
+ rubygems_version: 3.3.7
46
+ signing_key:
47
+ specification_version: 4
48
+ summary: ona - utility to build shell tools
98
49
  test_files: []
data/.document DELETED
@@ -1,5 +0,0 @@
1
- README.rdoc
2
- lib/**/*.rb
3
- bin/*
4
- features/**/*.feature
5
- LICENSE
data/README.rdoc DELETED
@@ -1,17 +0,0 @@
1
- = ona
2
-
3
- Description goes here.
4
-
5
- == Note on Patches/Pull Requests
6
-
7
- * Fork the project.
8
- * Make your feature addition or bug fix.
9
- * Add tests for it. This is important so I don't break it in a
10
- future version unintentionally.
11
- * Commit, do not mess with rakefile, version, or history.
12
- (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
13
- * Send me a pull request. Bonus points for topic branches.
14
-
15
- == Copyright
16
-
17
- Copyright (c) 2010 kazuyoshi tlacaelel. See LICENSE for details.
data/Rakefile DELETED
@@ -1,53 +0,0 @@
1
- require 'rubygems'
2
- require 'rake'
3
-
4
- begin
5
- require 'jeweler'
6
- Jeweler::Tasks.new do |gem|
7
- gem.name = "ona"
8
- gem.summary = %Q{Ona -- Deployment symplified.}
9
- gem.description = %Q{Simple shell for deployment.}
10
- gem.email = "kazu.dev@gmail.com"
11
- gem.homepage = "http://github.com/ktlacaelel/ona"
12
- gem.authors = ["kazuyoshi tlacaelel"]
13
- gem.add_development_dependency "thoughtbot-shoulda", ">= 0"
14
- # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
15
- end
16
- Jeweler::GemcutterTasks.new
17
- rescue LoadError
18
- puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
19
- end
20
-
21
- require 'rake/testtask'
22
- Rake::TestTask.new(:test) do |test|
23
- test.libs << 'lib' << 'test'
24
- test.pattern = 'test/**/test_*.rb'
25
- test.verbose = true
26
- end
27
-
28
- begin
29
- require 'rcov/rcovtask'
30
- Rcov::RcovTask.new do |test|
31
- test.libs << 'test'
32
- test.pattern = 'test/**/test_*.rb'
33
- test.verbose = true
34
- end
35
- rescue LoadError
36
- task :rcov do
37
- abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
38
- end
39
- end
40
-
41
- task :test => :check_dependencies
42
-
43
- task :default => :test
44
-
45
- require 'rake/rdoctask'
46
- Rake::RDocTask.new do |rdoc|
47
- version = File.exist?('VERSION') ? File.read('VERSION') : ""
48
-
49
- rdoc.rdoc_dir = 'rdoc'
50
- rdoc.title = "ona #{version}"
51
- rdoc.rdoc_files.include('README*')
52
- rdoc.rdoc_files.include('lib/**/*.rb')
53
- end
data/VERSION DELETED
@@ -1 +0,0 @@
1
- 0.4.0
data/test/helper.rb DELETED
@@ -1,10 +0,0 @@
1
- require 'rubygems'
2
- require 'test/unit'
3
- require 'shoulda'
4
-
5
- $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
6
- $LOAD_PATH.unshift(File.dirname(__FILE__))
7
- require 'ona'
8
-
9
- class Test::Unit::TestCase
10
- end
data/test/test_ona.rb DELETED
@@ -1,7 +0,0 @@
1
- require 'helper'
2
-
3
- class TestOna < Test::Unit::TestCase
4
- should "probably rename this file and start testing for real" do
5
- flunk "hey buddy, you should probably rename this file and start testing for real"
6
- end
7
- end