sswars 0.1.0 → 0.1.1
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 +4 -4
- data/README.md +12 -5
- data/lib/sswars/version.rb +1 -1
- data/sswars-0.1.0.gem +0 -0
- data/sswars.gemspec +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 207498aa95c011ba88edc91bfe548dba0d475862
|
4
|
+
data.tar.gz: 8511015a559dde4e16e48f5b1dce0d2133525784
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 214b8364a873a61a80eff7e82f0bf067790e82ee93dac6fc9206eef364d49181cb719388686b868965c94df28492d1d3d84a3b389e28318bff3eb4774a18e803
|
7
|
+
data.tar.gz: 0d47ced2e94c02b2c6ceba20c5dc2eb927054bd5806a52fdea2b77ecc1cbd40098e7f201a073e7fdd0235fd29a08463906a066dfd56b6a2427bbee28c150e2b7
|
data/README.md
CHANGED
@@ -25,7 +25,16 @@ If there is no planet or person with that number an empty hash is returned.
|
|
25
25
|
* Github: git@github.com:rvrichards/sswars.git
|
26
26
|
7. Create gem, run:
|
27
27
|
* **bundle**
|
28
|
-
* **
|
28
|
+
* **gem build sswars.gemspec**
|
29
|
+
8. Install gem locally and test
|
30
|
+
* **gem install ./sswars-0.1.0.gem **
|
31
|
+
* In IRB you only have to type: **require sswars **
|
32
|
+
9. Now push to RubyGem.org
|
33
|
+
* First: Setup account on your machine
|
34
|
+
* **curl -u rvrichards https://rubygems.org/api/v1/api_key.yaml > ~/.gem/credentials; chmod 0600 ~/.gem/credentials**
|
35
|
+
* Lastly: Push out gem
|
36
|
+
* **gem push sswars-0.1.0.gem**
|
37
|
+
10. Profit!
|
29
38
|
|
30
39
|
|
31
40
|
|
@@ -45,13 +54,11 @@ Or install it yourself as:
|
|
45
54
|
|
46
55
|
## Usage
|
47
56
|
|
48
|
-
|
57
|
+
This was just for fun & learning.
|
49
58
|
|
50
59
|
## Development
|
51
60
|
|
52
|
-
|
53
|
-
|
54
|
-
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).
|
61
|
+
None planned now.
|
55
62
|
|
56
63
|
## Contributing
|
57
64
|
|
data/lib/sswars/version.rb
CHANGED
data/sswars-0.1.0.gem
ADDED
Binary file
|
data/sswars.gemspec
CHANGED
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
|
|
11
11
|
|
12
12
|
spec.summary = %q{Simple Star Wars name finder.}
|
13
13
|
spec.description = %q{Using the public Star Wars api (swapi.co) return character and planet names.}
|
14
|
-
spec.homepage = "https://github.com/rvrichards/sswars
|
14
|
+
spec.homepage = "https://github.com/rvrichards/sswars"
|
15
15
|
spec.license = "MIT"
|
16
16
|
|
17
17
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sswars
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rob Richards
|
@@ -68,8 +68,9 @@ files:
|
|
68
68
|
- bin/setup
|
69
69
|
- lib/sswars.rb
|
70
70
|
- lib/sswars/version.rb
|
71
|
+
- sswars-0.1.0.gem
|
71
72
|
- sswars.gemspec
|
72
|
-
homepage: https://github.com/rvrichards/sswars
|
73
|
+
homepage: https://github.com/rvrichards/sswars
|
73
74
|
licenses:
|
74
75
|
- MIT
|
75
76
|
metadata: {}
|