guard-jessie 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ rvm:
2
+ - 1.8.7
3
+ - 1.9.2
4
+ - ree
5
+ - rbx
data/CHANGELOG.md CHANGED
@@ -5,4 +5,10 @@
5
5
  - Running all specs ([@mehowte])
6
6
  - Running selected paths ([@mehowte])
7
7
 
8
+ ## 0.1.1 - July 3, 2011
9
+
10
+ ### Improvements:
11
+
12
+ - Travis configuration added. ([@mehowte])
13
+
8
14
  [@mehowte]: https://github.com/mehowte
data/README.md CHANGED
@@ -1,8 +1,12 @@
1
1
  Guard::Jessie
2
2
  =============
3
3
 
4
+ [![Build Status](http://travis-ci.org/mehowte/guard-jessie.png)](http://travis-ci.org/mehowte/guard-jessie)
5
+
6
+
4
7
  Jessie guard allows to automatically run you jasmine specs under node using jessie runner.
5
8
 
9
+
6
10
  Install
7
11
  -------
8
12
 
@@ -82,7 +86,7 @@ end
82
86
  ``` ruby
83
87
  :cli => "-f nested" # pass arbitrary Jessie CLI arguments, default: "-f progress"
84
88
  :notification => false # don't display Growl (or Libnotify) notification after the specs are done running, default: true
85
-
89
+ ```
86
90
 
87
91
  Development
88
92
  -----------
data/Rakefile CHANGED
@@ -1,2 +1,9 @@
1
1
  require 'bundler'
2
2
  Bundler::GemHelper.install_tasks
3
+
4
+ require 'rspec/core/rake_task'
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ task :default => :spec
9
+
data/guard-jessie.gemspec CHANGED
@@ -1,10 +1,10 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  $:.push File.expand_path("../lib", __FILE__)
3
- require "guard/jessie"
3
+ require "guard/jessie/version"
4
4
 
5
5
  Gem::Specification.new do |s|
6
6
  s.name = "guard-jessie"
7
- s.version = Guard::Jessie::VERSION
7
+ s.version = Guard::JessieVersion::VERSION
8
8
  s.platform = Gem::Platform::RUBY
9
9
  s.authors = ["Michał Taszycki"]
10
10
  s.email = ["mtaszycki@gmail.com"]
data/lib/guard/jessie.rb CHANGED
@@ -3,7 +3,6 @@ require 'guard/guard'
3
3
 
4
4
  module Guard
5
5
  class Jessie < Guard
6
- autoload :VERSION, 'guard/jessie/version'
7
6
  autoload :Runner, 'guard/jessie/runner'
8
7
 
9
8
  def run_all
@@ -1,5 +1,5 @@
1
1
  module Guard
2
- class Jessie
3
- VERSION = "0.1.0"
2
+ module JessieVersion
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: guard-jessie
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.1.0
5
+ version: 0.1.1
6
6
  platform: ruby
7
7
  authors:
8
8
  - "Micha\xC5\x82 Taszycki"
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-08-02 00:00:00 Z
13
+ date: 2011-08-03 00:00:00 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: guard
@@ -89,13 +89,13 @@ extra_rdoc_files: []
89
89
 
90
90
  files:
91
91
  - .gitignore
92
+ - .travis.yml
92
93
  - CHANGELOG.md
93
94
  - Gemfile
94
95
  - LICENSE
95
96
  - README.md
96
97
  - Rakefile
97
98
  - guard-jessie.gemspec
98
- - lib/guard-jessie.rb
99
99
  - lib/guard/jessie.rb
100
100
  - lib/guard/jessie/runner.rb
101
101
  - lib/guard/jessie/templates/Guardfile
@@ -116,7 +116,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
116
116
  requirements:
117
117
  - - ">="
118
118
  - !ruby/object:Gem::Version
119
- hash: -2584122660941300579
119
+ hash: 3678453556759483249
120
120
  segments:
121
121
  - 0
122
122
  version: "0"
@@ -125,7 +125,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
125
125
  requirements:
126
126
  - - ">="
127
127
  - !ruby/object:Gem::Version
128
- hash: -2584122660941300579
128
+ hash: 3678453556759483249
129
129
  segments:
130
130
  - 0
131
131
  version: "0"
data/lib/guard-jessie.rb DELETED
File without changes