bootspec 0.0.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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: d7514589cea823d3267ae3a0bbab85775f50c2fe
4
+ data.tar.gz: 9be019acde7f679bd5fd50070b074074bfc28e9e
5
+ SHA512:
6
+ metadata.gz: 65f6f84adbb7c9a5d08fb3fda9b37bcc3d05bfae18d2a8b2cbdbc6c5117336e1c42d2f53366eb5e64150878bdbd50dc16a102b82b2ccc2322ecb17afffc08114
7
+ data.tar.gz: ad0353bb18df0e77021271b9f659cf0e7166851d0eab8409cc73a90ac42ca457d41f7eb5d8e02bcf33d663c33fad42134a6c790ddef2855d3fa2fc4182071ab3
data/.gitignore ADDED
@@ -0,0 +1,3 @@
1
+ /pkg/
2
+ /*.gem
3
+ /.idea/
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,52 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ bootspec (0.0.1)
5
+ capybara (~> 2.0)
6
+ poltergeist (~> 1.5)
7
+ rspec (~> 2.0)
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ capybara (2.2.1)
13
+ mime-types (>= 1.16)
14
+ nokogiri (>= 1.3.3)
15
+ rack (>= 1.0.0)
16
+ rack-test (>= 0.5.4)
17
+ xpath (~> 2.0)
18
+ cliver (0.3.2)
19
+ diff-lcs (1.2.5)
20
+ mime-types (2.1)
21
+ mini_portile (0.5.2)
22
+ multi_json (1.8.4)
23
+ nokogiri (1.6.1)
24
+ mini_portile (~> 0.5.0)
25
+ poltergeist (1.5.0)
26
+ capybara (~> 2.1)
27
+ cliver (~> 0.3.1)
28
+ multi_json (~> 1.0)
29
+ websocket-driver (>= 0.2.0)
30
+ rack (1.5.2)
31
+ rack-test (0.6.2)
32
+ rack (>= 1.0)
33
+ rake (10.1.1)
34
+ rspec (2.14.1)
35
+ rspec-core (~> 2.14.0)
36
+ rspec-expectations (~> 2.14.0)
37
+ rspec-mocks (~> 2.14.0)
38
+ rspec-core (2.14.7)
39
+ rspec-expectations (2.14.5)
40
+ diff-lcs (>= 1.1.3, < 2.0)
41
+ rspec-mocks (2.14.6)
42
+ websocket-driver (0.3.2)
43
+ xpath (2.0.0)
44
+ nokogiri (~> 1.3)
45
+
46
+ PLATFORMS
47
+ ruby
48
+
49
+ DEPENDENCIES
50
+ bootspec!
51
+ bundler (~> 1.5)
52
+ rake (~> 10.1)
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Eric Tsiliacos and Vinson Chuong
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # Bootspec
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'bootspec'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install bootspec
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it ( http://github.com/<my-github-username>/bootspec/fork )
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require 'bundler/gem_tasks'
data/bin/bootspec ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env ruby
2
+ puts `rspec --color --tty -I #{File.join(File.dirname(__FILE__), '..', 'lib')} --require 'bootspec' #{ARGV.join(' ')}`
data/bootspec.gemspec ADDED
@@ -0,0 +1,27 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'bootspec/version'
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = 'bootspec'
8
+ s.version = Bootspec::VERSION
9
+ s.date = '2014-02-27'
10
+ s.license = 'MIT'
11
+ s.summary = 'Bootstrap your walking skeleton'
12
+ s.description = 'Provides an easy way for you to run your first acceptance spec to drive out your development process.'
13
+ s.authors = ['Vinson Chuong', 'Eric Tsiliacos']
14
+ s.email = ''
15
+ s.homepage = ''
16
+
17
+ s.files = `git ls-files -z`.split("\x0")
18
+ s.executables = `git ls-files -z bin`.split("\x0").map {|f| File.basename(f)}
19
+ s.test_files = `git ls-files -z specs`.split("\x0")
20
+
21
+ s.add_runtime_dependency 'rspec', '~> 2.0'
22
+ s.add_runtime_dependency 'capybara', '~> 2.0'
23
+ s.add_runtime_dependency 'poltergeist', '~> 1.5'
24
+
25
+ s.add_development_dependency 'bundler', '~> 1.5'
26
+ s.add_development_dependency 'rake', '~> 10.1'
27
+ end
data/lib/bootspec.rb ADDED
@@ -0,0 +1,11 @@
1
+ require 'bootspec/version'
2
+
3
+ require 'rspec'
4
+ require 'rspec/core/formatters/documentation_formatter'
5
+ require 'capybara/rspec'
6
+ require 'capybara/poltergeist'
7
+ Capybara.current_driver = :poltergeist
8
+ Capybara.default_wait_time = 5
9
+
10
+ module Bootspec
11
+ end
@@ -0,0 +1,3 @@
1
+ module Bootspec
2
+ VERSION = '0.0.1'
3
+ end
metadata ADDED
@@ -0,0 +1,126 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bootspec
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Vinson Chuong
8
+ - Eric Tsiliacos
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2014-02-27 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rspec
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - "~>"
19
+ - !ruby/object:Gem::Version
20
+ version: '2.0'
21
+ type: :runtime
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - "~>"
26
+ - !ruby/object:Gem::Version
27
+ version: '2.0'
28
+ - !ruby/object:Gem::Dependency
29
+ name: capybara
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - "~>"
33
+ - !ruby/object:Gem::Version
34
+ version: '2.0'
35
+ type: :runtime
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - "~>"
40
+ - !ruby/object:Gem::Version
41
+ version: '2.0'
42
+ - !ruby/object:Gem::Dependency
43
+ name: poltergeist
44
+ requirement: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - "~>"
47
+ - !ruby/object:Gem::Version
48
+ version: '1.5'
49
+ type: :runtime
50
+ prerelease: false
51
+ version_requirements: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - "~>"
54
+ - !ruby/object:Gem::Version
55
+ version: '1.5'
56
+ - !ruby/object:Gem::Dependency
57
+ name: bundler
58
+ requirement: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - "~>"
61
+ - !ruby/object:Gem::Version
62
+ version: '1.5'
63
+ type: :development
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - "~>"
68
+ - !ruby/object:Gem::Version
69
+ version: '1.5'
70
+ - !ruby/object:Gem::Dependency
71
+ name: rake
72
+ requirement: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - "~>"
75
+ - !ruby/object:Gem::Version
76
+ version: '10.1'
77
+ type: :development
78
+ prerelease: false
79
+ version_requirements: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - "~>"
82
+ - !ruby/object:Gem::Version
83
+ version: '10.1'
84
+ description: Provides an easy way for you to run your first acceptance spec to drive
85
+ out your development process.
86
+ email: ''
87
+ executables:
88
+ - bootspec
89
+ extensions: []
90
+ extra_rdoc_files: []
91
+ files:
92
+ - ".gitignore"
93
+ - Gemfile
94
+ - Gemfile.lock
95
+ - LICENSE.txt
96
+ - README.md
97
+ - Rakefile
98
+ - bin/bootspec
99
+ - bootspec.gemspec
100
+ - lib/bootspec.rb
101
+ - lib/bootspec/version.rb
102
+ homepage: ''
103
+ licenses:
104
+ - MIT
105
+ metadata: {}
106
+ post_install_message:
107
+ rdoc_options: []
108
+ require_paths:
109
+ - lib
110
+ required_ruby_version: !ruby/object:Gem::Requirement
111
+ requirements:
112
+ - - ">="
113
+ - !ruby/object:Gem::Version
114
+ version: '0'
115
+ required_rubygems_version: !ruby/object:Gem::Requirement
116
+ requirements:
117
+ - - ">="
118
+ - !ruby/object:Gem::Version
119
+ version: '0'
120
+ requirements: []
121
+ rubyforge_project:
122
+ rubygems_version: 2.2.0
123
+ signing_key:
124
+ specification_version: 4
125
+ summary: Bootstrap your walking skeleton
126
+ test_files: []