inkoop_error_tracker 0.5.0 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5017324061ba052e8ea613840b1df95cff6c720f
4
- data.tar.gz: eb93650d0f68702112ea355d983b474330b09c2f
3
+ metadata.gz: 65f776a6b8c60a10b98875ea02b09fd2e622fea9
4
+ data.tar.gz: 39e99c8965564bcccc9a2dff36939766fc11f316
5
5
  SHA512:
6
- metadata.gz: 14f7c0701c02d82c72357c86a74004e020d9e4ac3d94b76e5e0fe93511a6b2d65fb10011e5d711b8af5641f603270e277673cdef7bcd8a0c500d301e3fd972b0
7
- data.tar.gz: 720726318bb8a614401c49f9b184bd6e1482c7c883cb36127cc0107028eaa94740ef583213a8bff3fdf8d83ce36777aa42e5b0d58077c96910262a2670a786e8
6
+ metadata.gz: 94edf43e6718c20ab79a935494d4e73291a0e2ffe3e44282c64144a022cbe2cfca9bfa8edd584440db360a5e95775f97cc014f8b725e11c5dce13baef989e735
7
+ data.tar.gz: 52f41f0d3a486ccdcea98db3d2b9781504b354c04b22eb16aaf39091f04881d4a940a1f3318c73d434344a0e0dcf864d6af6edf504651f9f20cacdd05b4741fc
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in inkoop_error_tracker.gemspec
4
+ gemspec
data/README.md ADDED
@@ -0,0 +1,36 @@
1
+ # InkoopErrorTracker
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/inkoop_error_tracker`. 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 'inkoop_error_tracker'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install inkoop_error_tracker
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. 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]/inkoop_error_tracker.
36
+
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "inkoop_error_tracker"
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
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
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,34 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'inkoop_error_tracker/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "inkoop_error_tracker"
8
+ spec.version = InkoopErrorTracker::VERSION
9
+ spec.authors = ["Vivek"]
10
+ spec.email = ["vivekpatna52@gmail.com"]
11
+ # spec.files = ['lib/inkoop_error_tracker.rb', 'lib/inkoop_error_tracker/version.rb']
12
+ spec.summary = %q{Write a short summary, because Rubygems requires one.}
13
+ spec.description = %q{Write a longer description or delete this line.}
14
+ spec.homepage = "http://www.inkoop.in"
15
+
16
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
17
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
18
+ if spec.respond_to?(:metadata)
19
+ # spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
20
+ else
21
+ raise "RubyGems 2.0 or newer is required to protect against " \
22
+ "public gem pushes."
23
+ end
24
+
25
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
26
+ f.match(%r{^(test|spec|features)/})
27
+ end
28
+ spec.bindir = "exe"
29
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
30
+ spec.require_paths = ["lib"]
31
+
32
+ spec.add_development_dependency "bundler", "~> 1.13"
33
+ spec.add_development_dependency "rake", "~> 10.0"
34
+ end
@@ -1,3 +1,3 @@
1
1
  module InkoopErrorTracker
2
- VERSION = "0.5.0"
2
+ VERSION = "1.0.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: inkoop_error_tracker
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vivek
@@ -45,6 +45,18 @@ executables: []
45
45
  extensions: []
46
46
  extra_rdoc_files: []
47
47
  files:
48
+ - ".gitignore"
49
+ - Gemfile
50
+ - README.md
51
+ - Rakefile
52
+ - bin/console
53
+ - bin/setup
54
+ - inkoop_error_tracker-0.1.0.gem
55
+ - inkoop_error_tracker-0.2.0.gem
56
+ - inkoop_error_tracker-0.3.0.gem
57
+ - inkoop_error_tracker-0.4.0.gem
58
+ - inkoop_error_tracker-0.5.0.gem
59
+ - inkoop_error_tracker.gemspec
48
60
  - lib/inkoop_error_tracker.rb
49
61
  - lib/inkoop_error_tracker/version.rb
50
62
  homepage: http://www.inkoop.in