snapdragon 0.1.4 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 38b1616c053d2ad9d7528ef069daac831c23c7a9
4
- data.tar.gz: 4b374604e2ea68df9a7a127608eddc783690a91e
3
+ metadata.gz: 97aadcc78ce94e09bf9863c15eab1d025770f72c
4
+ data.tar.gz: 5c005537c8cb301eedc865b49d4df0d49f24b705
5
5
  SHA512:
6
- metadata.gz: fc4ae14e6216dcc06b19ea34e9241ad012ba5db2eb80601d581f6631ec48f584f100d4857d9520ff77b6fa2ad479cb644e955b5324293d6a12ec8f48a280f410
7
- data.tar.gz: b84cd200dffd153d9309d287f2dafac00a891e165936b843ac398e8aca9ce3aa7b01181fc16a4438c85b296fa716d63b29cc98e2e504842ca5338633dd3a7d9f
6
+ metadata.gz: e82eccf5e685602a71fc77992c3c7b81455761643b876834cc68096efd8f0f8d5748bc710599704f2a5747bbf825a8d1d9cea560cf821438640479c032252f3a
7
+ data.tar.gz: 355df2ec500429b87cfb339b7eb5358bc46596ecc00a30efb0a12ec024d7543317bfe6999ff990238f3beba7a72758c6a07343721e4151b1f5ba32aee6102cf9
@@ -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
@@ -1,3 +1,3 @@
1
1
  module Snapdragon
2
- VERSION = "0.1.4"
2
+ VERSION = "0.1.5"
3
3
  end
@@ -22,5 +22,9 @@ module Snapdragon
22
22
  get "/resources/*" do |path|
23
23
  send_file File.expand_path(File.join('resources', path), File.dirname(__FILE__))
24
24
  end
25
+
26
+ get "/*" do |path|
27
+ send_file File.expand_path(File.join('.', path))
28
+ end
25
29
  end
26
30
  end
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
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-18 00:00:00.000000000 Z
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.md
129
+ - README.markdown
129
130
  - Rakefile
130
131
  - bin/build_jspec_filter.rb
131
132
  - bin/snapdragon