foodie_ath 0.0.3.pre.43

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: db6bbcb8cd4b248317dfc23a77a291548b7213d081857982b93deb48706cebd0
4
+ data.tar.gz: 0e79ddb62b3d80eef700c450e4a2a46242d8cb62adeb91a232be776b6c200081
5
+ SHA512:
6
+ metadata.gz: '0280582a7b76712946672cc89f7cb55b841115b1a60a5c9e14aa6f9c8ec044dbf7302bfadaf8c634e14de0f31c9bef6ca22a5ac284d0e4e97b9742a7e7975792'
7
+ data.tar.gz: 778a12e08267506395267b40785438d4ab54841ee26c3aeed3511b816ff0b391f662af136dc6ac58b63974f3dd73bb357f6a793253e443434de6c3494a1a9421
data/.gitignore ADDED
@@ -0,0 +1,8 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
data/.travis.yml ADDED
@@ -0,0 +1,13 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.3
5
+ - 2.4.1
6
+ before_install: gem install bundler -v 1.16.2
7
+ deploy:
8
+ provider: rubygems
9
+ api_key:
10
+ secure: VvkoTA5KykQRxRKB2mtXjWzqMOFXz0viiqddSxv/1N0+TexvS7vN19fcYIik18sygoNAulGt2ZsImUJ4Iti+1sBzQDzJeUfDsnWDwVLakY+oKFCxqhng5gCewpg2bNeqGU/Sx+jv7ktPEp95Ezo+D9y8WKgMfDpUmDrEYscqIUclKMhj17KSjXXYn4g0CTkGmYnpI8KoD9/baUzPj3q/GKmY7gIjC/mmnwCz6+CP9ucxNeuSzX+RnlenJB9Zo4QrYP4cLs/BhSncRI68G1ByztJjqmgq/9RMIYBzI0AeoZCDnUpLogX9OR4hlkUvfOgfB1fZoT7gprL71DXw+rPJdYZemFmde6Ev2Y+9H+kJKAB70ZlfWveocbXqGB45bwMx8xy0duGUHJV8JltMsU3XzvHR9pvULab2Z4RZpKW7q8z/kziYWXKcJXpRMbj8PSLlKwCAZre+VD/AfClc7Vra1oYOCOVmD/ZLXlbLYHgUOBkWbwOkpQQeNIFIWCXX+M0BtcO0YIOUwtAZe4NW6FDAQf8fzLv0NVTQL1bkETROIMR0h0seeWV8JCRAkFaJTuKbcafaiFP7pT4E6XA0OuPInmZfs/vtLAR+/JfbH/MwN6tFz8QPzJ84nVNZZL6DGH/8L23kVyXqhcgBJavXNgh4InlVcwTVKZCqfQkJcdVkbPA=
11
+ gem: foodie_ath
12
+ on:
13
+ repo: arvindth/foodie_ath
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in foodie_ath.gemspec
6
+ gemspec
data/README.md ADDED
@@ -0,0 +1,35 @@
1
+ # FoodieAth
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/foodie_ath`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'foodie_ath'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install foodie_ath
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here.
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/foodie_ath.
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ Rake::TestTask.new(:test) do |t|
5
+ t.libs << "test"
6
+ t.libs << "lib"
7
+ t.test_files = FileList["test/**/*_test.rb"]
8
+ end
9
+
10
+ task :default => :test
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "foodie_ath"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,39 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "foodie_ath/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "foodie_ath"
8
+ spec.version = FoodieAth::VERSION
9
+ spec.version = "#{spec.version}.#{ENV['TRAVIS_BUILD_NUMBER']}" \
10
+ if ENV['TRAVIS'] && FoodieAth::VERSION.include?('.pre')
11
+ spec.authors = ["arvindth"]
12
+ spec.email = ["arvth-git@yahoo.com"]
13
+
14
+ spec.summary = %q{Gem build/push}
15
+ spec.description = %q{Test gem to demonstrate build on Travis and push to rubygems}
16
+ spec.homepage = "https://github.com/arvindth/foodie_ath"
17
+
18
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
19
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
20
+ if spec.respond_to?(:metadata)
21
+ spec.metadata["allowed_push_host"] = "https://rubygems.org"
22
+ else
23
+ raise "RubyGems 2.0 or newer is required to protect against " \
24
+ "public gem pushes."
25
+ end
26
+
27
+ # Specify which files should be added to the gem when it is released.
28
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
29
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
30
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
31
+ end
32
+ spec.bindir = "exe"
33
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
34
+ spec.require_paths = ["lib"]
35
+
36
+ spec.add_development_dependency "bundler", "~> 1.16"
37
+ spec.add_development_dependency "rake", "~> 10.0"
38
+ spec.add_development_dependency "minitest", "~> 5.0"
39
+ end
data/lib/foodie_ath.rb ADDED
@@ -0,0 +1,5 @@
1
+ require "foodie_ath/version"
2
+
3
+ module FoodieAth
4
+ # Your code goes here...
5
+ end
@@ -0,0 +1,3 @@
1
+ module FoodieAth
2
+ VERSION = "0.0.3.pre"
3
+ end
metadata ADDED
@@ -0,0 +1,96 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: foodie_ath
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.3.pre.43
5
+ platform: ruby
6
+ authors:
7
+ - arvindth
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2019-05-03 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.16'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.16'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: minitest
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '5.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '5.0'
55
+ description: Test gem to demonstrate build on Travis and push to rubygems
56
+ email:
57
+ - arvth-git@yahoo.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - ".travis.yml"
64
+ - Gemfile
65
+ - README.md
66
+ - Rakefile
67
+ - bin/console
68
+ - bin/setup
69
+ - foodie_ath.gemspec
70
+ - lib/foodie_ath.rb
71
+ - lib/foodie_ath/version.rb
72
+ homepage: https://github.com/arvindth/foodie_ath
73
+ licenses: []
74
+ metadata:
75
+ allowed_push_host: https://rubygems.org
76
+ post_install_message:
77
+ rdoc_options: []
78
+ require_paths:
79
+ - lib
80
+ required_ruby_version: !ruby/object:Gem::Requirement
81
+ requirements:
82
+ - - ">="
83
+ - !ruby/object:Gem::Version
84
+ version: '0'
85
+ required_rubygems_version: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">"
88
+ - !ruby/object:Gem::Version
89
+ version: 1.3.1
90
+ requirements: []
91
+ rubyforge_project:
92
+ rubygems_version: 2.7.7
93
+ signing_key:
94
+ specification_version: 4
95
+ summary: Gem build/push
96
+ test_files: []