rigle 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7b6d60eb97546ef2a2be2e80a2324b62319580dd
4
- data.tar.gz: 7b42d0b80850e88d67e10626feb8d4279ed7cdb3
3
+ metadata.gz: 2eafe65f9d28d192901d9dd797bd5424cee77810
4
+ data.tar.gz: 77dbfea01c9cc0cd8e2d7ddb498362f24b3b6344
5
5
  SHA512:
6
- metadata.gz: fc43c43772fc5d3aa31068ff9eef9d2a1f4de7b7117a474c6b3b42d4b1d676c68e93a9385254c4a3460e3e92055a16da1a05aeb1d449f2f869e8151364c9ed0d
7
- data.tar.gz: c90b015f7830f62069dce3cf6b62157271fd67be037154286619baddd2c55d88947b41a30d12a882bc1f5084579d469261a92e4f0db4dea2b2a87f3c39d5520a
6
+ metadata.gz: 9c6ca46079e46d04e06ba6fd43f677b2be4bf777396de232a00ba9b51246ccf05d10d7f7f8d8958f1c0c360f7237ee604f01f4c79bf550e4a1d401e6c6edc0ea
7
+ data.tar.gz: f35dcf42e7830f4823387c8287b56bc902310057ec4ab597d260fef3d1e8fa3efc01df848a91d0322ade3f3e597621589346805becad3096c798bac1b7708ff1
data/README.md CHANGED
@@ -1,9 +1,10 @@
1
1
  # Rigle
2
-
3
- > Knowing the deepest levels of any piece of software lets you master it.  It’s a special kind of competence you can’t fake.  You have to know it so well you could build it.  What if you did build it?  Wouldn’t that be worth it?
2
+ [![Gem Version](https://badge.fury.io/rb/rigle.svg)](http://badge.fury.io/rb/rigle) [![Build Status](https://travis-ci.org/mariusbutuc/rigle.svg?branch=master)](https://travis-ci.org/mariusbutuc/rigle)
4
3
 
5
4
  This repo with follow along building a Rails-like framework from an empty directory, using the same Ruby features and structures that make Rails so interesting.
6
5
 
6
+ > Knowing the deepest levels of any piece of software lets you master it. It’s a special kind of competence you can’t fake. You have to know it so well you could build it. What if you did build it? Wouldn’t that be worth it?
7
+
7
8
  It's just me going through the moves of with @noahgibbs' [Rebuilding Rails](https://rebuilding-rails.com/).
8
9
 
9
10
  ## Installation
data/lib/rigle/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Rigle
2
- VERSION = "0.1.0"
2
+ VERSION = '0.1.1'
3
3
  end
data/rigle.gemspec CHANGED
@@ -23,6 +23,8 @@ Gem::Specification.new do |spec|
23
23
 
24
24
  spec.add_development_dependency 'bundler', '~> 1.9'
25
25
  spec.add_development_dependency 'rake', '~> 10.0'
26
+ spec.add_development_dependency 'rack-test', '~> 0.6'
27
+ spec.add_development_dependency 'pry', '~> 0.10'
26
28
 
27
29
  spec.add_runtime_dependency 'rack', '~> 1.6'
28
30
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rigle
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
  - Marius Butuc
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-04-07 00:00:00.000000000 Z
11
+ date: 2015-04-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -38,6 +38,34 @@ dependencies:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rack-test
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '0.6'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '0.6'
55
+ - !ruby/object:Gem::Dependency
56
+ name: pry
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '0.10'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '0.10'
41
69
  - !ruby/object:Gem::Dependency
42
70
  name: rack
43
71
  requirement: !ruby/object:Gem::Requirement