rails-sandbox-assets 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 2c33e158d4aaa6c1d85bdfcc9245d0ed14861176
4
+ data.tar.gz: 7e86635b67f51b22cecc413281da34c00c6b039a
5
+ SHA512:
6
+ metadata.gz: 8f4bd7d4aff7efd8cdae40c74fd1f8c09126546f5487925598af495302a76d35762d482129d92e4ea5023db7907f5d1d1dc46ed2e0a48e6d61e16cd958280a16
7
+ data.tar.gz: a075466c5fccb747e9f783cb1d1f03656e986a630cc95435f57aa129e02ae1d4a7054f556aeb8f224861fbe94ffc0ec185ad74baa02a9dc57c0abfe29e869c1d
data/README.md CHANGED
@@ -72,12 +72,27 @@ Default settings:
72
72
  ## Gems using Rails Sandbox Assets
73
73
 
74
74
  - [rails\_sandbox\_jasmine](http://github.com/rosenfeld/rails_sandbox_jasmine)
75
-
76
- TODO: add a gem for Mocha/Chai.
75
+ - [rails\_sandbox\_mocha\_chai](http://github.com/rosenfeld/rails_sandbox_mocha_chai)
77
76
 
78
77
  ## Examples
79
78
 
80
- TODO: Add some example application to Github using Mocha/Chai.js test runner.
79
+ Here are some more examples on how you can use this gem:
80
+
81
+ Creating new engines depending on this one:
82
+
83
+ - [konacha\_like](https://github.com/rosenfeld/konacha_like)
84
+ - [konacha\_reuse](https://github.com/rosenfeld/konacha_reuse)
85
+
86
+ Creating application depending direcly on this gem:
87
+
88
+ - [mixed\_test\_runners](https://github.com/rosenfeld/mixed_test_runners)
89
+
90
+ The above application shows how to set-up a mixed environment with specs written both in Jasmine and
91
+ Mocha/Chai, using different spec runners, of course. Also it demonstrates how to set up your custom
92
+ spec runner.
93
+
94
+ In this case it is a simple HTML pointing to the paths for each supported spec runner, but you can use
95
+ the _@tests_ and _@stylesheets_ instance variables to include them anywhere in your custom template file.
81
96
 
82
97
  ## Contributing
83
98
 
@@ -1,3 +1,3 @@
1
1
  module SandboxAssets
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
@@ -15,5 +15,5 @@ Gem::Specification.new do |gem|
15
15
  gem.require_paths = ["lib"]
16
16
  gem.version = SandboxAssets::VERSION
17
17
 
18
- gem.add_dependency 'rails', '~> 3.1'
18
+ gem.add_dependency 'rails', '>= 3.1'
19
19
  end
metadata CHANGED
@@ -1,30 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails-sandbox-assets
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
5
- prerelease:
4
+ version: 0.0.5
6
5
  platform: ruby
7
6
  authors:
8
7
  - Rodrigo Rosenfeld Rosas
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2012-05-24 00:00:00.000000000 Z
11
+ date: 2013-02-26 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: rails
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ~>
17
+ - - '>='
20
18
  - !ruby/object:Gem::Version
21
19
  version: '3.1'
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ~>
24
+ - - '>='
28
25
  - !ruby/object:Gem::Version
29
26
  version: '3.1'
30
27
  description: Override your test runner and run rake sandbox_assets:serve
@@ -53,32 +50,25 @@ files:
53
50
  - rails-sandbox-assets.gemspec
54
51
  homepage: http://github.com/rosenfeld/rails-sandbox-assets
55
52
  licenses: []
53
+ metadata: {}
56
54
  post_install_message:
57
55
  rdoc_options: []
58
56
  require_paths:
59
57
  - lib
60
58
  required_ruby_version: !ruby/object:Gem::Requirement
61
- none: false
62
59
  requirements:
63
- - - ! '>='
60
+ - - '>='
64
61
  - !ruby/object:Gem::Version
65
62
  version: '0'
66
- segments:
67
- - 0
68
- hash: -2556634665115716922
69
63
  required_rubygems_version: !ruby/object:Gem::Requirement
70
- none: false
71
64
  requirements:
72
- - - ! '>='
65
+ - - '>='
73
66
  - !ruby/object:Gem::Version
74
67
  version: '0'
75
- segments:
76
- - 0
77
- hash: -2556634665115716922
78
68
  requirements: []
79
69
  rubyforge_project:
80
- rubygems_version: 1.8.21
70
+ rubygems_version: 2.0.0
81
71
  signing_key:
82
- specification_version: 3
72
+ specification_version: 4
83
73
  summary: Allows assets to be served in a sandboxed application in a Rails project
84
74
  test_files: []