Skip to content

Commit ea436de

Browse files
committed
version 0.9.7.0 commit
0 parents  commit ea436de

1,005 files changed

Lines changed: 195758 additions & 0 deletions

File tree

Some content is hidden

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

.gitignore

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
#
3+
# If you find yourself ignoring temporary files generated by your text editor
4+
# or operating system, you probably want to add a global ignore instead:
5+
# git config --global core.excludesfile ~/.gitignore_global
6+
7+
# Ignore bundler config
8+
/.bundle
9+
10+
# Ignore the default SQLite database.
11+
/db/*.sqlite3
12+
/config/database.yml
13+
/config/torquebox.yml
14+
/config/initializers/secret_token.rb
15+
16+
# Ignore all logfiles and tempfiles.
17+
/log/*
18+
/tmp
19+
20+
doc/
21+
*.swp
22+
*~
23+
.project
24+
.DS_Store
25+
.idea
26+
oadr.sublime-workspace
27+
oadr.war
28+
public/assets/*
29+
**.zip
30+
out
31+
oadr.iml
32+
.sass-cache
33+
*.knob*
34+
.powenv
35+
config/tls/*.jks
36+
config/tls/*.pem
37+
config/secrets.yml
38+
39+
coverage
40+
41+
# Ignore API script files
42+
lib/api/*
43+
lib/schema/*
44+

.jrubyrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Set compilation mode. JIT = at runtime; FORCE = before execution.
2+
# Options: [JIT, FORCE, OFF, OFFIR], Default: JIT.
3+
compile.mode=OFF
4+
5+
# Use invokedynamic to bind FFI invocations.
6+
# Options: [true, false], Default: false.
7+
ffi.compile.invokedynamic=false

.rspec

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

.ruby-gemset

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

.ruby-version

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

COPYING.txt

Lines changed: 1816 additions & 0 deletions
Large diffs are not rendered by default.

Gemfile

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'rails', '3.2.12'
4+
5+
gem 'bcrypt-ruby', '3.0.1'
6+
7+
gem 'warbler', '1.4.0.beta1'
8+
9+
# gem 'httpclient', '~> 2.2.2'
10+
11+
gem 'httpclient', '~> 2.3.4.1'
12+
13+
gem 'json-schema'
14+
15+
group :development do
16+
gem 'torquebox', '~> 3.0.2'
17+
gem 'torquebox-server', '~> 3.0.2'
18+
19+
gem 'annotate', '2.5.0'
20+
21+
end
22+
23+
# Bundle edge Rails instead:
24+
# gem 'rails', :git => 'git://github.com/rails/rails.git'
25+
26+
gem 'activerecord-jdbcpostgresql-adapter', '~> 1.2.9'
27+
gem 'jdbc-postgresql', '9.2.1000'
28+
29+
30+
# gem 'jruby-openssl'
31+
32+
# Gems used only for assets and not required
33+
# in production environments by default.
34+
group :assets do
35+
gem 'bourbon'
36+
gem 'sass-rails', '~> 3.2.3'
37+
gem 'coffee-rails', '~> 3.2.1'
38+
39+
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
40+
gem 'therubyrhino', '2.0.2'
41+
42+
gem 'uglifier', '>= 1.0.3'
43+
gem 'bootstrap-sass'
44+
end
45+
46+
group :test do
47+
gem 'capybara'
48+
end
49+
50+
group :development, :test do
51+
gem 'rspec-rails', '~> 2.14.0'
52+
gem 'factory_girl_rails'
53+
gem 'database_cleaner'
54+
gem 'spork-testunit'
55+
gem 'spork', '~> 1.0rc'
56+
gem 'test-unit'
57+
gem 'gem-licenses'
58+
59+
gem 'simplecov', '~> 0.9.0'
60+
gem 'mocha', '~> 1.1.0'
61+
62+
# Theine pre-loads the Rails environment, to lower perceived environment load time
63+
# gem 'theine'
64+
65+
end
66+
67+
# gem 'jquery-rails', '2.2.1'
68+
gem 'jquery-rails', '3.0.4'
69+
gem 'jquery-ui-rails', '4.0.3'
70+
71+
gem 'time_difference'
72+
73+
# Load local gems based on their existence in a known local directory
74+
local_gems_directory = File.dirname(__FILE__) + '/../local_oadr_gems/' # Set to empty string ('') if not replacing with valid directory
75+
76+
if File.directory?(local_gems_directory)
77+
gem_paths = Dir[local_gems_directory + '*']
78+
gem_paths.each do |gem_path|
79+
gem_name = File.basename(gem_path)
80+
gem gem_name, path: gem_path
81+
end
82+
end
83+
84+
# gem 'event_interface-cea2045', path: '../oadr_gems/epri/event_interface-cea2045'
85+
# gem 'event_interface-der', path: '../oadr_gems/epri/event_interface-der'
86+
87+
# To use ActiveModel has_secure_password
88+
# gem 'bcrypt-ruby', '~> 3.0.0'
89+
90+
# To use Jbuilder templates for JSON
91+
# gem 'jbuilder'
92+
93+
# Use unicorn as the app server
94+
# gem 'unicorn'
95+
96+
# Deploy with Capistrano
97+
# gem 'capistrano'
98+
99+
# To use debugger
100+
# gem 'debugger'

0 commit comments

Comments
 (0)