hello_swa 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/hello_swa +4 -0
- data/hello_swa.gemspec~ +19 -0
- data/lib/hello_swa.rb~ +7 -0
- data/lib/hello_swa/version.rb +1 -1
- metadata +6 -2
data/bin/hello_swa
ADDED
data/hello_swa.gemspec~
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'hello_swa/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |gem|
|
7
|
+
gem.name = "hello_swa"
|
8
|
+
gem.version = HelloSwa::VERSION
|
9
|
+
gem.authors = ["Swaroop SM"]
|
10
|
+
gem.email = ["swaroop.striker@gmail.com"]
|
11
|
+
gem.description = %q{Prints Hello Swa}
|
12
|
+
gem.summary = %q{Print Hello Swa}
|
13
|
+
gem.homepage = ""
|
14
|
+
|
15
|
+
gem.files = `git ls-files`.split($/)
|
16
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
17
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
18
|
+
gem.require_paths = ["lib"]
|
19
|
+
end
|
data/lib/hello_swa.rb~
ADDED
data/lib/hello_swa/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hello_swa
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -14,7 +14,8 @@ dependencies: []
|
|
14
14
|
description: Prints Hello Swa
|
15
15
|
email:
|
16
16
|
- swaroop.striker@gmail.com
|
17
|
-
executables:
|
17
|
+
executables:
|
18
|
+
- hello_swa
|
18
19
|
extensions: []
|
19
20
|
extra_rdoc_files: []
|
20
21
|
files:
|
@@ -23,8 +24,11 @@ files:
|
|
23
24
|
- LICENSE.txt
|
24
25
|
- README.md
|
25
26
|
- Rakefile
|
27
|
+
- bin/hello_swa
|
26
28
|
- hello_swa.gemspec
|
29
|
+
- hello_swa.gemspec~
|
27
30
|
- lib/hello_swa.rb
|
31
|
+
- lib/hello_swa.rb~
|
28
32
|
- lib/hello_swa/version.rb
|
29
33
|
homepage: http://swaroopsm.github.com
|
30
34
|
licenses: []
|