capncook 0.1.1 → 0.1.3

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: 9bdc5bd2b1770375d36c8435efd983c216f8a0fa
4
- data.tar.gz: e2f5cdd6a7302b0407b65f4bd87a7f29588869b6
3
+ metadata.gz: 9f5db54674999be7ce3d21c619d2481261b7d849
4
+ data.tar.gz: 229f4ecfecb48b4e7529a226d2e5ceec27fc21d9
5
5
  SHA512:
6
- metadata.gz: 4c2be1dfcd367fd236359976fe50e501a7cdd54fb0f4c95c337e0c6453d1a306395e53a5984a450a89cbb8542fb653130209cfbf343102432910f3377d2493c9
7
- data.tar.gz: 876523d9c5dd9fe34378d2b1bf282994649cf21818e5918cc2ab9c1a4a8ca4cca2a8a0969f0371bde9a1cef50971bd4771e4d062f8b9685cfe437b5053f680dd
6
+ metadata.gz: 5e63f45e8a937faf9dbcf87b767d6ddf4e53847a8cda7b823446eba8297465192ccc2b89326ec2ebc1d849fcdb905be3ffd551160c2bf3a3742a75e38bfcf41a
7
+ data.tar.gz: 3c0c734ced43a5b8957123cffc04f291daa912f2c757e735c9ee9effa4d628363311344416a16f7961abd1e0773ffb0f1ae18ccdf5aab88fc488d53955ac4026
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capncook
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cody Palmer
@@ -48,19 +48,7 @@ executables: []
48
48
  extensions: []
49
49
  extra_rdoc_files: []
50
50
  files:
51
- - ".gitignore"
52
- - ".rspec"
53
- - ".travis.yml"
54
- - Gemfile
55
- - LICENSE.txt
56
- - README.md
57
- - Rakefile
58
- - bin/console
59
- - bin/setup
60
- - capncook-0.1.0.gem
61
- - capncook.gemspec
62
51
  - lib/capncook.rb
63
- - lib/capncook/version.rb
64
52
  homepage: https://github.com/cdpalmer/capncook
65
53
  licenses:
66
54
  - MIT
data/.gitignore DELETED
@@ -1,9 +0,0 @@
1
- /.bundle/
2
- /.yardoc
3
- /Gemfile.lock
4
- /_yardoc/
5
- /coverage/
6
- /doc/
7
- /pkg/
8
- /spec/reports/
9
- /tmp/
data/.rspec DELETED
@@ -1,2 +0,0 @@
1
- --format documentation
2
- --color
@@ -1,4 +0,0 @@
1
- language: ruby
2
- rvm:
3
- - 2.2.1
4
- before_install: gem install bundler -v 1.11.2
data/Gemfile DELETED
@@ -1,4 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- # Specify your gem's dependencies in capncook.gemspec
4
- gemspec
@@ -1,21 +0,0 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2016 Cody Palmer
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in
13
- all copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
- THE SOFTWARE.
data/README.md DELETED
@@ -1,41 +0,0 @@
1
- # Capncook
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/capncook`. 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 'capncook'
13
- ```
14
-
15
- And then execute:
16
-
17
- $ bundle
18
-
19
- Or install it yourself as:
20
-
21
- $ gem install capncook
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 spec` 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]/capncook.
36
-
37
-
38
- ## License
39
-
40
- The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
41
-
data/Rakefile DELETED
@@ -1,6 +0,0 @@
1
- require "bundler/gem_tasks"
2
- require "rspec/core/rake_task"
3
-
4
- RSpec::Core::RakeTask.new(:spec)
5
-
6
- task :default => :spec
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "bundler/setup"
4
- require "capncook"
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 DELETED
@@ -1,8 +0,0 @@
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
File without changes
@@ -1,36 +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 'capncook/version'
5
-
6
- Gem::Specification.new do |spec|
7
- spec.name = "capncook"
8
- spec.version = Capncook::VERSION
9
- spec.authors = ["Cody Palmer"]
10
- spec.email = ["teampalmer.apps@gmail.com"]
11
-
12
- spec.summary = %q{Automatically create dummy user data themed after the show Breaking Bad.}
13
- spec.description = 'Since most user/person/customer data structures have similar db attributes,'\
14
- 'this gem will attempt to create those classes with attribute information based on the '\
15
- 'show Breaking Bad. For example: `User.create(name: "Walter White", email: '\
16
- '"crystalbluepersuasion@heisenberg.com", ...)`'
17
-
18
- spec.homepage = "https://github.com/cdpalmer/capncook"
19
- spec.license = "MIT"
20
-
21
- # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
22
- # delete this section to allow pushing this gem to any host.
23
- if spec.respond_to?(:metadata)
24
- spec.metadata['allowed_push_host'] = "https://rubygems.org"
25
- else
26
- raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
27
- end
28
-
29
- spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
30
- spec.bindir = "exe"
31
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
32
- spec.require_paths = ["lib"]
33
-
34
- spec.add_development_dependency "rspec", "~> 3.0"
35
- spec.add_development_dependency "ffaker", "~> 2.0"
36
- end
@@ -1,3 +0,0 @@
1
- module Capncook
2
- VERSION = "0.1.1"
3
- end