Skip to content

Commit c519913

Browse files
committed
Move gem out of app
0 parents  commit c519913

File tree

208 files changed

+6668
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

208 files changed

+6668
-0
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.bundle/
2+
log/*.log
3+
pkg/
4+
spec/dummy/db/*.sqlite3
5+
spec/dummy/log/*.log
6+
spec/dummy/tmp/
7+
spec/dummy/.sass-cache

.rspec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
--color

Gemfile

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
source "http://rubygems.org"
2+
3+
# Declare your gem's dependencies in instance_manager.gemspec.
4+
# Bundler will treat runtime dependencies like base dependencies, and
5+
# development dependencies will be added by default to the :development group.
6+
gemspec
7+
8+
# jquery-rails is used by the dummy application
9+
gem "jquery-rails"
10+
11+
# Declare any dependencies that are still in development here instead of in
12+
# your gemspec. These might include edge Rails or gems from your path or
13+
# Git. Remember to move these dependencies to your gemspec before releasing
14+
# your gem to rubygems.org.
15+
16+
# To use debugger
17+
# gem 'debugger'
18+
#
19+
gem 'cucumber-rails', require: false
20+
gem 'os_tools', path: '../os_tools'
21+
gem 'devise_sequel', git: 'git://github.com/arthurdandrea/devise_sequel.git'

Gemfile.lock

Lines changed: 193 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,193 @@
1+
GIT
2+
remote: git://github.com/arthurdandrea/devise_sequel.git
3+
revision: 63a90f86e2fad9f4f32b2bb8d84ee1d547c35032
4+
specs:
5+
devise_sequel (0.0.3)
6+
devise (>= 2.1.0)
7+
orm_adapter-sequel (>= 0.0.3)
8+
9+
PATH
10+
remote: .
11+
specs:
12+
instance_manager (0.0.1)
13+
carrierwave
14+
carrierwave-sequel
15+
devise
16+
devise_sequel
17+
dynamic_form
18+
orm_adapter-sequel
19+
os_tools
20+
rails (~> 4.0.0)
21+
sequel
22+
sequel-rails
23+
sequel_pg
24+
25+
PATH
26+
remote: ../os_tools
27+
specs:
28+
os_tools (0.0.1)
29+
rails (~> 4.0.0)
30+
sequel-rails
31+
sequel_pg
32+
sequel_postgresql_triggers
33+
34+
GEM
35+
remote: http://rubygems.org/
36+
specs:
37+
actionmailer (4.0.0)
38+
actionpack (= 4.0.0)
39+
mail (~> 2.5.3)
40+
actionpack (4.0.0)
41+
activesupport (= 4.0.0)
42+
builder (~> 3.1.0)
43+
erubis (~> 2.7.0)
44+
rack (~> 1.5.2)
45+
rack-test (~> 0.6.2)
46+
activemodel (4.0.0)
47+
activesupport (= 4.0.0)
48+
builder (~> 3.1.0)
49+
activerecord (4.0.0)
50+
activemodel (= 4.0.0)
51+
activerecord-deprecated_finders (~> 1.0.2)
52+
activesupport (= 4.0.0)
53+
arel (~> 4.0.0)
54+
activerecord-deprecated_finders (1.0.3)
55+
activesupport (4.0.0)
56+
i18n (~> 0.6, >= 0.6.4)
57+
minitest (~> 4.2)
58+
multi_json (~> 1.3)
59+
thread_safe (~> 0.1)
60+
tzinfo (~> 0.3.37)
61+
arel (4.0.0)
62+
atomic (1.1.14)
63+
bcrypt-ruby (3.1.2)
64+
builder (3.1.4)
65+
capybara (2.1.0)
66+
mime-types (>= 1.16)
67+
nokogiri (>= 1.3.3)
68+
rack (>= 1.0.0)
69+
rack-test (>= 0.5.4)
70+
xpath (~> 2.0)
71+
carrierwave (0.9.0)
72+
activemodel (>= 3.2.0)
73+
activesupport (>= 3.2.0)
74+
json (>= 1.7)
75+
carrierwave-sequel (0.1.0)
76+
carrierwave
77+
sequel
78+
cucumber (1.3.8)
79+
builder (>= 2.1.2)
80+
diff-lcs (>= 1.1.3)
81+
gherkin (~> 2.12.1)
82+
multi_json (>= 1.7.5, < 2.0)
83+
multi_test (>= 0.0.2)
84+
cucumber-rails (1.4.0)
85+
capybara (>= 1.1.2)
86+
cucumber (>= 1.2.0)
87+
nokogiri (>= 1.5.0)
88+
rails (>= 3.0.0)
89+
database_cleaner (1.1.1)
90+
devise (3.1.0)
91+
bcrypt-ruby (~> 3.0)
92+
orm_adapter (~> 0.1)
93+
railties (>= 3.2.6, < 5)
94+
thread_safe (~> 0.1)
95+
warden (~> 1.2.3)
96+
diff-lcs (1.2.4)
97+
dynamic_form (1.1.4)
98+
erubis (2.7.0)
99+
gherkin (2.12.1)
100+
multi_json (~> 1.3)
101+
hike (1.2.3)
102+
i18n (0.6.5)
103+
jquery-rails (3.0.4)
104+
railties (>= 3.0, < 5.0)
105+
thor (>= 0.14, < 2.0)
106+
json (1.8.0)
107+
mail (2.5.4)
108+
mime-types (~> 1.16)
109+
treetop (~> 1.4.8)
110+
mime-types (1.25)
111+
mini_portile (0.5.1)
112+
minitest (4.7.5)
113+
multi_json (1.8.0)
114+
multi_test (0.0.2)
115+
nokogiri (1.6.0)
116+
mini_portile (~> 0.5.0)
117+
orm_adapter (0.4.0)
118+
orm_adapter-sequel (0.1.0)
119+
activemodel (>= 3.0.0)
120+
orm_adapter (>= 0.4.0)
121+
sequel (>= 3.18.0)
122+
pg (0.16.0)
123+
polyglot (0.3.3)
124+
rack (1.5.2)
125+
rack-test (0.6.2)
126+
rack (>= 1.0)
127+
rails (4.0.0)
128+
actionmailer (= 4.0.0)
129+
actionpack (= 4.0.0)
130+
activerecord (= 4.0.0)
131+
activesupport (= 4.0.0)
132+
bundler (>= 1.3.0, < 2.0)
133+
railties (= 4.0.0)
134+
sprockets-rails (~> 2.0.0)
135+
railties (4.0.0)
136+
actionpack (= 4.0.0)
137+
activesupport (= 4.0.0)
138+
rake (>= 0.8.7)
139+
thor (>= 0.18.1, < 2.0)
140+
rake (10.1.0)
141+
rspec-core (2.14.5)
142+
rspec-expectations (2.14.2)
143+
diff-lcs (>= 1.1.3, < 2.0)
144+
rspec-mocks (2.14.3)
145+
rspec-rails (2.14.0)
146+
actionpack (>= 3.0)
147+
activesupport (>= 3.0)
148+
railties (>= 3.0)
149+
rspec-core (~> 2.14.0)
150+
rspec-expectations (~> 2.14.0)
151+
rspec-mocks (~> 2.14.0)
152+
sequel (4.0.0)
153+
sequel-rails (0.5.0)
154+
railties (>= 3.2.0)
155+
sequel (>= 3.28, < 4.1.0)
156+
sequel_pg (1.6.8)
157+
pg (>= 0.8.0)
158+
sequel (>= 3.39.0)
159+
sequel_postgresql_triggers (1.0.3)
160+
sprockets (2.10.0)
161+
hike (~> 1.2)
162+
multi_json (~> 1.0)
163+
rack (~> 1.0)
164+
tilt (~> 1.1, != 1.3.0)
165+
sprockets-rails (2.0.0)
166+
actionpack (>= 3.0)
167+
activesupport (>= 3.0)
168+
sprockets (~> 2.8)
169+
thor (0.18.1)
170+
thread_safe (0.1.3)
171+
atomic
172+
tilt (1.4.1)
173+
treetop (1.4.15)
174+
polyglot
175+
polyglot (>= 0.3.1)
176+
tzinfo (0.3.37)
177+
warden (1.2.3)
178+
rack (>= 1.0)
179+
xpath (2.0.0)
180+
nokogiri (~> 1.3)
181+
182+
PLATFORMS
183+
ruby
184+
185+
DEPENDENCIES
186+
capybara
187+
cucumber-rails
188+
database_cleaner
189+
devise_sequel!
190+
instance_manager!
191+
jquery-rails
192+
os_tools!
193+
rspec-rails

MIT-LICENSE

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Copyright 2013 YOURNAME
2+
3+
Permission is hereby granted, free of charge, to any person obtaining
4+
a copy of this software and associated documentation files (the
5+
"Software"), to deal in the Software without restriction, including
6+
without limitation the rights to use, copy, modify, merge, publish,
7+
distribute, sublicense, and/or sell copies of the Software, and to
8+
permit persons to whom the Software is furnished to do so, subject to
9+
the following conditions:
10+
11+
The above copyright notice and this permission notice shall be
12+
included in all copies or substantial portions of the Software.
13+
14+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.rdoc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
= InstanceManager
2+
3+
This project rocks and uses MIT-LICENSE.

Rakefile

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#!/usr/bin/env rake
2+
begin
3+
require 'bundler/setup'
4+
rescue LoadError
5+
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
6+
end
7+
begin
8+
require 'rdoc/task'
9+
rescue LoadError
10+
require 'rdoc/rdoc'
11+
require 'rake/rdoctask'
12+
RDoc::Task = Rake::RDocTask
13+
end
14+
15+
RDoc::Task.new(:rdoc) do |rdoc|
16+
rdoc.rdoc_dir = 'rdoc'
17+
rdoc.title = 'InstanceManager'
18+
rdoc.options << '--line-numbers'
19+
rdoc.rdoc_files.include('README.rdoc')
20+
rdoc.rdoc_files.include('lib/**/*.rb')
21+
end
22+
23+
24+
25+
26+
Bundler::GemHelper.install_tasks
27+

app/assets/images/instance_manager/.gitkeep

Whitespace-only changes.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// This is a manifest file that'll be compiled into application.js, which will include all the files
2+
// listed below.
3+
//
4+
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5+
// or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
6+
//
7+
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8+
// the compiled file.
9+
//
10+
// WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
11+
// GO AFTER THE REQUIRES BELOW.
12+
//
13+
//= require_tree .
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/*
2+
* This is a manifest file that'll be compiled into application.css, which will include all the files
3+
* listed below.
4+
*
5+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6+
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
7+
*
8+
* You're free to add application-wide styles to this file and they'll appear at the top of the
9+
* compiled file, but it's generally better to create a new file per style scope.
10+
*
11+
*= require_self
12+
*= require_tree .
13+
*/

0 commit comments

Comments
 (0)