snapdragon 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ChangeLog.markdown +46 -0
- data/{README.md → README.markdown} +5 -0
- data/lib/snapdragon/version.rb +1 -1
- data/lib/snapdragon/web_application.rb +4 -0
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 97aadcc78ce94e09bf9863c15eab1d025770f72c
|
4
|
+
data.tar.gz: 5c005537c8cb301eedc865b49d4df0d49f24b705
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e82eccf5e685602a71fc77992c3c7b81455761643b876834cc68096efd8f0f8d5748bc710599704f2a5747bbf825a8d1d9cea560cf821438640479c032252f3a
|
7
|
+
data.tar.gz: 355df2ec500429b87cfb339b7eb5358bc46596ecc00a30efb0a12ec024d7543317bfe6999ff990238f3beba7a72758c6a07343721e4151b1f5ba32aee6102cf9
|
data/ChangeLog.markdown
ADDED
@@ -0,0 +1,46 @@
|
|
1
|
+
# ChangeLog
|
2
|
+
|
3
|
+
The following are lists of the notable changes included with each release.
|
4
|
+
This is inteded to help keep people informed about notable changes between
|
5
|
+
versions as well as provide a rough history.
|
6
|
+
|
7
|
+
#### Next Release
|
8
|
+
|
9
|
+
#### v0.1.5
|
10
|
+
|
11
|
+
* Jasmine runner now hosts files in CWD under `/:path` ([\#12](http://github.com/reachlocal/snapdragon/issues/12))
|
12
|
+
|
13
|
+
#### v0.1.4
|
14
|
+
|
15
|
+
* Resolved some path expansion issues
|
16
|
+
|
17
|
+
#### v0.1.3
|
18
|
+
|
19
|
+
* Made Capybara wait for test output to finish before killing session
|
20
|
+
|
21
|
+
#### v0.1.2
|
22
|
+
|
23
|
+
* Reworked styled and colored output to work with Jasmine v1.3.1
|
24
|
+
* Switch to include latest stable Jasmine v1.3.1
|
25
|
+
|
26
|
+
#### v0.1.1
|
27
|
+
|
28
|
+
* Added jasmine-core to gemspec to resolve epic failure when running
|
29
|
+
`snapdragon` or `snapdragon_server`
|
30
|
+
|
31
|
+
#### v0.1.0
|
32
|
+
|
33
|
+
* Provided initial README.md for documentation
|
34
|
+
([\#2](http://github.com/reachlocal/snapdragon/issues/2))
|
35
|
+
* Added styled and colored output matching RSpec style output.
|
36
|
+
* Added latest master branch of Jasmine as the included test framework
|
37
|
+
* Added support for spec.js file arguements to `snapdragon` &
|
38
|
+
`snapdragon_server`
|
39
|
+
* Added support for spec directory arguements to `snapdragon` &
|
40
|
+
`snapdragon_server`
|
41
|
+
* Added support for spec.js:line_number arguements to `snapdragon` &
|
42
|
+
`snapdragon_server`
|
43
|
+
* Added `// require_relative()` directive to load required dependencies
|
44
|
+
* Added the basic `snapdragon` command line tool
|
45
|
+
* Added the basic `snapdragon_server` command line tool
|
46
|
+
|
@@ -188,6 +188,11 @@ describe("Hoopty", function() {
|
|
188
188
|
|
189
189
|
```
|
190
190
|
|
191
|
+
## The ChangeLog
|
192
|
+
|
193
|
+
Information on notable changes in each release can be found in the
|
194
|
+
[ChangeLog](http://github.com/reachlocal/snapdragon/blob/master/ChangeLog.markdown).
|
195
|
+
|
191
196
|
## The Back Story
|
192
197
|
|
193
198
|
If you have ever used [Jasmine](http://pivotal.github.io/jasmine/) for your
|
data/lib/snapdragon/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: snapdragon
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrew De Ponte
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-06-
|
11
|
+
date: 2013-06-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: capybara
|
@@ -123,9 +123,10 @@ files:
|
|
123
123
|
- .gitmodules
|
124
124
|
- .ruby-gemset
|
125
125
|
- .ruby-version
|
126
|
+
- ChangeLog.markdown
|
126
127
|
- Gemfile
|
127
128
|
- LICENSE.txt
|
128
|
-
- README.
|
129
|
+
- README.markdown
|
129
130
|
- Rakefile
|
130
131
|
- bin/build_jspec_filter.rb
|
131
132
|
- bin/snapdragon
|