atomize 1.0.1 → 1.0.2
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 +4 -4
- data/README.md +1 -0
- data/exe/atomize +16 -1
- data/lib/atomize/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d26575a6f3da463f73c70cfbe7b32d7422c29dd2214173c091e38b93179f7bc8
|
|
4
|
+
data.tar.gz: f525eacafcead58dfebc035eaff2083d6bfa183777f84d95f962028817fc66db
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8ed92909b81c6000dc24b9e7b9bdf7d48b26970c11b473b78f9ab2400a10aecac2f9d9dbaed3fe0ae32d356c4a26ea459066f094db6907b17cf1d97d4612c846
|
|
7
|
+
data.tar.gz: 4d591f80377f2eaa9a91bbba20678861cbe6bd6783085ce290c8e4a2a9cd457d901ef31da245b9d1885867a635aa4378e53d432718ce422765c82f07333535b8
|
data/README.md
CHANGED
|
@@ -17,6 +17,7 @@ If bundler is not being used to manage dependencies, install the gem by executin
|
|
|
17
17
|
## Usage
|
|
18
18
|
|
|
19
19
|
to install the atome development framework, just type : 'atomize install' in you shell
|
|
20
|
+
If you want to install and run the app, just type type : 'atomize install run ' in you shell
|
|
20
21
|
it will create a directory named 'atome' and also install the atome gem
|
|
21
22
|
Then refer to https://github.com/atomecorp/atome to use or develop the framework
|
|
22
23
|
|
data/exe/atomize
CHANGED
|
@@ -5,11 +5,26 @@ if ARGV.include?('install')
|
|
|
5
5
|
%x(git clone https://github.com/atomecorp/atome.git )
|
|
6
6
|
Dir.chdir('atome/vendor/assets/build/js/') do
|
|
7
7
|
%x(git clone https://github.com/atomecorp/atome_third_parties_js.git third_parties)
|
|
8
|
+
Dir.chdir('../../../../test/test_app/build/') do
|
|
9
|
+
|
|
10
|
+
Dir.mkdir('js')
|
|
11
|
+
|
|
12
|
+
Dir.chdir('js/') do
|
|
13
|
+
%x(git clone https://github.com/atomecorp/atome_third_parties_js.git third_parties)
|
|
14
|
+
end
|
|
15
|
+
end
|
|
8
16
|
Dir.chdir('../../../../') do
|
|
17
|
+
Dir.mkdir('thepoil')
|
|
9
18
|
`bundle update; bundle install`
|
|
10
19
|
`gem build atome.gemspec`
|
|
11
20
|
`gem install atome`
|
|
12
|
-
|
|
21
|
+
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
if ARGV.include?('run')
|
|
25
|
+
Dir.chdir('atome/') do
|
|
26
|
+
puts "the path for rake is" +`pwd`
|
|
27
|
+
`rake test`
|
|
13
28
|
end
|
|
14
29
|
end
|
|
15
30
|
end
|
data/lib/atomize/version.rb
CHANGED