sinatra-default_parameters 0.0.1 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +1 -0
- data/.travis.yml +2 -0
- data/CHANGES.md +17 -0
- data/Gemfile +1 -1
- data/lib/sinatra/default_parameters/version.rb +1 -1
- data/spec/support/shared/all_routes.rb +0 -2
- metadata +3 -4
- data/spec/support/shared/helpers.rb +0 -13
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
data/CHANGES.md
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
# CH CH CH CHANGES #
|
2
|
+
|
3
|
+
## v1.0.0 ##
|
4
|
+
|
5
|
+
Thursday the 4th of April 2013
|
6
|
+
|
7
|
+
* Version bumped to 1.0.0 to mark the public interface as stable (see [semver](http://semver.org/) for more info).
|
8
|
+
|
9
|
+
----
|
10
|
+
|
11
|
+
## v0.0.2 ##
|
12
|
+
|
13
|
+
Thursday the 4th of April 2013
|
14
|
+
|
15
|
+
* Removed dangling file from specs, that also introduced an unwanted top level constant.
|
16
|
+
|
17
|
+
----
|
data/Gemfile
CHANGED
@@ -2,14 +2,12 @@
|
|
2
2
|
|
3
3
|
require 'sinatra/base'
|
4
4
|
require_relative "../../../lib/sinatra/default_parameters.rb"
|
5
|
-
# require_relative "./helpers.rb"
|
6
5
|
|
7
6
|
require_relative "../../../examples/app.rb"
|
8
7
|
|
9
8
|
shared_context "All pages" do
|
10
9
|
include Rack::Test::Methods
|
11
10
|
let(:app){ Example }
|
12
|
-
#include MODULE::RSpec::Helpers
|
13
11
|
end
|
14
12
|
|
15
13
|
shared_examples_for "Any route" do
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sinatra-default_parameters
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 1.0.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-
|
12
|
+
date: 2013-04-04 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: sinatra
|
@@ -37,6 +37,7 @@ extra_rdoc_files: []
|
|
37
37
|
files:
|
38
38
|
- .gitignore
|
39
39
|
- .travis.yml
|
40
|
+
- CHANGES.md
|
40
41
|
- Gemfile
|
41
42
|
- LICENCE
|
42
43
|
- README.md
|
@@ -49,7 +50,6 @@ files:
|
|
49
50
|
- spec/default_parameters_spec.rb
|
50
51
|
- spec/spec_helper.rb
|
51
52
|
- spec/support/shared/all_routes.rb
|
52
|
-
- spec/support/shared/helpers.rb
|
53
53
|
homepage: https://github.com/yb66/sinatra-default_parameters
|
54
54
|
licenses: []
|
55
55
|
post_install_message:
|
@@ -79,4 +79,3 @@ test_files:
|
|
79
79
|
- spec/default_parameters_spec.rb
|
80
80
|
- spec/spec_helper.rb
|
81
81
|
- spec/support/shared/all_routes.rb
|
82
|
-
- spec/support/shared/helpers.rb
|