mirage 1.3.0 → 1.3.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.
- data/VERSION +1 -1
- data/mirage.gemspec +3 -3
- data/rakefile +2 -2
- metadata +4 -4
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.3.
|
|
1
|
+
1.3.1
|
data/mirage.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{mirage}
|
|
8
|
-
s.version = "1.3.
|
|
8
|
+
s.version = "1.3.1"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Leon Davis"]
|
|
@@ -61,7 +61,7 @@ Gem::Specification.new do |s|
|
|
|
61
61
|
s.licenses = ["MIT"]
|
|
62
62
|
s.post_install_message = %q{
|
|
63
63
|
===============================================================================
|
|
64
|
-
Thanks you for installing mirage
|
|
64
|
+
Thanks you for installing mirage.
|
|
65
65
|
|
|
66
66
|
Run Mirage with:
|
|
67
67
|
|
|
@@ -72,7 +72,7 @@ For more information go to: https://github.com/lashd/mirage/wiki
|
|
|
72
72
|
}
|
|
73
73
|
s.require_paths = ["lib"]
|
|
74
74
|
s.rubygems_version = %q{1.6.1}
|
|
75
|
-
s.summary = %q{
|
|
75
|
+
s.summary = %q{Mirage is a easy mock server for testing your applications}
|
|
76
76
|
|
|
77
77
|
if s.respond_to? :specification_version then
|
|
78
78
|
s.specification_version = 3
|
data/rakefile
CHANGED
|
@@ -16,13 +16,13 @@ Jeweler::Tasks.new do |gem|
|
|
|
16
16
|
gem.name = "mirage"
|
|
17
17
|
gem.homepage = "https://github.com/lashd/mirage"
|
|
18
18
|
gem.license = "MIT"
|
|
19
|
-
gem.summary = "
|
|
19
|
+
gem.summary = "Mirage is a easy mock server for testing your applications"
|
|
20
20
|
gem.description = 'Mirage aids testing of your applications by hosting mock responses so that your applications do not have to talk to real endpoints. Its accessible via HTTP and has a RESTful interface.'
|
|
21
21
|
gem.authors = ["Leon Davis"]
|
|
22
22
|
gem.executables = ['mirage']
|
|
23
23
|
gem.post_install_message = %{
|
|
24
24
|
===============================================================================
|
|
25
|
-
Thanks you for installing mirage
|
|
25
|
+
Thanks you for installing mirage.
|
|
26
26
|
|
|
27
27
|
Run Mirage with:
|
|
28
28
|
|
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: mirage
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 1.3.
|
|
5
|
+
version: 1.3.1
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Leon Davis
|
|
@@ -265,7 +265,7 @@ licenses:
|
|
|
265
265
|
- MIT
|
|
266
266
|
post_install_message: "\n\
|
|
267
267
|
===============================================================================\n\
|
|
268
|
-
Thanks you for installing mirage
|
|
268
|
+
Thanks you for installing mirage. \n\n\
|
|
269
269
|
Run Mirage with:\n\n\
|
|
270
270
|
mirage start \n\n\
|
|
271
271
|
For more information go to: https://github.com/lashd/mirage/wiki\n\
|
|
@@ -279,7 +279,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
279
279
|
requirements:
|
|
280
280
|
- - ">="
|
|
281
281
|
- !ruby/object:Gem::Version
|
|
282
|
-
hash:
|
|
282
|
+
hash: 2713959818777134685
|
|
283
283
|
segments:
|
|
284
284
|
- 0
|
|
285
285
|
version: "0"
|
|
@@ -295,6 +295,6 @@ rubyforge_project:
|
|
|
295
295
|
rubygems_version: 1.6.1
|
|
296
296
|
signing_key:
|
|
297
297
|
specification_version: 3
|
|
298
|
-
summary:
|
|
298
|
+
summary: Mirage is a easy mock server for testing your applications
|
|
299
299
|
test_files: []
|
|
300
300
|
|