ona 1.0.0 → 1.0.2
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 +4 -4
- data/bin/ona +1 -1
- data/ona.gemspec +15 -50
- metadata +17 -52
- data/.document +0 -5
- data/README.rdoc +0 -17
- data/Rakefile +0 -53
- data/VERSION +0 -1
- data/test/helper.rb +0 -10
- data/test/test_ona.rb +0 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3e752e54a1f800fee50d84852277b98fbf59ff92e849a23e94228b6251e3af0d
|
|
4
|
+
data.tar.gz: 89e7ca9419e6d5e31e5243222f0c1cfad76dc0c33ab1093c41ffd9bd45aa4a45
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 410cc418061efaabb9c150dfa6fcae5be398b27628342c309c3df7639a4f3226bda49e4c3071f5cacdb5b9dfda41be0b5ebf5c33becabea33cab176bb0f83ddd
|
|
7
|
+
data.tar.gz: 322ab4d3ff2e3a2edf5ea377b8fd2b8d5f9106f3fb2abe0f5d1fd5a0381360b4b111fa73981824ef9579d6a7ce95ae64c24485d0ff17b30be71e28d567ab18ed
|
data/bin/ona
CHANGED
data/ona.gemspec
CHANGED
|
@@ -1,57 +1,22 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
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.2"
|
|
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.add_runtime_dependency 'isna', '0.0.4'
|
|
13
|
+
spec.files = [
|
|
22
14
|
"Gemfile",
|
|
23
15
|
"Gemfile.lock",
|
|
24
16
|
"LICENSE",
|
|
25
|
-
"README.rdoc",
|
|
26
|
-
"Rakefile",
|
|
27
|
-
"VERSION",
|
|
28
17
|
"bin/ona",
|
|
29
18
|
"lib/ona.rb",
|
|
30
|
-
"ona.gemspec"
|
|
31
|
-
"test/helper.rb",
|
|
32
|
-
"test/test_ona.rb"
|
|
19
|
+
"ona.gemspec"
|
|
33
20
|
]
|
|
34
|
-
|
|
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
|
|
21
|
+
spec.executables << 'ona'
|
|
56
22
|
end
|
|
57
|
-
|
metadata
CHANGED
|
@@ -1,82 +1,47 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ona
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
8
|
-
autorequire:
|
|
7
|
+
- Kazuyoshi Tlacaelel
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-07-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
|
-
name:
|
|
14
|
+
name: isna
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
17
|
- - '='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.
|
|
19
|
+
version: 0.0.4
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - '='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 0.
|
|
27
|
-
|
|
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.
|
|
26
|
+
version: 0.0.4
|
|
27
|
+
description:
|
|
56
28
|
email: kazu.dev@gmail.com
|
|
57
29
|
executables:
|
|
58
30
|
- ona
|
|
59
31
|
extensions: []
|
|
60
|
-
extra_rdoc_files:
|
|
61
|
-
- LICENSE
|
|
62
|
-
- README.rdoc
|
|
32
|
+
extra_rdoc_files: []
|
|
63
33
|
files:
|
|
64
|
-
- ".document"
|
|
65
34
|
- Gemfile
|
|
66
35
|
- Gemfile.lock
|
|
67
36
|
- LICENSE
|
|
68
|
-
- README.rdoc
|
|
69
|
-
- Rakefile
|
|
70
|
-
- VERSION
|
|
71
37
|
- bin/ona
|
|
72
38
|
- lib/ona.rb
|
|
73
39
|
- ona.gemspec
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
licenses: []
|
|
40
|
+
homepage: https://github.com/ktlacaelel/ona
|
|
41
|
+
licenses:
|
|
42
|
+
- MIT
|
|
78
43
|
metadata: {}
|
|
79
|
-
post_install_message:
|
|
44
|
+
post_install_message:
|
|
80
45
|
rdoc_options: []
|
|
81
46
|
require_paths:
|
|
82
47
|
- lib
|
|
@@ -91,8 +56,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
91
56
|
- !ruby/object:Gem::Version
|
|
92
57
|
version: '0'
|
|
93
58
|
requirements: []
|
|
94
|
-
rubygems_version: 3.
|
|
95
|
-
signing_key:
|
|
96
|
-
specification_version:
|
|
97
|
-
summary:
|
|
59
|
+
rubygems_version: 3.3.7
|
|
60
|
+
signing_key:
|
|
61
|
+
specification_version: 4
|
|
62
|
+
summary: ona - utility to build shell tools
|
|
98
63
|
test_files: []
|
data/.document
DELETED
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