nemesis-plugin-helloworld 0.0.1 → 0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6be9955501aafb9d2c5be6be2c86e58b8fa8a5c9
4
- data.tar.gz: 727cae790db6789e6907b5b81e0250f17c30e2f9
3
+ metadata.gz: e6805ebbfc63d0e7507db60c5025c1d847e6aeeb
4
+ data.tar.gz: 388f76f64b252da0deaa92b226d87d3afb4f942c
5
5
  SHA512:
6
- metadata.gz: b5a134f8eaa1601d89945c63fcb33b0c8b407ce92b0162936b69e800abe251b1464672acef8742d8b8e6593df03d0c46250e395ef47d36894aafa5013441ad4e
7
- data.tar.gz: fa04c8993af8ce4f461d767f657120d1c9459bce7d55e06e5eedaa715ab974cee748c00f6fa2b2e8d12bd9785d4196d4186f1edd592afdb03e25d2e2b3ea5a97
6
+ metadata.gz: 3c7bf18d17141dbfe10df61fe4b0956950054c49189b438f55d9d70d84468e1f39cf998ef24bc9b42a0ab2f0c2212ed4aa8d7bb89caecb6cd97364c5b5ff54ca
7
+ data.tar.gz: 07914aa4ca9b008c8b1c17339f5e55ed143534f572966a7467dae9e7028a586defa28e00b40104e81078e0e3efdcdc0e8162ddc45be8a0b762882d6c29b32c21
@@ -1,7 +1,7 @@
1
1
  module Nemesis
2
2
  module Plugin
3
3
  module Helloworld
4
- VERSION = "0.0.1"
4
+ VERSION = "0.0.2"
5
5
  end
6
6
  end
7
7
  end
File without changes
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nemesis-plugin-helloworld
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Troy Ling
@@ -45,15 +45,8 @@ executables: []
45
45
  extensions: []
46
46
  extra_rdoc_files: []
47
47
  files:
48
- - .gitignore
49
- - Gemfile
50
- - LICENSE.txt
51
- - README.md
52
- - Rakefile
53
- - lib/nemesis/plugin/helloworld.rb
48
+ - plugin.rb
54
49
  - lib/nemesis/plugin/helloworld/version.rb
55
- - nemesis-plugin-helloworld-0.0.1.gem
56
- - nemesis-plugin-helloworld.gemspec
57
50
  homepage: https://github.com/troyling/nemesis-plugin-helloworld
58
51
  licenses:
59
52
  - MIT
data/.gitignore DELETED
@@ -1,14 +0,0 @@
1
- /.bundle/
2
- /.yardoc
3
- /Gemfile.lock
4
- /_yardoc/
5
- /coverage/
6
- /doc/
7
- /pkg/
8
- /spec/reports/
9
- /tmp/
10
- *.bundle
11
- *.so
12
- *.o
13
- *.a
14
- mkmf.log
data/Gemfile DELETED
@@ -1,4 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- # Specify your gem's dependencies in nemesis-plugin-helloworld.gemspec
4
- gemspec
data/LICENSE.txt DELETED
@@ -1,22 +0,0 @@
1
- Copyright (c) 2015 Troy Ling
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.
data/README.md DELETED
@@ -1,31 +0,0 @@
1
- # Nemesis::Plugin::Helloworld
2
-
3
- This is a helloworld gem used for Nemesis plugin.
4
-
5
- ## Installation
6
-
7
- Add this line to your application's Gemfile:
8
-
9
- ```ruby
10
- gem 'nemesis-plugin-helloworld'
11
- ```
12
-
13
- And then execute:
14
-
15
- $ bundle
16
-
17
- Or install it yourself as:
18
-
19
- $ gem install nemesis-plugin-helloworld
20
-
21
- ## Usage
22
-
23
- TODO: Write usage instructions here
24
-
25
- ## Contributing
26
-
27
- 1. Fork it ( https://github.com/[my-github-username]/nemesis-plugin-helloworld/fork )
28
- 2. Create your feature branch (`git checkout -b my-new-feature`)
29
- 3. Commit your changes (`git commit -am 'Add some feature'`)
30
- 4. Push to the branch (`git push origin my-new-feature`)
31
- 5. Create a new Pull Request
data/Rakefile DELETED
@@ -1,2 +0,0 @@
1
- require "bundler/gem_tasks"
2
-
Binary file
@@ -1,23 +0,0 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'nemesis/plugin/helloworld/version'
5
-
6
- Gem::Specification.new do |spec|
7
- spec.name = "nemesis-plugin-helloworld"
8
- spec.version = Nemesis::Plugin::Helloworld::VERSION
9
- spec.authors = ["Troy Ling"]
10
- spec.email = ["troyling14@gmail.com"]
11
- spec.summary = "A helloworld gem"
12
- spec.description = "A helloworld gem used for Nemesis plugin"
13
- spec.homepage = "https://github.com/troyling/nemesis-plugin-helloworld"
14
- spec.license = "MIT"
15
-
16
- spec.files = `git ls-files -z`.split("\x0")
17
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
- spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
- spec.require_paths = ["lib"]
20
-
21
- spec.add_development_dependency "bundler", "~> 1.7"
22
- spec.add_development_dependency "rake", "~> 10.0"
23
- end