code_web 0.0.4 → 0.0.5
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/CHANGELOG.md +23 -0
- data/code_web.gemspec +6 -1
- data/lib/code_web/version.rb +1 -1
- metadata +7 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 29bda801a6f5634ec882c6633c08647ce1833308
|
|
4
|
+
data.tar.gz: d6b58d6ee533c2dd7ff66a4c86f39d1ad5d77cf0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2219f31b3e506ed95f633bc9bbb68b1984533ea6e7e391095da3634fc203b8e2d1a5755035c8df2dd02289e7d060a19db7b66d84db72328012cdec0b57f057d4
|
|
7
|
+
data.tar.gz: ae10f2d3cce4ead971d55654b2ab3d61a142f7cb024d85ec0789708c4321bbb05ec7eb3301002cfa5646f37ee5f0a362e513cc67cda5fe023e667e0db84d93b2
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
# Change Log
|
|
4
|
+
All notable changes to this project will be documented in this file.
|
|
5
|
+
|
|
6
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
|
7
|
+
and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
8
|
+
|
|
9
|
+
## [Unreleased]
|
|
10
|
+
|
|
11
|
+
## [0.0.5] - 2017-05-16
|
|
12
|
+
- added a changelog (sorry olivier)
|
|
13
|
+
- fixed gem metadata
|
|
14
|
+
|
|
15
|
+
## 0.0.4 - 2017-05-16
|
|
16
|
+
### Changed
|
|
17
|
+
- updated readme to explain how to linke urls to browsers
|
|
18
|
+
- moved executables to exe directory to work better with bundler in development
|
|
19
|
+
- added flags for byebug and pry to allow debugging of issues (sorry not more stable)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
[Unreleased]: https://github.com/kbrock/code_web/compare/v0.0.5...HEAD
|
|
23
|
+
[0.0.5]: https://github.com/kbrock/code_web/compare/v0.0.4...v0.0.5
|
data/code_web.gemspec
CHANGED
|
@@ -18,7 +18,12 @@ Gem::Specification.new do |spec|
|
|
|
18
18
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
19
19
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
20
20
|
spec.require_paths = ["lib"]
|
|
21
|
-
|
|
21
|
+
spec.metadata = {
|
|
22
|
+
"homepage_uri" => "https://github.com/kbrock/code_web",
|
|
23
|
+
"changelog_uri" => "https://github.com/kbrock/code_web/blob/master/CHANGELOG.md",
|
|
24
|
+
"source_code_uri" => "https://github.com/kbrock/code_web/",
|
|
25
|
+
"bug_tracker_uri" => "https://github.com/kbrock/code_web/issues",
|
|
26
|
+
}
|
|
22
27
|
spec.add_dependency "ruby_parser"
|
|
23
28
|
spec.add_development_dependency "bundler", "~> 1.3"
|
|
24
29
|
spec.add_development_dependency "rake"
|
data/lib/code_web/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: code_web
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Keenan Brock
|
|
@@ -77,6 +77,7 @@ files:
|
|
|
77
77
|
- ".gitignore"
|
|
78
78
|
- ".rspec"
|
|
79
79
|
- ".travis.yml"
|
|
80
|
+
- CHANGELOG.md
|
|
80
81
|
- Gemfile
|
|
81
82
|
- LICENSE.txt
|
|
82
83
|
- README.md
|
|
@@ -100,7 +101,11 @@ files:
|
|
|
100
101
|
homepage: http://github.com/kbrock/code_web
|
|
101
102
|
licenses:
|
|
102
103
|
- MIT
|
|
103
|
-
metadata:
|
|
104
|
+
metadata:
|
|
105
|
+
homepage_uri: https://github.com/kbrock/code_web
|
|
106
|
+
changelog_uri: https://github.com/kbrock/code_web/blob/master/CHANGELOG.md
|
|
107
|
+
source_code_uri: https://github.com/kbrock/code_web/
|
|
108
|
+
bug_tracker_uri: https://github.com/kbrock/code_web/issues
|
|
104
109
|
post_install_message:
|
|
105
110
|
rdoc_options: []
|
|
106
111
|
require_paths:
|