qcourses 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.
- data/.autotest +5 -0
- data/.document +5 -0
- data/.gitignore +6 -0
- data/.irbrc +2 -0
- data/.rvmrc +54 -0
- data/Gemfile +2 -21
- data/Gemfile.lock +30 -38
- data/Rakefile +1 -45
- data/config/database.yml +23 -0
- data/content/pages/en/courses/agile-engineering.mdown +4 -0
- data/lib/qcourses/version.rb +3 -0
- data/lib/qcourses.rb +1 -0
- data/qcourses.gemspec +32 -0
- metadata +22 -120
- data/bin/autospec +0 -16
- data/bin/autotest +0 -16
- data/bin/haml +0 -16
- data/bin/html2haml +0 -16
- data/bin/htmldiff +0 -16
- data/bin/jeweler +0 -16
- data/bin/ldiff +0 -16
- data/bin/multigem +0 -16
- data/bin/multiruby +0 -16
- data/bin/multiruby_setup +0 -16
- data/bin/nokogiri +0 -16
- data/bin/rackup +0 -16
- data/bin/rake +0 -16
- data/bin/ri +0 -16
- data/bin/rspec +0 -16
- data/bin/sequel +0 -16
- data/bin/tilt +0 -16
- data/bin/unit_diff +0 -16
- data/bin/zentest +0 -16
data/.autotest
ADDED
data/.document
ADDED
data/.irbrc
ADDED
data/.rvmrc
ADDED
@@ -0,0 +1,54 @@
|
|
1
|
+
#!/usr/bin/env bash
|
2
|
+
|
3
|
+
# This is an RVM Project .rvmrc file, used to automatically load the ruby
|
4
|
+
# development environment upon cd'ing into the directory
|
5
|
+
|
6
|
+
# First we specify our desired <ruby>[@<gemset>], the @gemset name is optional.
|
7
|
+
environment_id="ruby-1.9.2@nesta"
|
8
|
+
|
9
|
+
#
|
10
|
+
# Uncomment following line if you want options to be set only for given project.
|
11
|
+
#
|
12
|
+
# PROJECT_JRUBY_OPTS=( --1.9 )
|
13
|
+
|
14
|
+
#
|
15
|
+
# First we attempt to load the desired environment directly from the environment
|
16
|
+
# file. This is very fast and efficient compared to running through the entire
|
17
|
+
# CLI and selector. If you want feedback on which environment was used then
|
18
|
+
# insert the word 'use' after --create as this triggers verbose mode.
|
19
|
+
#
|
20
|
+
if [[ -d "${rvm_path:-$HOME/.rvm}/environments" \
|
21
|
+
&& -s "${rvm_path:-$HOME/.rvm}/environments/$environment_id" ]]
|
22
|
+
then
|
23
|
+
\. "${rvm_path:-$HOME/.rvm}/environments/$environment_id"
|
24
|
+
|
25
|
+
if [[ -s "${rvm_path:-$HOME/.rvm}/hooks/after_use" ]]
|
26
|
+
then
|
27
|
+
. "${rvm_path:-$HOME/.rvm}/hooks/after_use"
|
28
|
+
fi
|
29
|
+
else
|
30
|
+
# If the environment file has not yet been created, use the RVM CLI to select.
|
31
|
+
if ! rvm --create "$environment_id"
|
32
|
+
then
|
33
|
+
echo "Failed to create RVM environment '${environment_id}'."
|
34
|
+
exit 1
|
35
|
+
fi
|
36
|
+
fi
|
37
|
+
#
|
38
|
+
# If you use an RVM gemset file to install a list of gems (*.gems), you can have
|
39
|
+
# it be automatically loaded. Uncomment the following and adjust the filename if
|
40
|
+
# necessary.
|
41
|
+
#
|
42
|
+
# filename=".gems"
|
43
|
+
# if [[ -s "$filename" ]]
|
44
|
+
# then
|
45
|
+
# rvm gemset import "$filename" | grep -v already | grep -v listed | grep -v complete | sed '/^$/d'
|
46
|
+
# fi
|
47
|
+
|
48
|
+
# If you use bundler, this might be useful to you:
|
49
|
+
# if command -v bundle && [[ -s Gemfile ]]
|
50
|
+
# then
|
51
|
+
# bundle install
|
52
|
+
# fi
|
53
|
+
|
54
|
+
|
data/Gemfile
CHANGED
@@ -1,23 +1,4 @@
|
|
1
1
|
source "http://rubygems.org"
|
2
|
-
# Add dependencies required to use your gem here.
|
3
|
-
# Example:
|
4
|
-
# gem "activesupport", ">= 2.3.5"
|
5
2
|
|
6
|
-
#
|
7
|
-
|
8
|
-
|
9
|
-
gem "sinatra", "~> 1.2.6"
|
10
|
-
gem "haml", "~> 3.1.4"
|
11
|
-
gem "sequel", "~> 3.33.0"
|
12
|
-
gem "sqlite3", "~> 1.3.5"
|
13
|
-
|
14
|
-
group :development do
|
15
|
-
gem "rspec", "~> 2.8"
|
16
|
-
gem "rack-test"
|
17
|
-
gem "ZenTest", ">= 0"
|
18
|
-
gem "rdoc", "~> 3.12"
|
19
|
-
gem "bundler", "~> 1.1.0"
|
20
|
-
gem "jeweler", "~> 1.8.3"
|
21
|
-
gem "simplecov", ">= 0"
|
22
|
-
gem "capybara"
|
23
|
-
end
|
3
|
+
# Specify your gem's dependencies in qcourses.gemspec
|
4
|
+
gemspec
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,17 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
qcourses (0.1.4)
|
5
|
+
haml (~> 3.1.4)
|
6
|
+
sequel (~> 3.33.0)
|
7
|
+
sinatra (~> 1.2.6)
|
8
|
+
sqlite3 (~> 1.3.5)
|
9
|
+
|
1
10
|
GEM
|
2
11
|
remote: http://rubygems.org/
|
3
12
|
specs:
|
4
|
-
ZenTest (4.
|
13
|
+
ZenTest (4.7.0)
|
14
|
+
addressable (2.2.7)
|
5
15
|
capybara (1.1.2)
|
6
16
|
mime-types (>= 1.16)
|
7
17
|
nokogiri (>= 1.3.3)
|
@@ -9,50 +19,39 @@ GEM
|
|
9
19
|
rack-test (>= 0.5.4)
|
10
20
|
selenium-webdriver (~> 2.0)
|
11
21
|
xpath (~> 0.1.4)
|
12
|
-
childprocess (0.3.
|
22
|
+
childprocess (0.3.2)
|
13
23
|
ffi (~> 1.0.6)
|
14
24
|
diff-lcs (1.1.3)
|
15
25
|
ffi (1.0.11)
|
16
|
-
git (1.2.5)
|
17
26
|
haml (3.1.4)
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
rdoc
|
23
|
-
json (1.6.5)
|
24
|
-
mime-types (1.17.2)
|
25
|
-
multi_json (1.1.0)
|
27
|
+
libwebsocket (0.1.3)
|
28
|
+
addressable
|
29
|
+
mime-types (1.18)
|
30
|
+
multi_json (1.3.2)
|
26
31
|
nokogiri (1.5.2)
|
27
32
|
rack (1.4.1)
|
28
33
|
rack-test (0.6.1)
|
29
34
|
rack (>= 1.0)
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
rspec-
|
38
|
-
|
39
|
-
|
40
|
-
rspec-mocks (2.8.0)
|
41
|
-
rubyzip (0.9.6.1)
|
42
|
-
selenium-webdriver (2.20.0)
|
35
|
+
rspec (2.9.0)
|
36
|
+
rspec-core (~> 2.9.0)
|
37
|
+
rspec-expectations (~> 2.9.0)
|
38
|
+
rspec-mocks (~> 2.9.0)
|
39
|
+
rspec-core (2.9.0)
|
40
|
+
rspec-expectations (2.9.1)
|
41
|
+
diff-lcs (~> 1.1.3)
|
42
|
+
rspec-mocks (2.9.0)
|
43
|
+
rubyzip (0.9.7)
|
44
|
+
selenium-webdriver (2.21.2)
|
43
45
|
childprocess (>= 0.2.5)
|
44
46
|
ffi (~> 1.0)
|
47
|
+
libwebsocket (~> 0.1.3)
|
45
48
|
multi_json (~> 1.0)
|
46
49
|
rubyzip
|
47
50
|
sequel (3.33.0)
|
48
|
-
|
49
|
-
multi_json (~> 1.0)
|
50
|
-
simplecov-html (~> 0.5.3)
|
51
|
-
simplecov-html (0.5.3)
|
52
|
-
sinatra (1.2.6)
|
51
|
+
sinatra (1.2.8)
|
53
52
|
rack (~> 1.1)
|
54
53
|
tilt (>= 1.2.2, < 2.0)
|
55
|
-
sqlite3 (1.3.
|
54
|
+
sqlite3 (1.3.6)
|
56
55
|
tilt (1.3.3)
|
57
56
|
xpath (0.1.4)
|
58
57
|
nokogiri (~> 1.3)
|
@@ -62,14 +61,7 @@ PLATFORMS
|
|
62
61
|
|
63
62
|
DEPENDENCIES
|
64
63
|
ZenTest
|
65
|
-
bundler (~> 1.1.0)
|
66
64
|
capybara
|
67
|
-
|
68
|
-
jeweler (~> 1.8.3)
|
65
|
+
qcourses!
|
69
66
|
rack-test
|
70
|
-
rdoc (~> 3.12)
|
71
67
|
rspec (~> 2.8)
|
72
|
-
sequel (~> 3.33.0)
|
73
|
-
simplecov
|
74
|
-
sinatra (~> 1.2.6)
|
75
|
-
sqlite3 (~> 1.3.5)
|
data/Rakefile
CHANGED
@@ -1,52 +1,8 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
require 'rubygems'
|
4
|
-
require 'bundler'
|
5
|
-
require 'bundler/setup'
|
6
|
-
begin
|
7
|
-
Bundler.setup(:default, :development)
|
8
|
-
rescue Bundler::BundlerError => e
|
9
|
-
$stderr.puts e.message
|
10
|
-
$stderr.puts "Run `bundle install` to install missing gems"
|
11
|
-
exit e.status_code
|
12
|
-
end
|
13
|
-
require 'rake'
|
14
|
-
|
15
|
-
require 'jeweler'
|
16
|
-
Jeweler::Tasks.new do |gem|
|
17
|
-
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
|
18
|
-
gem.name = "qcourses"
|
19
|
-
gem.homepage = "http://github.com/rwestgeest/qcourses"
|
20
|
-
gem.license = "MIT"
|
21
|
-
gem.summary = %Q{Course management module for QWAN nesta site}
|
22
|
-
gem.description = %Q{Course management module for QWAN nesta site}
|
23
|
-
gem.email = "rob.westgeest@gmail.com"
|
24
|
-
gem.authors = ["Rob Westgeest"]
|
25
|
-
gem.files = Dir.glob("{views,spec,lib,db,public}/**/*") + %w{ config.ru demo_app.rb Gemfile Gemfile.lock .rspec LICENCE.txt Rakefile README.rdoc VERSION }
|
26
|
-
# dependencies defined in Gemfile
|
27
|
-
end
|
28
|
-
Jeweler::RubygemsDotOrgTasks.new
|
29
|
-
|
1
|
+
require "bundler/gem_tasks"
|
30
2
|
require 'rspec/core'
|
31
3
|
require 'rspec/core/rake_task'
|
32
4
|
RSpec::Core::RakeTask.new(:spec) do |spec|
|
33
5
|
spec.pattern = FileList['spec/**/*_spec.rb']
|
34
6
|
end
|
35
|
-
|
36
|
-
RSpec::Core::RakeTask.new(:rcov) do |spec|
|
37
|
-
spec.pattern = 'spec/**/*_spec.rb'
|
38
|
-
spec.rcov = true
|
39
|
-
end
|
40
|
-
|
41
7
|
task :default => :spec
|
42
|
-
|
43
|
-
require 'rdoc/task'
|
44
|
-
Rake::RDocTask.new do |rdoc|
|
45
|
-
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
46
|
-
|
47
|
-
rdoc.rdoc_dir = 'rdoc'
|
48
|
-
rdoc.title = "qcourses #{version}"
|
49
|
-
rdoc.rdoc_files.include('README*')
|
50
|
-
rdoc.rdoc_files.include('lib/**/*.rb')
|
51
|
-
end
|
52
8
|
require 'qcourses/qcourses.rake'
|
data/config/database.yml
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
# SQLite version 3.x
|
2
|
+
# gem install sqlite3
|
3
|
+
development:
|
4
|
+
adapter: sqlite
|
5
|
+
database: data/development.sqlite3
|
6
|
+
pool: 5
|
7
|
+
timeout: 5000
|
8
|
+
|
9
|
+
# Warning: The database defined as "test" will be erased and
|
10
|
+
# re-generated from your development database when you run "rake".
|
11
|
+
# Do not set this db to the same as development or production.
|
12
|
+
test: &test
|
13
|
+
adapter: sqlite
|
14
|
+
database: ":memory:"
|
15
|
+
|
16
|
+
production:
|
17
|
+
adapter: sqlite
|
18
|
+
database: data/production.sqlite3
|
19
|
+
pool: 5
|
20
|
+
timeout: 5000
|
21
|
+
|
22
|
+
cucumber:
|
23
|
+
<<: *test
|
data/lib/qcourses.rb
CHANGED
data/qcourses.gemspec
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
require "qcourses/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |s|
|
6
|
+
s.name = "qcourses"
|
7
|
+
s.version = Qcourses::VERSION
|
8
|
+
s.authors = ["Rob Westgeest"]
|
9
|
+
s.email = ["rob@gqwan.it"]
|
10
|
+
s.homepage = ""
|
11
|
+
s.summary = %q{Small course event module for sinatra site}
|
12
|
+
s.description = %q{Small course event moduel for qinatra site - added as middleware}
|
13
|
+
|
14
|
+
s.rubyforge_project = "qcourses"
|
15
|
+
|
16
|
+
s.files = `git ls-files`.split("\n")
|
17
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
18
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
19
|
+
s.require_paths = ["lib"]
|
20
|
+
|
21
|
+
# specify any dependencies here; for example:
|
22
|
+
# s.add_development_dependency "rspec"
|
23
|
+
s.add_runtime_dependency "sinatra", "~> 1.2.6"
|
24
|
+
s.add_runtime_dependency "haml", "~> 3.1.4"
|
25
|
+
s.add_runtime_dependency "sequel", "~> 3.33.0"
|
26
|
+
s.add_runtime_dependency "sqlite3", "~> 1.3.5"
|
27
|
+
|
28
|
+
s.add_development_dependency "rspec", "~> 2.8"
|
29
|
+
s.add_development_dependency "rack-test"
|
30
|
+
s.add_development_dependency "ZenTest"
|
31
|
+
s.add_development_dependency "capybara"
|
32
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: qcourses
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-04-25 00:00:00.000000000Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: sinatra
|
@@ -123,70 +123,6 @@ dependencies:
|
|
123
123
|
- - ! '>='
|
124
124
|
- !ruby/object:Gem::Version
|
125
125
|
version: '0'
|
126
|
-
- !ruby/object:Gem::Dependency
|
127
|
-
name: rdoc
|
128
|
-
requirement: !ruby/object:Gem::Requirement
|
129
|
-
none: false
|
130
|
-
requirements:
|
131
|
-
- - ~>
|
132
|
-
- !ruby/object:Gem::Version
|
133
|
-
version: '3.12'
|
134
|
-
type: :development
|
135
|
-
prerelease: false
|
136
|
-
version_requirements: !ruby/object:Gem::Requirement
|
137
|
-
none: false
|
138
|
-
requirements:
|
139
|
-
- - ~>
|
140
|
-
- !ruby/object:Gem::Version
|
141
|
-
version: '3.12'
|
142
|
-
- !ruby/object:Gem::Dependency
|
143
|
-
name: bundler
|
144
|
-
requirement: !ruby/object:Gem::Requirement
|
145
|
-
none: false
|
146
|
-
requirements:
|
147
|
-
- - ~>
|
148
|
-
- !ruby/object:Gem::Version
|
149
|
-
version: 1.1.0
|
150
|
-
type: :development
|
151
|
-
prerelease: false
|
152
|
-
version_requirements: !ruby/object:Gem::Requirement
|
153
|
-
none: false
|
154
|
-
requirements:
|
155
|
-
- - ~>
|
156
|
-
- !ruby/object:Gem::Version
|
157
|
-
version: 1.1.0
|
158
|
-
- !ruby/object:Gem::Dependency
|
159
|
-
name: jeweler
|
160
|
-
requirement: !ruby/object:Gem::Requirement
|
161
|
-
none: false
|
162
|
-
requirements:
|
163
|
-
- - ~>
|
164
|
-
- !ruby/object:Gem::Version
|
165
|
-
version: 1.8.3
|
166
|
-
type: :development
|
167
|
-
prerelease: false
|
168
|
-
version_requirements: !ruby/object:Gem::Requirement
|
169
|
-
none: false
|
170
|
-
requirements:
|
171
|
-
- - ~>
|
172
|
-
- !ruby/object:Gem::Version
|
173
|
-
version: 1.8.3
|
174
|
-
- !ruby/object:Gem::Dependency
|
175
|
-
name: simplecov
|
176
|
-
requirement: !ruby/object:Gem::Requirement
|
177
|
-
none: false
|
178
|
-
requirements:
|
179
|
-
- - ! '>='
|
180
|
-
- !ruby/object:Gem::Version
|
181
|
-
version: '0'
|
182
|
-
type: :development
|
183
|
-
prerelease: false
|
184
|
-
version_requirements: !ruby/object:Gem::Requirement
|
185
|
-
none: false
|
186
|
-
requirements:
|
187
|
-
- - ! '>='
|
188
|
-
- !ruby/object:Gem::Version
|
189
|
-
version: '0'
|
190
126
|
- !ruby/object:Gem::Dependency
|
191
127
|
name: capybara
|
192
128
|
requirement: !ruby/object:Gem::Requirement
|
@@ -203,40 +139,28 @@ dependencies:
|
|
203
139
|
- - ! '>='
|
204
140
|
- !ruby/object:Gem::Version
|
205
141
|
version: '0'
|
206
|
-
description:
|
207
|
-
email:
|
208
|
-
|
209
|
-
|
210
|
-
- autotest
|
211
|
-
- haml
|
212
|
-
- html2haml
|
213
|
-
- htmldiff
|
214
|
-
- jeweler
|
215
|
-
- ldiff
|
216
|
-
- multigem
|
217
|
-
- multiruby
|
218
|
-
- multiruby_setup
|
219
|
-
- nokogiri
|
220
|
-
- rackup
|
221
|
-
- rake
|
222
|
-
- ri
|
223
|
-
- rspec
|
224
|
-
- sequel
|
225
|
-
- tilt
|
226
|
-
- unit_diff
|
227
|
-
- zentest
|
142
|
+
description: Small course event moduel for qinatra site - added as middleware
|
143
|
+
email:
|
144
|
+
- rob@gqwan.it
|
145
|
+
executables: []
|
228
146
|
extensions: []
|
229
|
-
extra_rdoc_files:
|
230
|
-
- LICENSE.txt
|
231
|
-
- README.rdoc
|
147
|
+
extra_rdoc_files: []
|
232
148
|
files:
|
149
|
+
- .autotest
|
150
|
+
- .document
|
151
|
+
- .gitignore
|
152
|
+
- .irbrc
|
233
153
|
- .rspec
|
154
|
+
- .rvmrc
|
234
155
|
- Gemfile
|
235
156
|
- Gemfile.lock
|
157
|
+
- LICENSE.txt
|
236
158
|
- README.rdoc
|
237
159
|
- Rakefile
|
238
160
|
- VERSION
|
239
161
|
- config.ru
|
162
|
+
- config/database.yml
|
163
|
+
- content/pages/en/courses/agile-engineering.mdown
|
240
164
|
- db/migrations/001_initial_database.rb
|
241
165
|
- db/migrations/002_create_registrations.rb
|
242
166
|
- db/migrations/003_add_closed_state_and_max_participants_to_event.rb
|
@@ -260,6 +184,7 @@ files:
|
|
260
184
|
- lib/qcourses/renderers.rb
|
261
185
|
- lib/qcourses/resource_paths.rb
|
262
186
|
- lib/qcourses/string_ex.rb
|
187
|
+
- lib/qcourses/version.rb
|
263
188
|
- lib/qcourses/view_helpers.rb
|
264
189
|
- lib/qcourses/web_app.rb
|
265
190
|
- public/css/default.css
|
@@ -267,6 +192,7 @@ files:
|
|
267
192
|
- public/javascript/jquery-1.7.js
|
268
193
|
- public/javascript/jquery-1.7.min.js
|
269
194
|
- public/javascript/qcourses.js
|
195
|
+
- qcourses.gemspec
|
270
196
|
- spec/factories_spec.rb
|
271
197
|
- spec/qcourses/configuration_spec.rb
|
272
198
|
- spec/qcourses/controllers/courses_controller_spec.rb
|
@@ -297,29 +223,8 @@ files:
|
|
297
223
|
- views/registrations/success.haml
|
298
224
|
- views/trainings/error.haml
|
299
225
|
- views/trainings/index.haml
|
300
|
-
|
301
|
-
|
302
|
-
- bin/autotest
|
303
|
-
- bin/haml
|
304
|
-
- bin/html2haml
|
305
|
-
- bin/htmldiff
|
306
|
-
- bin/jeweler
|
307
|
-
- bin/ldiff
|
308
|
-
- bin/multigem
|
309
|
-
- bin/multiruby
|
310
|
-
- bin/multiruby_setup
|
311
|
-
- bin/nokogiri
|
312
|
-
- bin/rackup
|
313
|
-
- bin/rake
|
314
|
-
- bin/ri
|
315
|
-
- bin/rspec
|
316
|
-
- bin/sequel
|
317
|
-
- bin/tilt
|
318
|
-
- bin/unit_diff
|
319
|
-
- bin/zentest
|
320
|
-
homepage: http://github.com/rwestgeest/qcourses
|
321
|
-
licenses:
|
322
|
-
- MIT
|
226
|
+
homepage: ''
|
227
|
+
licenses: []
|
323
228
|
post_install_message:
|
324
229
|
rdoc_options: []
|
325
230
|
require_paths:
|
@@ -330,9 +235,6 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
330
235
|
- - ! '>='
|
331
236
|
- !ruby/object:Gem::Version
|
332
237
|
version: '0'
|
333
|
-
segments:
|
334
|
-
- 0
|
335
|
-
hash: 12649459
|
336
238
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
337
239
|
none: false
|
338
240
|
requirements:
|
@@ -340,9 +242,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
340
242
|
- !ruby/object:Gem::Version
|
341
243
|
version: '0'
|
342
244
|
requirements: []
|
343
|
-
rubyforge_project:
|
344
|
-
rubygems_version: 1.8.
|
245
|
+
rubyforge_project: qcourses
|
246
|
+
rubygems_version: 1.8.18
|
345
247
|
signing_key:
|
346
248
|
specification_version: 3
|
347
|
-
summary:
|
249
|
+
summary: Small course event module for sinatra site
|
348
250
|
test_files: []
|
data/bin/autospec
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'autospec' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('rspec-core', 'autospec')
|
data/bin/autotest
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'autotest' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('ZenTest', 'autotest')
|
data/bin/haml
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'haml' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('haml', 'haml')
|
data/bin/html2haml
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'html2haml' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('haml', 'html2haml')
|
data/bin/htmldiff
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'htmldiff' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('diff-lcs', 'htmldiff')
|
data/bin/jeweler
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'jeweler' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('jeweler', 'jeweler')
|
data/bin/ldiff
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'ldiff' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('diff-lcs', 'ldiff')
|
data/bin/multigem
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'multigem' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('ZenTest', 'multigem')
|
data/bin/multiruby
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'multiruby' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('ZenTest', 'multiruby')
|
data/bin/multiruby_setup
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'multiruby_setup' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('ZenTest', 'multiruby_setup')
|
data/bin/nokogiri
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'nokogiri' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('nokogiri', 'nokogiri')
|
data/bin/rackup
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'rackup' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('rack', 'rackup')
|
data/bin/rake
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'rake' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('rake', 'rake')
|
data/bin/ri
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'ri' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('rdoc', 'ri')
|
data/bin/rspec
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'rspec' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('rspec-core', 'rspec')
|
data/bin/sequel
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'sequel' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('sequel', 'sequel')
|
data/bin/tilt
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'tilt' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('tilt', 'tilt')
|
data/bin/unit_diff
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'unit_diff' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('ZenTest', 'unit_diff')
|
data/bin/zentest
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'zentest' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('ZenTest', 'zentest')
|