oblique_strategies 0.1.0 → 0.1.1

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
  SHA256:
3
- metadata.gz: aa68e1af5a5211a32495b9dbef7c506777e93fffb8f887ab7da4b9d1f1c15596
4
- data.tar.gz: c412764e0ee6fe0ec72dad11287fe480e748fa9e8fb7ba86a6ee9b4f5598aa49
3
+ metadata.gz: d982d39aacdb1dad81af0181ba16d23427ed2875ea4de0d2fff03711af2b2cb4
4
+ data.tar.gz: a6b15ba97172e1b50822929e6a78225442f5f16ddb9f0a035674baff6293092b
5
5
  SHA512:
6
- metadata.gz: 89c8f6e3e7f13f570eedc1c406c89dccd8be0671d67b4fdc6c3c3e4ed12db2fc13ed800191914c8097b907ae33bcfabad3c4be898100dabc3ded5a4ec3e29151
7
- data.tar.gz: acf980893a0406d36bd0b007d093893c9fca563503cc936a8aea229cc4796c0c154316968822f2f389f0b34da420f24ec75fe1d5395e959640177c6983572aa7
6
+ metadata.gz: f261c1ad2c8d310b1711f6c12d7e8d349c66058a8972f66665f117460025d1d25654dd4f11c6df52e35f31e50a3b444c57028bf678511fdabc60307433f12ed4
7
+ data.tar.gz: 44a36bc8383748f5ea9112595d124b0da01bcff947815b343298729f563230356d74550370f5db99f0bd8854b6c00d18be74743dfebc2886af12ca9bbdbad1d3
@@ -0,0 +1,15 @@
1
+ # Changelog
2
+
3
+ ## 0.1.0 - 2019-11-02
4
+
5
+ Initial Release
6
+
7
+ ## 0.1.1 - 2019-11-03
8
+
9
+ ### Added
10
+
11
+ - `oblique_strategies` CLI command
12
+
13
+ ### Fixed
14
+
15
+ - Link to Code of Conduct in README
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- oblique_strategies (0.1.0)
4
+ oblique_strategies (0.1.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -21,6 +21,11 @@ Or install it yourself as:
21
21
 
22
22
  ## Usage
23
23
 
24
+ ### In The Command Line
25
+
26
+ $ oblique_strategies
27
+ Change nothing and continue with immaculate consistency
28
+
24
29
  ### Fast & Dirty With Built-in Cards
25
30
 
26
31
  ```ruby
@@ -66,6 +71,8 @@ deck.card
66
71
 
67
72
  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.
68
73
 
74
+ Run `bundle exec ./exe/oblique_strategies` to test the CLI.
75
+
69
76
  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).
70
77
 
71
78
  ## Contributing
@@ -78,7 +85,7 @@ The gem is available as open source under the terms of the [MIT License](https:/
78
85
 
79
86
  ## Code of Conduct
80
87
 
81
- Everyone interacting in the ObliqueStrategies project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/oblique_strategies/blob/master/CODE_OF_CONDUCT.md).
88
+ Everyone interacting in the ObliqueStrategies project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/nodanaonlyzuul/oblique_strategies/blob/master/CODE_OF_CONDUCT.md).
82
89
 
83
90
  ## Credit
84
91
 
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'oblique_strategies'
4
+ puts ObliqueStrategies.card
@@ -1,3 +1,3 @@
1
1
  class ObliqueStrategies
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oblique_strategies
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - nodanaonlyzuul
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-11-03 00:00:00.000000000 Z
11
+ date: 2019-11-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -69,13 +69,15 @@ dependencies:
69
69
  description:
70
70
  email:
71
71
  - nothankyou@example.com
72
- executables: []
72
+ executables:
73
+ - oblique_strategies
73
74
  extensions: []
74
75
  extra_rdoc_files: []
75
76
  files:
76
77
  - ".gitignore"
77
78
  - ".rspec"
78
79
  - ".travis.yml"
80
+ - CHANGELOG.md
79
81
  - CODE_OF_CONDUCT.md
80
82
  - Gemfile
81
83
  - Gemfile.lock
@@ -84,6 +86,7 @@ files:
84
86
  - Rakefile
85
87
  - bin/console
86
88
  - bin/setup
89
+ - exe/oblique_strategies
87
90
  - lib/oblique_strategies.rb
88
91
  - lib/oblique_strategies/version.rb
89
92
  - oblique_strategies.gemspec