lyle_gem_test 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.
data/.gitignore CHANGED
@@ -8,6 +8,8 @@ InstalledFiles
8
8
  _yardoc
9
9
  coverage
10
10
  doc/
11
+ coverage
12
+ InstalledFiles
11
13
  lib/bundler/man
12
14
  pkg
13
15
  rdoc
data/README.md CHANGED
@@ -27,3 +27,6 @@ TODO: Write usage instructions here
27
27
  3. Commit your changes (`git commit -am 'Add some feature'`)
28
28
  4. Push to the branch (`git push origin my-new-feature`)
29
29
  5. Create new Pull Request
30
+ new_gem
31
+
32
+ It is a test for gem
data/lib/lyle_test.rb ADDED
@@ -0,0 +1,3 @@
1
+ def hello
2
+ puts 'hello world'
3
+ end
data/lib/new_gem.rb CHANGED
@@ -2,4 +2,7 @@ require "new_gem/version"
2
2
 
3
3
  module NewGem
4
4
  # Your code goes here...
5
+ def other_hello
6
+ puts "it is another hello"
7
+ end
5
8
  end
@@ -1,3 +1,3 @@
1
1
  module NewGem
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
data/work_test/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source "http://rubygems.org"
2
+
3
+ gem "lyle_gem_test", "~> 0.0.1"
data/work_test/run.rb ADDED
@@ -0,0 +1,3 @@
1
+ require 'lyle_gem_test'
2
+
3
+ puts 'helo world'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lyle_gem_test
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -55,9 +55,12 @@ files:
55
55
  - LICENSE.txt
56
56
  - README.md
57
57
  - Rakefile
58
+ - lib/lyle_test.rb
58
59
  - lib/new_gem.rb
59
60
  - lib/new_gem/version.rb
60
61
  - new_gem.gemspec
62
+ - work_test/Gemfile
63
+ - work_test/run.rb
61
64
  homepage: ''
62
65
  licenses:
63
66
  - MIT