configurable_engine 0.3.1 → 0.3.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +56 -0
- data/README.md +14 -8
- data/lib/configurable_engine/version.rb +1 -1
- metadata +3 -114
- data/.document +0 -5
- data/.gitignore +0 -43
- data/.rspec +0 -1
- data/.travis.yml +0 -18
- data/CHANGELOG +0 -12
- data/Gemfile +0 -3
- data/Gemfile.lock +0 -178
- data/Rakefile +0 -18
- data/config/cucumber.yml +0 -8
- data/configurable_engine.gemspec +0 -29
- data/features/admin_configurables.feature +0 -10
- data/features/step_definitions/web_steps.rb +0 -219
- data/features/support/env.rb +0 -57
- data/features/support/paths.rb +0 -35
- data/gemfiles/Gemfile.base +0 -24
- data/gemfiles/Gemfile.rails3_1 +0 -2
- data/gemfiles/Gemfile.rails3_1.lock +0 -180
- data/gemfiles/Gemfile.rails4_0 +0 -2
- data/gemfiles/Gemfile.rails4_0.lock +0 -175
- data/spec/dummy/.gitignore +0 -4
- data/spec/dummy/README +0 -256
- data/spec/dummy/Rakefile +0 -7
- data/spec/dummy/app/controllers/application_controller.rb +0 -3
- data/spec/dummy/app/helpers/application_helper.rb +0 -2
- data/spec/dummy/app/views/layouts/application.html.erb +0 -14
- data/spec/dummy/config.ru +0 -4
- data/spec/dummy/config/application.rb +0 -45
- data/spec/dummy/config/boot.rb +0 -13
- data/spec/dummy/config/configurable.yml +0 -27
- data/spec/dummy/config/database.yml +0 -29
- data/spec/dummy/config/environment.rb +0 -5
- data/spec/dummy/config/environments/development.rb +0 -24
- data/spec/dummy/config/environments/production.rb +0 -51
- data/spec/dummy/config/environments/test.rb +0 -85
- data/spec/dummy/config/initializers/backtrace_silencers.rb +0 -7
- data/spec/dummy/config/initializers/inflections.rb +0 -10
- data/spec/dummy/config/initializers/mime_types.rb +0 -5
- data/spec/dummy/config/initializers/secret_token.rb +0 -8
- data/spec/dummy/config/initializers/session_store.rb +0 -8
- data/spec/dummy/config/locales/en.yml +0 -5
- data/spec/dummy/config/routes.rb +0 -58
- data/spec/dummy/db/migrate/20110110001344_create_configurables.rb +0 -17
- data/spec/dummy/db/schema.rb +0 -25
- data/spec/dummy/db/seeds.rb +0 -7
- data/spec/dummy/lib/tasks/.gitkeep +0 -0
- data/spec/dummy/public/404.html +0 -26
- data/spec/dummy/public/422.html +0 -26
- data/spec/dummy/public/500.html +0 -26
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/public/images/rails.png +0 -0
- data/spec/dummy/public/index.html +0 -239
- data/spec/dummy/public/javascripts/application.js +0 -2
- data/spec/dummy/public/javascripts/controls.js +0 -965
- data/spec/dummy/public/javascripts/dragdrop.js +0 -974
- data/spec/dummy/public/javascripts/effects.js +0 -1123
- data/spec/dummy/public/javascripts/prototype.js +0 -6001
- data/spec/dummy/public/javascripts/rails.js +0 -175
- data/spec/dummy/public/robots.txt +0 -5
- data/spec/dummy/public/stylesheets/.gitkeep +0 -0
- data/spec/dummy/script/rails +0 -6
- data/spec/dummy/vendor/plugins/.gitkeep +0 -0
- data/spec/models/configurable_spec.rb +0 -134
- data/spec/spec_helper.rb +0 -27
- data/tasks/cucumber.rake +0 -56
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1811d51a74023fce2888c443a4e18b484e03e64d
|
4
|
+
data.tar.gz: a513bf6396dbb4edda39ab28a29bf2e6579478cb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9d6083ff4f21055b7c6c03074ec1348b405e6a2928119fe26529ea03a8118af35b067060bec2c0f5a24a89c9f71afbba3e963b0ae97117fd8f182acdfaa3d620
|
7
|
+
data.tar.gz: ca72a610057f1b1370f84a6ec0e1afa4ff93230f460f782c6e09aa3a70a31f1ea31d91299ebcd6a9ebcabdf0d25c9b528f62193046bab3508f7d9f03b432e7b1
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
### v0.3.2 - Mar 12, 2014
|
2
|
+
**features**
|
3
|
+
re-releasing gem without test files included to shrink it. Should have no code changes.
|
4
|
+
|
5
|
+
### v0.3.1 - Mar 3, 2014
|
6
|
+
|
7
|
+
**features**
|
8
|
+
- add support for rails 4 and drop support for Rails 3.0 (3.1+)
|
9
|
+
- add flash notifications for Configurable updates
|
10
|
+
- added ability to cache configurables
|
11
|
+
|
12
|
+
**bug fixes**
|
13
|
+
- moved view logic back to the controller
|
14
|
+
- modernize dependency management
|
15
|
+
- modernize test suite
|
16
|
+
- support travis.yml (testing against Ruby 1.9, 2, jruby in 19 mode, rails 3.1, rails 3.2, rails 4)
|
17
|
+
|
18
|
+
### v0.2.9 - Aug 19, 2011
|
19
|
+
|
20
|
+
**features**
|
21
|
+
- add validations for keys in configurables
|
22
|
+
- Assignment of configuration with []= and method missing
|
23
|
+
- Configurables works if table doesn't exist (returns defaults)
|
24
|
+
|
25
|
+
**bug fixes**
|
26
|
+
- remove unused dependencies & development dependencies
|
27
|
+
|
28
|
+
### v0.2.8 - Jul 11, 2011
|
29
|
+
|
30
|
+
**features**
|
31
|
+
- relax dependencies to allow support for Rails 3.1
|
32
|
+
|
33
|
+
**bug fixes**
|
34
|
+
- remove unused dependencies
|
35
|
+
|
36
|
+
### v0.2.6 - Feb 9, 2011
|
37
|
+
|
38
|
+
**features**
|
39
|
+
- Sort keys alphabetically in the admin
|
40
|
+
|
41
|
+
### v0.2.5 - Feb 6, 2011
|
42
|
+
|
43
|
+
**bug fixes**
|
44
|
+
- make dependencies more accurate & less stringent
|
45
|
+
- dry up admin form
|
46
|
+
|
47
|
+
### v0.2.1 - Jan 17, 2011
|
48
|
+
|
49
|
+
**features**
|
50
|
+
- Add checkbox for booleans
|
51
|
+
- Sort keys
|
52
|
+
|
53
|
+
### v0.2.0 - Jan 10, 2011
|
54
|
+
|
55
|
+
**features**
|
56
|
+
- Add support for 'list' type
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Configurable
|
1
|
+
# Configurable [![Build Status](https://travis-ci.org/paulca/configurable_engine.png?branch=master)](https://travis-ci.org/paulca/configurable_engine)
|
2
2
|
|
3
3
|
A Rails 3 configuration engine. An update to [Behavior](http://github.com/paulca/behavior) for Rails 3.
|
4
4
|
|
@@ -79,18 +79,24 @@ If you want to control how the fields in the admin interface appear, you can add
|
|
79
79
|
name: A price # sets the edit label
|
80
80
|
default: "10.00" # sets the default value
|
81
81
|
type: decimal # coerces the value to a decimal
|
82
|
+
|
83
|
+
## Cacheing ##
|
82
84
|
|
83
|
-
|
85
|
+
If you want to use rails caching of Configurable updates, simply set
|
84
86
|
|
85
|
-
|
87
|
+
config.use_cache = true
|
88
|
+
|
89
|
+
in your `config/application.rb` (or `config/production.rb`)
|
86
90
|
|
87
|
-
|
91
|
+
## Running the Tests ##
|
88
92
|
|
89
|
-
|
90
|
-
rake db:test:prepare
|
91
|
-
bundle exec rspec spec
|
92
|
-
bundle exec cucumber features
|
93
|
+
The tests for this rails engine are in the `spec` and `features` directories. They use the dummy rails app in `spec/dummy`
|
93
94
|
|
95
|
+
From the top level run:
|
96
|
+
|
97
|
+
$ bundle exec rake app:db:schema:load app:db:test:prepare
|
98
|
+
$ bundle exec rake
|
99
|
+
|
94
100
|
## Contributing ##
|
95
101
|
|
96
102
|
All contributions are welcome. Just fork the code, ensure your changes include a test, ensure all the current tests pass and send a pull request.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: configurable_engine
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Paul Campbell
|
@@ -34,31 +34,13 @@ extra_rdoc_files:
|
|
34
34
|
- LICENSE.txt
|
35
35
|
- README.md
|
36
36
|
files:
|
37
|
-
-
|
38
|
-
- ".gitignore"
|
39
|
-
- ".rspec"
|
40
|
-
- ".travis.yml"
|
41
|
-
- CHANGELOG
|
42
|
-
- Gemfile
|
43
|
-
- Gemfile.lock
|
37
|
+
- CHANGELOG.md
|
44
38
|
- LICENSE.txt
|
45
39
|
- README.md
|
46
|
-
- Rakefile
|
47
40
|
- app/controllers/admin/configurables_controller.rb
|
48
41
|
- app/models/configurable.rb
|
49
42
|
- app/views/admin/configurables/show.html.erb
|
50
|
-
- config/cucumber.yml
|
51
43
|
- config/routes.rb
|
52
|
-
- configurable_engine.gemspec
|
53
|
-
- features/admin_configurables.feature
|
54
|
-
- features/step_definitions/web_steps.rb
|
55
|
-
- features/support/env.rb
|
56
|
-
- features/support/paths.rb
|
57
|
-
- gemfiles/Gemfile.base
|
58
|
-
- gemfiles/Gemfile.rails3_1
|
59
|
-
- gemfiles/Gemfile.rails3_1.lock
|
60
|
-
- gemfiles/Gemfile.rails4_0
|
61
|
-
- gemfiles/Gemfile.rails4_0.lock
|
62
44
|
- lib/configurable_engine.rb
|
63
45
|
- lib/configurable_engine/configurables_controller.rb
|
64
46
|
- lib/configurable_engine/engine.rb
|
@@ -66,51 +48,6 @@ files:
|
|
66
48
|
- lib/generators/configurable_engine/install_generator.rb
|
67
49
|
- lib/generators/configurable_engine/templates/configurable.yml
|
68
50
|
- lib/generators/configurable_engine/templates/migration.rb
|
69
|
-
- spec/dummy/.gitignore
|
70
|
-
- spec/dummy/README
|
71
|
-
- spec/dummy/Rakefile
|
72
|
-
- spec/dummy/app/controllers/application_controller.rb
|
73
|
-
- spec/dummy/app/helpers/application_helper.rb
|
74
|
-
- spec/dummy/app/views/layouts/application.html.erb
|
75
|
-
- spec/dummy/config.ru
|
76
|
-
- spec/dummy/config/application.rb
|
77
|
-
- spec/dummy/config/boot.rb
|
78
|
-
- spec/dummy/config/configurable.yml
|
79
|
-
- spec/dummy/config/database.yml
|
80
|
-
- spec/dummy/config/environment.rb
|
81
|
-
- spec/dummy/config/environments/development.rb
|
82
|
-
- spec/dummy/config/environments/production.rb
|
83
|
-
- spec/dummy/config/environments/test.rb
|
84
|
-
- spec/dummy/config/initializers/backtrace_silencers.rb
|
85
|
-
- spec/dummy/config/initializers/inflections.rb
|
86
|
-
- spec/dummy/config/initializers/mime_types.rb
|
87
|
-
- spec/dummy/config/initializers/secret_token.rb
|
88
|
-
- spec/dummy/config/initializers/session_store.rb
|
89
|
-
- spec/dummy/config/locales/en.yml
|
90
|
-
- spec/dummy/config/routes.rb
|
91
|
-
- spec/dummy/db/migrate/20110110001344_create_configurables.rb
|
92
|
-
- spec/dummy/db/schema.rb
|
93
|
-
- spec/dummy/db/seeds.rb
|
94
|
-
- spec/dummy/lib/tasks/.gitkeep
|
95
|
-
- spec/dummy/public/404.html
|
96
|
-
- spec/dummy/public/422.html
|
97
|
-
- spec/dummy/public/500.html
|
98
|
-
- spec/dummy/public/favicon.ico
|
99
|
-
- spec/dummy/public/images/rails.png
|
100
|
-
- spec/dummy/public/index.html
|
101
|
-
- spec/dummy/public/javascripts/application.js
|
102
|
-
- spec/dummy/public/javascripts/controls.js
|
103
|
-
- spec/dummy/public/javascripts/dragdrop.js
|
104
|
-
- spec/dummy/public/javascripts/effects.js
|
105
|
-
- spec/dummy/public/javascripts/prototype.js
|
106
|
-
- spec/dummy/public/javascripts/rails.js
|
107
|
-
- spec/dummy/public/robots.txt
|
108
|
-
- spec/dummy/public/stylesheets/.gitkeep
|
109
|
-
- spec/dummy/script/rails
|
110
|
-
- spec/dummy/vendor/plugins/.gitkeep
|
111
|
-
- spec/models/configurable_spec.rb
|
112
|
-
- spec/spec_helper.rb
|
113
|
-
- tasks/cucumber.rake
|
114
51
|
homepage: http://github.com/paulca/configurable_engine
|
115
52
|
licenses:
|
116
53
|
- MIT
|
@@ -135,52 +72,4 @@ rubygems_version: 2.2.0
|
|
135
72
|
signing_key:
|
136
73
|
specification_version: 4
|
137
74
|
summary: Database-backed configuration for Rails 3, with defaults from config file.
|
138
|
-
test_files:
|
139
|
-
- features/admin_configurables.feature
|
140
|
-
- features/step_definitions/web_steps.rb
|
141
|
-
- features/support/env.rb
|
142
|
-
- features/support/paths.rb
|
143
|
-
- spec/dummy/.gitignore
|
144
|
-
- spec/dummy/README
|
145
|
-
- spec/dummy/Rakefile
|
146
|
-
- spec/dummy/app/controllers/application_controller.rb
|
147
|
-
- spec/dummy/app/helpers/application_helper.rb
|
148
|
-
- spec/dummy/app/views/layouts/application.html.erb
|
149
|
-
- spec/dummy/config.ru
|
150
|
-
- spec/dummy/config/application.rb
|
151
|
-
- spec/dummy/config/boot.rb
|
152
|
-
- spec/dummy/config/configurable.yml
|
153
|
-
- spec/dummy/config/database.yml
|
154
|
-
- spec/dummy/config/environment.rb
|
155
|
-
- spec/dummy/config/environments/development.rb
|
156
|
-
- spec/dummy/config/environments/production.rb
|
157
|
-
- spec/dummy/config/environments/test.rb
|
158
|
-
- spec/dummy/config/initializers/backtrace_silencers.rb
|
159
|
-
- spec/dummy/config/initializers/inflections.rb
|
160
|
-
- spec/dummy/config/initializers/mime_types.rb
|
161
|
-
- spec/dummy/config/initializers/secret_token.rb
|
162
|
-
- spec/dummy/config/initializers/session_store.rb
|
163
|
-
- spec/dummy/config/locales/en.yml
|
164
|
-
- spec/dummy/config/routes.rb
|
165
|
-
- spec/dummy/db/migrate/20110110001344_create_configurables.rb
|
166
|
-
- spec/dummy/db/schema.rb
|
167
|
-
- spec/dummy/db/seeds.rb
|
168
|
-
- spec/dummy/lib/tasks/.gitkeep
|
169
|
-
- spec/dummy/public/404.html
|
170
|
-
- spec/dummy/public/422.html
|
171
|
-
- spec/dummy/public/500.html
|
172
|
-
- spec/dummy/public/favicon.ico
|
173
|
-
- spec/dummy/public/images/rails.png
|
174
|
-
- spec/dummy/public/index.html
|
175
|
-
- spec/dummy/public/javascripts/application.js
|
176
|
-
- spec/dummy/public/javascripts/controls.js
|
177
|
-
- spec/dummy/public/javascripts/dragdrop.js
|
178
|
-
- spec/dummy/public/javascripts/effects.js
|
179
|
-
- spec/dummy/public/javascripts/prototype.js
|
180
|
-
- spec/dummy/public/javascripts/rails.js
|
181
|
-
- spec/dummy/public/robots.txt
|
182
|
-
- spec/dummy/public/stylesheets/.gitkeep
|
183
|
-
- spec/dummy/script/rails
|
184
|
-
- spec/dummy/vendor/plugins/.gitkeep
|
185
|
-
- spec/models/configurable_spec.rb
|
186
|
-
- spec/spec_helper.rb
|
75
|
+
test_files: []
|
data/.document
DELETED
data/.gitignore
DELETED
@@ -1,43 +0,0 @@
|
|
1
|
-
# rcov generated
|
2
|
-
coverage
|
3
|
-
|
4
|
-
# rdoc generated
|
5
|
-
rdoc
|
6
|
-
|
7
|
-
# yard generated
|
8
|
-
doc
|
9
|
-
.yardoc
|
10
|
-
|
11
|
-
# bundler
|
12
|
-
.bundle
|
13
|
-
|
14
|
-
# jeweler generated
|
15
|
-
pkg
|
16
|
-
|
17
|
-
# Have editor/IDE/OS specific files you need to ignore? Consider using a global gitignore:
|
18
|
-
#
|
19
|
-
# * Create a file at ~/.gitignore
|
20
|
-
# * Include files you want ignored
|
21
|
-
# * Run: git config --global core.excludesfile ~/.gitignore
|
22
|
-
#
|
23
|
-
# After doing this, these files will be ignored in all your git projects,
|
24
|
-
# saving you from having to 'pollute' every project you touch with them
|
25
|
-
#
|
26
|
-
# Not sure what to needs to be ignored for particular editors/OSes? Here's some ideas to get you started. (Remember, remove the leading # of the line)
|
27
|
-
#
|
28
|
-
# For MacOS:
|
29
|
-
#
|
30
|
-
#.DS_Store
|
31
|
-
#
|
32
|
-
# For TextMate
|
33
|
-
#*.tmproj
|
34
|
-
#tmtags
|
35
|
-
#
|
36
|
-
# For emacs:
|
37
|
-
#*~
|
38
|
-
#\#*
|
39
|
-
#.\#*
|
40
|
-
#
|
41
|
-
# For vim:
|
42
|
-
#*.swp
|
43
|
-
.rvmrc
|
data/.rspec
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
--color
|
data/.travis.yml
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
language: ruby
|
2
|
-
rvm:
|
3
|
-
- 2.0.0
|
4
|
-
- 1.9.3
|
5
|
-
- jruby-19mode
|
6
|
-
env:
|
7
|
-
- DB=sqlite
|
8
|
-
- DB=mysql
|
9
|
-
- DB=postgresql
|
10
|
-
gemfile:
|
11
|
-
- Gemfile
|
12
|
-
- gemfiles/Gemfile.rails3_1
|
13
|
-
- gemfiles/Gemfile.rails4_0
|
14
|
-
before_script:
|
15
|
-
- mysql -e 'create database strano_test'
|
16
|
-
- psql -c 'create database strano_test' -U postgres
|
17
|
-
- RAILS_ENV=test rake app:db:migrate
|
18
|
-
- rake app:db:test:prepare
|
data/CHANGELOG
DELETED
data/Gemfile
DELETED
data/Gemfile.lock
DELETED
@@ -1,178 +0,0 @@
|
|
1
|
-
GEM
|
2
|
-
remote: https://rubygems.org/
|
3
|
-
specs:
|
4
|
-
actionmailer (3.2.17)
|
5
|
-
actionpack (= 3.2.17)
|
6
|
-
mail (~> 2.5.4)
|
7
|
-
actionpack (3.2.17)
|
8
|
-
activemodel (= 3.2.17)
|
9
|
-
activesupport (= 3.2.17)
|
10
|
-
builder (~> 3.0.0)
|
11
|
-
erubis (~> 2.7.0)
|
12
|
-
journey (~> 1.0.4)
|
13
|
-
rack (~> 1.4.5)
|
14
|
-
rack-cache (~> 1.2)
|
15
|
-
rack-test (~> 0.6.1)
|
16
|
-
sprockets (~> 2.2.1)
|
17
|
-
activemodel (3.2.17)
|
18
|
-
activesupport (= 3.2.17)
|
19
|
-
builder (~> 3.0.0)
|
20
|
-
activerecord (3.2.17)
|
21
|
-
activemodel (= 3.2.17)
|
22
|
-
activesupport (= 3.2.17)
|
23
|
-
arel (~> 3.0.2)
|
24
|
-
tzinfo (~> 0.3.29)
|
25
|
-
activerecord-jdbc-adapter (1.3.6)
|
26
|
-
activerecord (>= 2.2)
|
27
|
-
activerecord-jdbcmysql-adapter (1.3.6)
|
28
|
-
activerecord-jdbc-adapter (~> 1.3.6)
|
29
|
-
jdbc-mysql (>= 5.1.22)
|
30
|
-
activerecord-jdbcpostgresql-adapter (1.3.6)
|
31
|
-
activerecord-jdbc-adapter (~> 1.3.6)
|
32
|
-
jdbc-postgres (>= 9.1)
|
33
|
-
activerecord-jdbcsqlite3-adapter (1.3.6)
|
34
|
-
activerecord-jdbc-adapter (~> 1.3.6)
|
35
|
-
jdbc-sqlite3 (~> 3.7.2)
|
36
|
-
activeresource (3.2.17)
|
37
|
-
activemodel (= 3.2.17)
|
38
|
-
activesupport (= 3.2.17)
|
39
|
-
activesupport (3.2.17)
|
40
|
-
i18n (~> 0.6, >= 0.6.4)
|
41
|
-
multi_json (~> 1.0)
|
42
|
-
arel (3.0.3)
|
43
|
-
bouncy-castle-java (1.5.0147)
|
44
|
-
builder (3.0.4)
|
45
|
-
capybara (2.2.1)
|
46
|
-
mime-types (>= 1.16)
|
47
|
-
nokogiri (>= 1.3.3)
|
48
|
-
rack (>= 1.0.0)
|
49
|
-
rack-test (>= 0.5.4)
|
50
|
-
xpath (~> 2.0)
|
51
|
-
coderay (1.1.0)
|
52
|
-
cucumber (1.3.11)
|
53
|
-
builder (>= 2.1.2)
|
54
|
-
diff-lcs (>= 1.1.3)
|
55
|
-
gherkin (~> 2.12)
|
56
|
-
multi_json (>= 1.7.5, < 2.0)
|
57
|
-
multi_test (>= 0.0.2)
|
58
|
-
cucumber-rails (1.4.0)
|
59
|
-
capybara (>= 1.1.2)
|
60
|
-
cucumber (>= 1.2.0)
|
61
|
-
nokogiri (>= 1.5.0)
|
62
|
-
rails (>= 3.0.0)
|
63
|
-
database_cleaner (1.2.0)
|
64
|
-
diff-lcs (1.2.5)
|
65
|
-
erubis (2.7.0)
|
66
|
-
ffi (1.9.3-java)
|
67
|
-
gherkin (2.12.2)
|
68
|
-
multi_json (~> 1.3)
|
69
|
-
gherkin (2.12.2-java)
|
70
|
-
multi_json (~> 1.3)
|
71
|
-
hike (1.2.3)
|
72
|
-
i18n (0.6.9)
|
73
|
-
jdbc-mysql (5.1.28)
|
74
|
-
jdbc-postgres (9.3.1100)
|
75
|
-
jdbc-sqlite3 (3.7.2.1)
|
76
|
-
journey (1.0.4)
|
77
|
-
jruby-openssl (0.9.4)
|
78
|
-
bouncy-castle-java (>= 1.5.0147)
|
79
|
-
json (1.8.1)
|
80
|
-
json (1.8.1-java)
|
81
|
-
mail (2.5.4)
|
82
|
-
mime-types (~> 1.16)
|
83
|
-
treetop (~> 1.4.8)
|
84
|
-
method_source (0.8.2)
|
85
|
-
mime-types (1.25.1)
|
86
|
-
mini_portile (0.5.2)
|
87
|
-
multi_json (1.8.4)
|
88
|
-
multi_test (0.0.3)
|
89
|
-
mysql2 (0.3.15)
|
90
|
-
nokogiri (1.6.1)
|
91
|
-
mini_portile (~> 0.5.0)
|
92
|
-
nokogiri (1.6.1-java)
|
93
|
-
mini_portile (~> 0.5.0)
|
94
|
-
pg (0.17.1)
|
95
|
-
polyglot (0.3.4)
|
96
|
-
pry (0.9.12.6)
|
97
|
-
coderay (~> 1.0)
|
98
|
-
method_source (~> 0.8)
|
99
|
-
slop (~> 3.4)
|
100
|
-
pry (0.9.12.6-java)
|
101
|
-
coderay (~> 1.0)
|
102
|
-
method_source (~> 0.8)
|
103
|
-
slop (~> 3.4)
|
104
|
-
spoon (~> 0.0)
|
105
|
-
rack (1.4.5)
|
106
|
-
rack-cache (1.2)
|
107
|
-
rack (>= 0.4)
|
108
|
-
rack-ssl (1.3.3)
|
109
|
-
rack
|
110
|
-
rack-test (0.6.2)
|
111
|
-
rack (>= 1.0)
|
112
|
-
rails (3.2.17)
|
113
|
-
actionmailer (= 3.2.17)
|
114
|
-
actionpack (= 3.2.17)
|
115
|
-
activerecord (= 3.2.17)
|
116
|
-
activeresource (= 3.2.17)
|
117
|
-
activesupport (= 3.2.17)
|
118
|
-
bundler (~> 1.0)
|
119
|
-
railties (= 3.2.17)
|
120
|
-
railties (3.2.17)
|
121
|
-
actionpack (= 3.2.17)
|
122
|
-
activesupport (= 3.2.17)
|
123
|
-
rack-ssl (~> 1.3.2)
|
124
|
-
rake (>= 0.8.7)
|
125
|
-
rdoc (~> 3.4)
|
126
|
-
thor (>= 0.14.6, < 2.0)
|
127
|
-
rake (10.1.1)
|
128
|
-
rdoc (3.12.2)
|
129
|
-
json (~> 1.4)
|
130
|
-
rspec-core (2.14.8)
|
131
|
-
rspec-expectations (2.14.5)
|
132
|
-
diff-lcs (>= 1.1.3, < 2.0)
|
133
|
-
rspec-mocks (2.14.6)
|
134
|
-
rspec-rails (2.14.1)
|
135
|
-
actionpack (>= 3.0)
|
136
|
-
activemodel (>= 3.0)
|
137
|
-
activesupport (>= 3.0)
|
138
|
-
railties (>= 3.0)
|
139
|
-
rspec-core (~> 2.14.0)
|
140
|
-
rspec-expectations (~> 2.14.0)
|
141
|
-
rspec-mocks (~> 2.14.0)
|
142
|
-
slop (3.4.7)
|
143
|
-
spoon (0.0.4)
|
144
|
-
ffi
|
145
|
-
sprockets (2.2.2)
|
146
|
-
hike (~> 1.2)
|
147
|
-
multi_json (~> 1.0)
|
148
|
-
rack (~> 1.0)
|
149
|
-
tilt (~> 1.1, != 1.3.0)
|
150
|
-
sqlite3 (1.3.9)
|
151
|
-
thor (0.18.1)
|
152
|
-
tilt (1.4.1)
|
153
|
-
treetop (1.4.15)
|
154
|
-
polyglot
|
155
|
-
polyglot (>= 0.3.1)
|
156
|
-
tzinfo (0.3.38)
|
157
|
-
xpath (2.0.0)
|
158
|
-
nokogiri (~> 1.3)
|
159
|
-
|
160
|
-
PLATFORMS
|
161
|
-
java
|
162
|
-
ruby
|
163
|
-
|
164
|
-
DEPENDENCIES
|
165
|
-
activerecord-jdbcmysql-adapter
|
166
|
-
activerecord-jdbcpostgresql-adapter
|
167
|
-
activerecord-jdbcsqlite3-adapter
|
168
|
-
capybara
|
169
|
-
cucumber-rails
|
170
|
-
database_cleaner
|
171
|
-
jruby-openssl
|
172
|
-
mysql2
|
173
|
-
pg
|
174
|
-
pry
|
175
|
-
rails (~> 3.2.0)
|
176
|
-
rake
|
177
|
-
rspec-rails
|
178
|
-
sqlite3
|